text
stringlengths 0
834k
|
|---|
echo.
|
if defined wgetexe (
|
echo.Trying download using !wgetexe! ...
|
!wgetexe! !EPHURL!
|
if not errorlevel 1 goto verify_eph
|
)
|
if defined curlexe (
|
echo.Trying download using !curlexe! ...
|
!curlexe! -L -o !EPHFILE! !EPHURL!
|
if not errorlevel 1 goto verify_eph
|
)
|
if exist !EPHFILE! (del !EPHFILE!)
|
echo.
|
echo.Could not download the file.
|
echo.Use your browser to download the above file from
|
echo.the above URL into this directory.
|
echo.Then run this batch file again to continue.
|
exit /b 1
|
)
|
:verify_eph
|
if defined md5exe (
|
echo.Using !md5exe! to test integrity of downloaded !EPHFILE!
|
!md5exe! -c !MD5FILE!
|
if errorlevel 1 (
|
echo.Corrupt ephemeris file !EPHFILE! detected.
|
if exist !EPHFILE! (del !EPHFILE!)
|
exit /b 1
|
)
|
)
|
exit /b 0
|
REM -----------------------------------------------------------------------------------------
|
",25.593639576,124,0.593124396
|
219996,f338d0583ae51ef17630e86c7cad9339aa037ae5,73,bat,Batchfile,examples/Throughput/scripts/rtc_long_twonode_1.bat,tonboAkinori/OpenRTM-aist,2d28c2a0272af73d4d98ea30bf0bd007e2bfc6b0,['RSA-MD'],15.0,2019-01-08T15:34:04.000Z,2022-03-01T08:36:17.000Z,examples/Throughput/scripts/rtc_long_twonode_1.bat,tonboAkinori/OpenRTM-aist,2d28c2a0272af73d4d98ea30bf0bd007e2bfc6b0,['RSA-MD'],448.0,2018-12-27T03:13:56.000Z,2022-03-24T09:57:03.000Z,examples/Throughput/scripts/rtc_long_twonode_1.bat,tonboAkinori/OpenRTM-aist,2d28c2a0272af73d4d98ea30bf0bd007e2bfc6b0,['RSA-MD'],31.0,2018-12-26T04:34:22.000Z,2021-11-25T04:39:51.000Z,".\ThroughputComp.exe -f rtc_long_twoproc_1.conf -o ""corba.nameservers:%1""",73.0,73,0.7945205479
|
219997,f338e73a0b1b949ea2d69d605f843702030b2492,44,bat,Batchfile,TestCases/String1_TOKEN_VARIABLE_1.txt.bat,gam4er/Invoke-Obfuscation,c1f874882facfab89e1f499cd3800af199acf659,['Apache-2.0'],,,,TestCases/String1_TOKEN_VARIABLE_1.txt.bat,gam4er/Invoke-Obfuscation,c1f874882facfab89e1f499cd3800af199acf659,['Apache-2.0'],,,,TestCases/String1_TOKEN_VARIABLE_1.txt.bat,gam4er/Invoke-Obfuscation,c1f874882facfab89e1f499cd3800af199acf659,['Apache-2.0'],,,,"type String1_TOKEN_VARIABLE_1.txt | cmd /k
|
",22.0,43,0.7954545455
|
219998,f33921387977d8f9203bff4505c27db712fb45f5,36,bat,Batchfile,spec-cordova/fixtures/projWithHooks/_bat/hooks/before_build/hookScript3.bat,mattoakesnet/cordova-lib-watchos,dcfb4b3ca8cc7c494a384766d050e44c5835fb93,['Apache-2.0'],2.0,2021-06-15T10:15:41.000Z,2021-11-22T15:23:25.000Z,spec-cordova/fixtures/projWithHooks/_bat/hooks/before_build/hookScript3.bat,mattoakesnet/cordova-lib-watchos,dcfb4b3ca8cc7c494a384766d050e44c5835fb93,['Apache-2.0'],1.0,2018-12-19T17:12:18.000Z,2018-12-19T17:12:18.000Z,spec-cordova/fixtures/projWithHooks/_bat/hooks/before_build/hookScript3.bat,mattoakesnet/cordova-lib-watchos,dcfb4b3ca8cc7c494a384766d050e44c5835fb93,['Apache-2.0'],1.0,2019-08-13T15:59:57.000Z,2019-08-13T15:59:57.000Z,"@echo off
|
echo 07 >> hooks_order.txt",18.0,26,0.75
|
219999,f3398104b89a73cbbd6ec2f96f2465338aa86b6c,1250,bat,Batchfile,cores/production/async-cortex-m3-GNU-tools/build.bat,cbuilder/fxrtos-lite,ada55a8693e29e1c04dd5aaba2b18ef90f9eafd7,['BSD-3-Clause'],16.0,2020-06-26T21:54:54.000Z,2022-03-05T12:19:06.000Z,cores/production/async-cortex-m3-GNU-tools/build.bat,cbuilder/fxrtos-lite,ada55a8693e29e1c04dd5aaba2b18ef90f9eafd7,['BSD-3-Clause'],,,,cores/production/async-cortex-m3-GNU-tools/build.bat,cbuilder/fxrtos-lite,ada55a8693e29e1c04dd5aaba2b18ef90f9eafd7,['BSD-3-Clause'],6.0,2020-07-08T04:46:38.000Z,2022-03-07T06:33:16.000Z,"@echo off
|
echo Cleaning up...
|
if exist src\*.o del /F /Q src\*.o
|
if exist *fxrtos.* del /F /Q *fxrtos.*
|
if ""%1""==""clean"" (
|
echo OK
|
exit /b 0
|
)
|
if not exist src (
|
mkdir src
|
echo Performing dependency injection...
|
set FX_PREP=%GCC_PREFIX%gcc -E -Isrc -include %%s %%s
|
%FXDJ% -p .,%FXRTOS_DIR%\components -t FXRTOS -a async-cortex-m3-gnu.map -o src -l src\fxrtos.lst
|
echo #define FX_METADATA^(data^) > src/includes.inc
|
echo #define FX_INTERFACE^(hdr^) ^<hdr.h^> >> src/includes.inc
|
)
|
if ""%1"" == ""srccopy"" (
|
echo OK
|
exit /b 0
|
)
|
call set OBJS=
|
cd src
|
echo Compiling...
|
for %%f in (*.c) do (
|
echo %%f
|
%GCC_PREFIX%gcc -pedantic -std=c99 -O2 -Wall -include includes.inc -mcpu=cortex-m3 -mthumb -I. -c -o %%~nf.o %%f
|
call set OBJS=%%OBJS%% %%~nf.o
|
)
|
for %%f in (*.S) do (
|
echo %%f
|
%GCC_PREFIX%gcc -mcpu=cortex-m3 -mthumb -I. -include includes.inc -c -o %%~nf.o %%f
|
call set OBJS=%%OBJS%% %%~nf.o
|
)
|
echo Creating library...
|
%GCC_PREFIX%ar rcs ../libfxrtos.a %OBJS%
|
cd ..
|
echo Creating common header...
|
echo #define FX_METADATA^(data^) > FXRTOS.h
|
echo #define FX_INTERFACE^(file^) ^<stdint.h^> >> FXRTOS.h
|
for /F ""tokens=*"" %%A in (src\fxrtos.lst) do type src\%%A.h >> FXRTOS.h
|
",25.0,114,0.6104
|
220000,f33997cdcd896c710b16e98e0434e01c4067011d,23,bat,Batchfile,tools/build.bat,eduardo-costa/hackaton-web-template,07c47e50d779e7b4288ccade66cb2885754360a4,['MIT'],,,,tools/build.bat,eduardo-costa/hackaton-web-template,07c47e50d779e7b4288ccade66cb2885754360a4,['MIT'],,,,tools/build.bat,eduardo-costa/hackaton-web-template,07c47e50d779e7b4288ccade66cb2885754360a4,['MIT'],,,,"cd ../client
|
gulp
|
pause",7.6666666667,12,0.7391304348
|
220001,f339baa378ad322eed6e13991a509dc4436b32c1,981,bat,Batchfile,platforms/blackberry10/cordova/build.bat,cedhavalpanchal/phonegap-myapp,1e1e5645bfee60d6055f4e875c3549589ebba7a2,['ECL-2.0' 'Apache-2.0'],8.0,2015-05-21T15:25:16.000Z,2019-05-29T16:02:20.000Z,platforms/blackberry10/cordova/build.bat,cedhavalpanchal/phonegap-myapp,1e1e5645bfee60d6055f4e875c3549589ebba7a2,['ECL-2.0' 'Apache-2.0'],1.0,2015-09-10T14:05:31.000Z,2015-09-14T09:19:40.000Z,platforms/blackberry10/cordova/build.bat,cedhavalpanchal/phonegap-myapp,1e1e5645bfee60d6055f4e875c3549589ebba7a2,['ECL-2.0' 'Apache-2.0'],16.0,2015-01-18T15:20:58.000Z,2021-11-03T12:24:44.000Z,"@ECHO OFF
|
goto comment
|
Licensed to the Apache Software Foundation (ASF) under one
|
or more contributor license agreements. See the NOTICE file
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.