text stringlengths 0 834k |
|---|
@echo OFF |
@set PYSPARK_DRIVER_PYTHON_OPTS='notebook' |
@echo PYSPARK_DRIVER_PYTHON_OPTS='notebook' |
@echo ... |
@echo OFF |
@echo running %SPARK_HOME%\bin\pyspark |
@echo OFF |
@cmd /K %SPARK_HOME%\bin\pyspark |
@endlocal",21.1176470588,64,0.7158774373 |
219339,d2d926352863c9f205dbd490b436556923a32afa,457,bat,Batchfile,windows/internal/driver_update.bat,dmytrov/builder,fdc85783d0866108682160b8be7bec168ff1d29a,['BSD-2-Clause'],1.0,2020-12-31T17:19:41.000Z,2020-12-31T17:19:41.000Z,windows/internal/driver_update.bat,dmytrov/builder,fdc85783d0866108682160b8be7bec168ff1d29a,['BSD-2-Clause'],,,,windows/internal/driver_update.bat,dmytrov/builder,fdc85783d0866108682160b8be7bec168ff1d29a,['BSD-2-Clause'],,,,"set ""DRIVER_DOWNLOAD_LINK=https://s3.amazonaws.com/ossci-windows/442.50-tesla-desktop-winserver-2019-2016-international.exe"" |
curl --retry 3 -kL %DRIVER_DOWNLOAD_LINK% --output 442.50-tesla-desktop-winserver-2019-2016-international.exe |
if errorlevel 1 exit /b 1 |
start /wait 442.50-tesla-desktop-winserver-2019-2016-international.exe -s -noreboot |
if errorlevel 1 exit /b 1 |
del 442.50-tesla-desktop-winserver-2019-2016-international.exe || ver > NUL |
",50.7777777778,125,0.7811816193 |
219340,d2d956e8e033563ce7a00a6bc64882e791a3771a,530,bat,Batchfile,bioimageit_gui/settings/update.bat,bioimageit/bioimageit_gui,3073cd33f0a3160b4aab8e3634b8e999bbe0f6bf,['BSD-4-Clause'],,,,bioimageit_gui/settings/update.bat,bioimageit/bioimageit_gui,3073cd33f0a3160b4aab8e3634b8e999bbe0f6bf,['BSD-4-Clause'],1.0,2021-10-30T14:38:14.000Z,2021-10-30T14:38:14.000Z,bioimageit_gui/settings/update.bat,bioimageit/bioimageit_gui,3073cd33f0a3160b4aab8e3634b8e999bbe0f6bf,['BSD-4-Clause'],,,," |
set install_dir=%1 |
set conda_dir=%2 |
set conda_path=""%conda_dir%\condabin\conda.bat"" |
call %conda_dir%\Scripts\activate.bat bioimageit |
cd ""%install_dir%\bioimageit_formats"" |
git pull |
cd ""%install_dir%\bioimageit_core"" |
git pull |
cd ""%install_dir%\bioimageit_gui"" |
git pull |
cd ""%install_dir%\bioimageit_viewer"" |
git pull |
REM install and config packages |
pip install ""%install_dir%\bioimageit_formats"" |
pip install ""%install_dir%\bioimageit_core"" |
pip install ""%install_dir%\bioimageit_gui"" |
pip install ""%install_dir%\bioimageit_viewer"" |
",23.0434782609,48,0.8037735849 |
219341,d2d9c2531c70b3342ed35ab8b4c4852b3ac5b49c,151,bat,Batchfile,bin/mysql.stop.bat,twsihan/win-svescrt,e5f6198160c982da1cee4f63c911983c3d9f8574,['Unlicense'],,,,bin/mysql.stop.bat,twsihan/win-svescrt,e5f6198160c982da1cee4f63c911983c3d9f8574,['Unlicense'],,,,bin/mysql.stop.bat,twsihan/win-svescrt,e5f6198160c982da1cee4f63c911983c3d9f8574,['Unlicense'],,,,"@echo off |
rem config/svescrt.bat |
rem cd /d %MYSQL_HOME%\bin |
rem net stop MySQL |
rem mysqld.exe --remove MySQL |
taskkill /F /IM mysqld.exe > nul |
pause |
",13.7272727273,32,0.7350993377 |
219342,d2d9dca4cbf38a8385cd673566afa939569850a4,1007,cmd,Batchfile,BAT-FILES/SCHEDULED-BATS/0_monthly.cmd,buttonpushertv/buttonpushertv-Post-Production-Keyboard-Interface,a2d8ade86206c145fee28db2e548c1787b5819ec,['MIT'],2.0,2019-07-13T17:11:23.000Z,2020-02-11T15:08:24.000Z,BAT-FILES/SCHEDULED-BATS/0_monthly.cmd,buttonpushertv/buttonpushertv-Post-Production-Keyboard-Interface,a2d8ade86206c145fee28db2e548c1787b5819ec,['MIT'],4.0,2019-07-13T17:18:07.000Z,2019-11-16T04:57:51.000Z,BAT-FILES/SCHEDULED-BATS/0_monthly.cmd,buttonpushertv/buttonpushertv-Post-Production-Keyboard-Interface,a2d8ade86206c145fee28db2e548c1787b5819ec,['MIT'],,,,"@echo off |
@echo =================== |
@echo RUNNING MONTHLY BAT |
@echo =================== |
@echo. |
REM get some info about the month and day |
for /F ""skip=1 delims="" %%F in (' |
wmic PATH Win32_LocalTime GET Day^,Month^,Year /FORMAT:TABLE |
') do ( |
for /F ""tokens=1-3"" %%L in (""%%F"") do ( |
set CurrDay=0%%L |
set CurrMonth=0%%M |
set CurrYear=%%N |
) |
) |
set CurrDay=%CurrDay:~-2% |
set CurrMonth=%CurrMonth:~-2% |
echo Current day : %CurrDay% |
echo Current month: %CurrMonth% |
echo Current year :%CurrYear% |
REM other methods using a powershell script |
REM for /f %%i in ('powershell ^(get-date^).Month') do set mon=%%i |
REM for /f %%i in ('powershell ^(get-date^).Day') do set dom=%%i |
REM @echo Month Number: %mon% |
REM @echo Day Number: %dom% |
REM this calls the 'bat/cmd' file that has the same name as the number of the month. |
@call ""%BKB_ROOT%\PRIVATE\%computername%\BATs\monthly\%CurrMonth%.cmd"" |
@echo -------------------- |
@echo MONTHLY BAT COMPLETE |
@echo -------------------- |
@echo. |
",26.5,84,0.6117179742 |
219343,d2da493b65bf0bf379d2592cea4b71a0d3ed6b2d,3694,bat,Batchfile,pydcmjpeg/data/compliance/14495/jlsauxV100/testdec.bat,scaramallion/pydcmjpeg,2f31979c2858d34db8fcbc42f139b75fbeaaf024,['MIT'],,,,pydcmjpeg/data/compliance/14495/jlsauxV100/testdec.bat,scaramallion/pydcmjpeg,2f31979c2858d34db8fcbc42f139b75fbeaaf024,['MIT'],,,,pydcmjpeg/data/compliance/14495/jlsauxV100/testdec.bat,scaramallion/pydcmjpeg,2f31979c2858d34db8fcbc42f139b75fbeaaf024,['MIT'],,,,"@echo off |
echo # |
echo # |
echo # EXAMPLE: JPEG-LS DECODER COMPLIANCE TEST ROUTINE |
echo # |
echo # |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.