code
stringlengths 3
1.03M
| repo_name
stringlengths 5
84
| path
stringlengths 4
233
| language
stringclasses 1
value | license
stringclasses 15
values | size
int32 3
1.03M
|
---|---|---|---|---|---|
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\GraphAlchemy.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\GraphAlchemy.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
:end
| jtratner/graphalchemy | docs/make.bat | bat | mit | 5,108 |
@"C:\Program Files (x86)\Microsoft\Microsoft Ajax Minifier\AjaxMin.exe" bookmarklet.js -out ..\dist\bookmarklet.min.js | MYueh/en-zh-bookmarklet | src/build.bat | bat | mit | 118 |
set OLDCD=%CD%
pushd ..\..\..\
set OLDPATH=%PATH%
set PATH=%BOOST_ROOT%;%PATH%
b2 -j %NUMBER_OF_PROCESSORS% toolset=intel-15.0 address-model=32 debug > %OLDCD%\debug_x86.txt 2>&1
set PATH=%OLDPATH%
popd
| lvous/hadesmem | build/full/intel/debug_x86.bat | bat | mit | 210 |
@echo off
@powershell -NoProfile -ExecutionPolicy unrestricted -File E5R-InstallvNext.ps1 | e5r/E5RInstallvNext | E5R-InstallvNext-Windows.cmd | bat | mit | 89 |
@ECHO OFF
IF NOT "%~f0" == "~f0" GOTO :WinNT
@"ruby.exe" "D:/System/Users/Master/Documents/GitHub/hyde/vendor/bundler/ruby/2.0.0/bin/bayes.rb" %1 %2 %3 %4 %5 %6 %7 %8 %9
GOTO :EOF
:WinNT
@"ruby.exe" "%~dpn0" %*
| neeting/neeting.github.io | vendor/bundler/ruby/2.0.0/bin/bayes.rb.bat | bat | mit | 217 |
ocra a-game-of-pirates --console media/* lib/* ./* | homelinen/ld25-a-game-of-pirate | build.bat | bat | mit | 50 |
:: ==============================================================
:: File generated by Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC
:: Version: 2015.4
:: Copyright (C) 2015 Xilinx Inc. All rights reserved.
::
:: ==============================================================
@echo off
C:/Xilinx/SDSoC/2015.4/VIVADO~1/2015.4/../../Vivado/2015.4/bin/vivado -notrace -mode batch -source ipi_example.tcl -tclargs xc7z020clg484-1 ../xilinx_com_hls_set_1_0.zip
| chris-wood/yield | sdsoc/hash/SDDebug/_sds/vhls/set/solution/impl/ip/example/ipi_example.bat | bat | mit | 488 |
@echo off
setlocal
set "BUILD_CONFIG_ROOT=%~1"
set "BUILD_SCRIPTS_ROOT=%~2"
set "BUILD_USER_VARS_ROOT=%~3"
if defined BUILD_CONFIG_ROOT (
if "\" == "%BUILD_CONFIG_ROOT:~0,1%" exit /b 1
if "\" == "%BUILD_CONFIG_ROOT:~-1%" set "BUILD_CONFIG_ROOT=%BUILD_CONFIG_ROOT:~0,-1%"
)
if not defined BUILD_CONFIG_ROOT (
echo.%~nx0: error: BUILD_CONFIG_ROOT must be defined.
exit /b 1
) >&2
if defined BUILD_SCRIPTS_ROOT (
if "\" == "%BUILD_SCRIPTS_ROOT:~0,1%" exit /b 2
if "\" == "%BUILD_SCRIPTS_ROOT:~-1%" set "BUILD_SCRIPTS_ROOT=%BUILD_SCRIPTS_ROOT:~0,-1%"
)
if not defined BUILD_SCRIPTS_ROOT (
echo.%~nx0: error: BUILD_SCRIPTS_ROOT must be defined.
exit /b 2
) >&2
if defined BUILD_USER_VARS_ROOT (
if "\" == "%BUILD_USER_VARS_ROOT:~0,1%" exit /b 3
if "\" == "%BUILD_USER_VARS_ROOT:~-1%" set "BUILD_USER_VARS_ROOT=%BUILD_USER_VARS_ROOT:~0,-1%"
)
if not defined PROJECT_NAME (
echo.%~nx0: error: PROJECT_NAME must be defined.
exit /b 3
) >&2
if not defined APP_SETUP_FILE_NAME (
echo.%~nx0: error: APP_SETUP_FILE_NAME must be defined.
exit /b 4
) >&2
rem cleanup all STAGE_IN.PROJECT_* variables
for /F "usebackq eol= tokens=1,* delims==" %%i in (`@set "STAGE_IN.PROJECT_" 2^>nul`) do set "%%i="
call :CANONICAL_PATH PROJECT_ROOT "%%PROJECT_ROOT%%"
call :CANONICAL_PATH APP_ROOT "%%APP_ROOT%%"
call :CANONICAL_PATH APP_INTEGRATION_ROOT "%%APP_INTEGRATION_ROOT%%"
if not defined PROJECT_ROOT goto :NO_PROJECT_ROOT
if not exist "%PROJECT_ROOT%" goto :NO_PROJECT_ROOT
goto PROJECT_ROOT_END
:NO_PROJECT_ROOT
echo.%~nx0: PROJECT_ROOT does not exist or not defined: "%PROJECT_ROOT%">&2
exit /b 10
:PROJECT_ROOT_END
if not defined APP_TARGET_NAME goto :NO_APP_TARGET_NAME
goto APP_TARGET_NAME_END
:NO_APP_TARGET_NAME
echo.%~nx0: APP_TARGET_NAME is not defined: "%APP_TARGET_NAME%">&2
exit /b 11
:APP_TARGET_NAME_END
if "%PROJECT_TYPE%" == "debug" (
set "NSIS_EXTRA_FLAGS=/DDEBUG"
) else (
set "NSIS_EXTRA_FLAGS="
)
exit /b 0
:CANONICAL_PATH
setlocal DISABLEDELAYEDEXPANSION
for /F "eol= tokens=* delims=" %%i in ("%~2\.") do set "RETURN_VALUE=%%~fi"
rem set "RETURN_VALUE=%RETURN_VALUE:\=/%"
(
endlocal
set "%~1=%RETURN_VALUE%"
)
exit /b 0
| andry81/contools | Scripts/Tools/build/project_builders/nsis_pre_validate_vars.bat | bat | mit | 2,286 |
tools\nuget\nuget.exe restore RelationScaffolding.sln
set MSBUILD="C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe"
rd /S /Q .\src\RelationScaffolding\bin\Debug
rd /S /Q .\src\RelationScaffolding\bin\Release
%MSBUILD% RelationScaffolding.sln /p:Configuration="Debug"
if %errorlevel% neq 0 exit /b %errorlevel%
%MSBUILD% RelationScaffolding.sln /p:Configuration="Release"
if %errorlevel% neq 0 exit /b %errorlevel% | jsgoupil/relation-scaffolding | build.bat | bat | mit | 421 |
rem kill app on windows
@echo off
set FILE="bin\twatcher.pid"
if exist %FILE% (
setlocal EnableDelayedExpansion
set /P PID=<%FILE%
taskkill /F /PID !PID!
del %FILE%
endlocal
)
| srd7/twatcher | scripts/bin/exit.bat | bat | mit | 186 |
@ECHO OFF
rem @(#)$Date: 2008/05/20 20:20:12 $
rem
rem jmlc -- script for running the JML runtime assertion checker compiler
rem
rem SYNOPSIS: set CLASSPATH and run JML runtime assertion checker compiler
call jmlenv.bat
rem save the old CLASSPATH
set OLDCLASSPATH=%CLASSPATH%
set CLASSPATH=.;%JMLDIR%\bin\jml-release.jar;%JMLDIR%\specs;%JMLDIR%;%CLASSPATH%
set CMDLINE_ARGS=%1
:getargs
shift
if "%1"=="" goto endgetargs
set CMDLINE_ARGS=%CMDLINE_ARGS% %1
goto getargs
:endgetargs
rem You can use `java' or `jre -cp %CLASSPATH%' below
rem but these have to be in your PATH
java -mx128m org.jmlspecs.jmlrac.RacGUI %CMDLINE_ARGS%
rem restore the old CLASSPATH
set CLASSPATH=%OLDCLASSPATH%
set CMDLINE_ARGS=
set OLDCLASSPATH=
rem Copyright (C) 2004, 2008
rem
rem This file is part of JML
rem
rem JML is free software; you can redistribute it and/or modify
rem it under the terms of the GNU General Public License as published by
rem the Free Software Foundation; either version 2, or (at your option)
rem any later version.
rem
rem JML is distributed in the hope that it will be useful,
rem but WITHOUT ANY WARRANTY; without even the implied warranty of
rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
rem GNU General Public License for more details.
rem
rem You should have received a copy of the GNU General Public License
rem along with JML; see the file COPYING. If not, write to
rem the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
| GaloisInc/Votail | external_tools/JML/bin/jmlc-gui.bat | bat | mit | 1,529 |
set name="%1"
set src=%~2
set pub=%~2..\..\..\..\pub\
set archiv=%pub%\com-kit_%APPVEYOR_BUILD_NUMBER%.zip
echo Copy from %src%
echo Copy to %pub%
if not exist "%pub%" mkdir "%pub%"
:: xcopy "$(TargetDir)*" "$(SolutionDir)..\pub\$(TargetName)\" /D /Y /S
::xcopy "%src%*.exe" "%pub%" /D /Y /S
::xcopy "%src%*.dll" "%pub%" /D /Y /S
::xcopy "%src%*.config" "%pub%" /D /Y /S
::xcopy "%src%*.ids" "%pub%" /D /Y /S
pushd "%src%"
7z a "%archiv%" "*.exe"
7z a "%archiv%" "*.dll"
7z a "%archiv%" "*.config"
7z a "%archiv%" "*.ids" -r
popd
| ah01/com-kit | src/post-build.bat | bat | mit | 572 |
MEMORY
{
PAGE 0 :
/* BEGIN is used for the "boot to SARAM" bootloader mode */
BEGIN : origin = 0x000000, length = 0x000002
RAMM0 : origin = 0x000122, length = 0x0002DE
RAMD0 : origin = 0x00B000, length = 0x000800
RAMLS0 : origin = 0x008000, length = 0x000800
RAMLS1 : origin = 0x008800, length = 0x000800
RAMLS2 : origin = 0x009000, length = 0x000800
RAMLS3 : origin = 0x009800, length = 0x000800
RAMLS4 : origin = 0x00A000, length = 0x000800
RESET : origin = 0x3FFFC0, length = 0x000002
RAMGS0 : origin = 0x00C000, length = 0x001000
RAMGS1_code : origin = 0x00D000, length = 0x000B00
RAMGS2 : origin = 0x00E000, length = 0x001000
RAMGS3 : origin = 0x00F000, length = 0x001000
RAMGS4 : origin = 0x010000, length = 0x001000
RAMGS5 : origin = 0x011000, length = 0x001000
RAMGS6 : origin = 0x012000, length = 0x001000
PAGE 1 :
BOOT_RSVD : origin = 0x000002, length = 0x000120 /* Part of M0, BOOT rom will use this for stack */
RAMM1 : origin = 0x000400, length = 0x000400 /* on-chip RAM block M1 */
RAMD1 : origin = 0x00B800, length = 0x000800
RAMGS1_data :origin = 0xDB00, length = 0x400
RAMLS5 : origin = 0x00A800, length = 0x000800
RAMGS7 : origin = 0x013000, length = 0x001000
RAMGS8 : origin = 0x014000, length = 0x001000
RAMGS9 : origin = 0x015000, length = 0x001000
RAMGS10 : origin = 0x016000, length = 0x001000
RAMGS11 : origin = 0x017000, length = 0x001000
RAMGS12 : origin = 0x018000, length = 0x001000
RAMGS13 : origin = 0x019000, length = 0x001000
RAMGS14 : origin = 0x01A000, length = 0x001000
RAMGS15 : origin = 0x01B000, length = 0x001000
CPU2TOCPU1RAM : origin = 0x03F800, length = 0x000400
CPU1TOCPU2RAM : origin = 0x03FC00, length = 0x000400
}
SECTIONS
{
codestart : > BEGIN, PAGE = 0
.text : >>RAMGS0 | RAMGS1_code | RAMGS4, PAGE = 0
.cinit : > RAMGS0, PAGE = 0
.pinit : > RAMGS0, PAGE = 0
.switch : > RAMGS0, PAGE = 0
.reset : > RESET, PAGE = 0, TYPE = DSECT /* not used, */
.stack : > RAMM1, PAGE = 1
.ebss : > RAMGS1_data, PAGE = 1
.econst : > RAMGS1_data, PAGE = 1
.esysmem : > RAMGS1_data, PAGE = 1
Filter_RegsFile : > RAMGS8, PAGE = 1
ramgs0 : > RAMGS1_data, PAGE = 1
ramgs1 : > RAMGS9, PAGE = 1
.TI.ramfunc : > RAMGS0 PAGE = 0
/* The following section definitions are required when using the IPC API Drivers */
GROUP : > CPU1TOCPU2RAM, PAGE = 1
{
PUTBUFFER
PUTWRITEIDX
GETREADIDX
}
GROUP : > CPU2TOCPU1RAM, PAGE = 1
{
GETBUFFER : TYPE = DSECT
GETWRITEIDX : TYPE = DSECT
PUTREADIDX : TYPE = DSECT
}
/* The following section definition are for SDFM examples */
Filter1_RegsFile : > RAMGS10, PAGE = 1, fill=0x1111
Filter2_RegsFile : > RAMGS11, PAGE = 1, fill=0x2222
Filter3_RegsFile : > RAMGS12, PAGE = 1, fill=0x3333
Filter4_RegsFile : > RAMGS13, PAGE = 1, fill=0x4444
Difference_RegsFile : >RAMGS14, PAGE = 1, fill=0x3333
}
/*
//===========================================================================
// End of file.
//===========================================================================
*/
| AdrianoRuseler/LAUNCHXL-F28377S | C2000Ware/examples/cpu1/F2837xS_sci_flash_kernel/cpu01/flash_programming_RAM.cmd | bat | mit | 3,584 |
@echo off
cd
echo clean: are you sure?
pause
del *.exe
del *.o
| cthielen/u9tools | clean.bat | bat | gpl-2.0 | 63 |
cmd_drivers/media/usb/gspca/gspca_sonixj.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/media/usb/gspca/gspca_sonixj.ko drivers/media/usb/gspca/gspca_sonixj.o drivers/media/usb/gspca/gspca_sonixj.mod.o
| avareldalton85/rpi2-linux-rt | drivers/media/usb/gspca/.gspca_sonixj.ko.cmd | bat | gpl-2.0 | 315 |
cmd_drivers/net/ethernet/freescale/fec.o := arm-poky-linux-gnueabi-ld -EL -r -o drivers/net/ethernet/freescale/fec.o drivers/net/ethernet/freescale/fec_main.o drivers/net/ethernet/freescale/fec_ptp.o
| heyoufei2/yocto3.14.38_kernel | drivers/net/ethernet/freescale/.fec.o.cmd | bat | gpl-2.0 | 204 |
@echo off
call Fullc_4
call Fullc_5
call Fullc_6
call Fullc_2006
call Fullc_2007
call Fullc_2009
call Fullc_2010
call Fullc_XE
call Fullc_XE2
call Fullc_XE3
call Fullc_XE4
call Fullc_XE5
call Fullc_XE6
call Fullc_XE7 | AcoonDe/OpenAcoon | src/dep/indy10/Lib/Fullc_All.bat | bat | gpl-2.0 | 230 |
cmd_vmlinux.o := arm-linux-androideabi-ld -EL -r -o vmlinux.o arch/arm/kernel/head.o arch/arm/kernel/init_task.o init/built-in.o --start-group usr/built-in.o arch/arm/kernel/built-in.o arch/arm/mm/built-in.o arch/arm/common/built-in.o arch/arm/mach-msm/built-in.o arch/arm/vfp/built-in.o arch/arm/perfmon/built-in.o kernel/built-in.o mm/built-in.o fs/built-in.o ipc/built-in.o security/built-in.o crypto/built-in.o block/built-in.o arch/arm/lib/lib.a lib/lib.a arch/arm/lib/built-in.o lib/built-in.o drivers/built-in.o sound/built-in.o firmware/built-in.o net/built-in.o --end-group
| tenorntex/lhbalanced | .vmlinux.o.cmd | bat | gpl-2.0 | 608 |
cmd_fs/jbd2/jbd2.o := /opt/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o fs/jbd2/jbd2.o fs/jbd2/transaction.o fs/jbd2/commit.o fs/jbd2/recovery.o fs/jbd2/checkpoint.o fs/jbd2/revoke.o fs/jbd2/journal.o
| TeamGlide/LiteKernel | fs/jbd2/.jbd2.o.cmd | bat | gpl-2.0 | 212 |
@echo off
REM PHP_CodeSniffer tokenizes PHP code and detects violations of a
REM defined set of coding standards.
REM
REM PHP version 5
REM
REM @category PHP
REM @package PHP_CodeSniffer
REM @author Greg Sherwood <[email protected]>
REM @author Marc McIntyre <[email protected]>
REM @copyright 2006-2014 Squiz Pty Ltd (ABN 77 084 670 600)
REM @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
REM @link http://pear.php.net/package/PHP_CodeSniffer
if "%PHPBIN%" == "" set PHPBIN=C:\xampp\php\php.exe
if not exist "%PHPBIN%" if "%PHP_PEAR_PHP_BIN%" neq "" goto USE_PEAR_PATH
GOTO RUN
:USE_PEAR_PATH
set PHPBIN=%PHP_PEAR_PHP_BIN%
:RUN
"%PHPBIN%" "C:\xampp\htdocs\drupal\\phpcs" %* | rahul-satvara/drupal_jenkins | phpcs.bat | bat | gpl-2.0 | 740 |
..\launcher\bin\TeamCityAgentService-windows-x86-32.exe -r ../conf/wrapper.conf | monte-fm/Android-CI | buildAgent/bin/service.uninstall.bat | bat | gpl-2.0 | 79 |
cmd_drivers/i2c/busses/built-in.o := /home/doadin/android/kernel/toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/i2c/busses/built-in.o drivers/i2c/busses/i2c-gpio.o drivers/i2c/busses/i2c-msm.o drivers/i2c/busses/i2c-qup.o drivers/i2c/busses/i2c-ssbi.o
| doadin/samsung-kernel-msm7x30-Doadin | drivers/i2c/busses/.built-in.o.cmd | bat | gpl-2.0 | 270 |
cmd_arch/arm/mach-msm/dal_remotetest.ko := /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-ld -EL -r -T /home/gabe/stock_note/dagkernel/scripts/module-common.lds --build-id -o arch/arm/mach-msm/dal_remotetest.ko arch/arm/mach-msm/dal_remotetest.o arch/arm/mach-msm/dal_remotetest.mod.o
| dagnarf/sgh-i717-dagkernel | arch/arm/mach-msm/.dal_remotetest.ko.cmd | bat | gpl-2.0 | 299 |
C:\Python27\ArcGIS10.1\python.exe "sde_to_xml.py" | gis-jay/SqlServerConnector | sde_to_xml.bat | bat | gpl-3.0 | 49 |
REM call vcvarsall
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"
REM add MSBuild to env variable
set MSBuild="c:/Program Files (x86)/MSBuild/14.0/bin/msbuild.exe"
REM add vcvars32.bat to PATH
@set PATH=c:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin;%PATH%
REM create build, package && install directory
if not exist build mkdir build
if not exist package mkdir package
if not exist install mkdir install
rem ===========================================================================
rem Layer 0 is Boost.
rem Absolutely everything depends on Boost, whether they use it or not,
rem because of EthDependencies.cmake in webthree-helper, which does an
rem unconditional find_module() for boost, irrespective of what is being built.
rem ===========================================================================
rem Layer 1 are the external libraries. Do any of these themselves depend on
rem Boost? I think that the majority or indeed all of them *might not*, and
rem that if we fixed up the CMake code so that the unconditional Boost
rem dependency could be skipped then we could improve the build ordering here.
call :setup x64 Debug & call build_cryptopp.bat & call bundle_cryptopp.bat || goto :error
call :setup x64 Release & call build_cryptopp.bat & call bundle_cryptopp.bat || goto :error
call install_cryptopp.bat || goto :error
call :setup x64 Debug & call build_curl.bat & call bundle_curl.bat || goto :error
call :setup x64 Release & call build_curl.bat & call bundle_curl.bat || goto :error
call install_curl.bat || goto :error
rem Is GMP not used for Windows?
call :setup x64 Debug & call build_jsoncpp.bat & call bundle_jsoncpp.bat || goto :error
call :setup x64 Release & call build_jsoncpp.bat & call bundle_jsoncpp.bat || goto :error
call install_jsoncpp.bat || goto :error
call :setup x64 Debug & call build_leveldb.bat & call bundle_leveldb.bat || goto :error
call :setup x64 Release & call build_leveldb.bat & call bundle_leveldb.bat || goto :error
call install_leveldb.bat || goto :error
rem libscrypt needs building for crosseth. Why don't we need it here?
call :setup x64 Debug & call build_microhttpd.bat & call bundle_microhttpd.bat || goto :error
call :setup x64 Release & call build_microhttpd.bat & call bundle_microhttpd.bat || goto :error
call install_microhttpd.bat || goto :error
rem We don't build libminiupnpc for crosseth, so I'll have to guess on its layering for now.
call :setup x64 Debug & call build_miniupnpc.bat & call bundle_miniupnpc.bat || goto :error
call :setup x64 Release & call build_miniupnpc.bat & call bundle_miniupnpc.bat || goto :error
call install_miniupnpc.bat || goto :error
rem ===========================================================================
rem Layer 2 comprises secp256k1 and libjson-rpc-cpp (which are external
rem libraries which depend on Layer 1 external libraries)
call :setup x64 Debug & call build_jsonrpccpp.bat & call bundle_jsonrpccpp.bat || goto :error
call :setup x64 Release & call build_jsonrpccpp.bat & call bundle_jsonrpccpp.bat || goto :error
call install_jsonrpccpp.bat || goto :error
rem secp256k1 needs building for crosseth. Why don't we need it here?
goto :EOF
:setup
set PLATFORM=%1
set CONFIGURATION=%2
goto :EOF
:error
echo Failed with error %errorlevel%
exit /b %errorlevel%
:EOF
| bcosorg/bcos | deps/main.bat | bat | gpl-3.0 | 3,515 |
@echo off
echo Starting web server for AIKIF
start /min C:\python34\python.exe ..\aikif\web_app\web_aikif.py
echo Server started - press SPACE to start browser
pause
start http://127.0.0.1:5000 | acutesoftware/AIKIF | scripts/go_web_aikif.bat | bat | gpl-3.0 | 195 |
perl randsmet.pl 20 > cool2.sme
perl smetana.pl cool2.sme -d cls -m 500
| catseye/SMETANA | eg/cool.bat | bat | unlicense | 72 |
RMDIR D:\Dropbox\Blog\content\posts
mklink /D D:\Dropbox\Blog\content\posts D:\Development\Blog\content\posts
::Try permissions
::https://answers.microsoft.com/en-us/windows/forum/windows_8-security/permission-error-failed-to-enumerate-objects-in/93ea883f-853f-4981-a697-928bfbc71642 | JustinLycklama/blog | saveContent.bat | bat | apache-2.0 | 284 |
@echo off
REM *****************************************************************************
REM
REM Pentaho Data Integration
REM
REM Copyright (C) 2005-2017 by Pentaho : http://www.pentaho.com
REM
REM *****************************************************************************
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with
REM the License. You may obtain a copy of the License at
REM
REM http://www.apache.org/licenses/LICENSE-2.0
REM
REM Unless required by applicable law or agreed to in writing, software
REM distributed under the License is distributed on an "AS IS" BASIS,
REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
REM See the License for the specific language governing permissions and
REM limitations under the License.
REM
REM *****************************************************************************
setlocal
cd /D %~dp0
REM **************************************************
REM ** Set console window properties **
REM **************************************************
REM TITLE Spoon console
REM COLOR F0
:: **************************************************
:: ** Kettle home **
:: **************************************************
if "%KETTLE_DIR%"=="" set KETTLE_DIR=%~dp0
if %KETTLE_DIR:~-1%==\ set KETTLE_DIR=%KETTLE_DIR:~0,-1%
cd %KETTLE_DIR%
REM Special console/debug options when called from SpoonConsole.bat or SpoonDebug.bat
if "%SPOON_CONSOLE%"=="1" set PENTAHO_JAVA=java.exe
if not "%SPOON_CONSOLE%"=="1" set PENTAHO_JAVA=javaw.exe
set IS64BITJAVA=0
call "%~dp0set-pentaho-env.bat"
REM **************************************************
REM Platform Specific SWT **
REM **************************************************
REM The following line is predicated on the 64-bit Sun
REM java output from -version which
REM looks like this (at the time of this writing):
REM
REM java version "1.6.0_17"
REM Java(TM) SE Runtime Environment (build 1.6.0_17-b04)
REM Java HotSpot(TM) 64-Bit Server VM (build 14.3-b01, mixed mode)
REM
REM Below is a logic to find the directory where java can found. We will
REM temporarily change the directory to that folder where we can run java there
pushd "%_PENTAHO_JAVA_HOME%"
if exist java.exe goto USEJAVAFROMPENTAHOJAVAHOME
cd bin
if exist java.exe goto USEJAVAFROMPENTAHOJAVAHOME
popd
pushd "%_PENTAHO_JAVA_HOME%\jre\bin"
if exist java.exe goto USEJAVAFROMPATH
goto USEJAVAFROMPATH
:USEJAVAFROMPENTAHOJAVAHOME
FOR /F %%a IN ('.\java.exe -version 2^>^&1^|%windir%\system32\find /C "64-Bit"') DO (SET /a IS64BITJAVA=%%a)
GOTO CHECK32VS64BITJAVA
:USEJAVAFROMPATH
FOR /F %%a IN ('java -version 2^>^&1^|%windir%\system32\find /C "64-Bit"') DO (SET /a IS64BITJAVA=%%a)
GOTO CHECK32VS64BITJAVA
:CHECK32VS64BITJAVA
IF %IS64BITJAVA% == 1 GOTO :USE64
:USE32
REM ===========================================
REM Using 32bit Java, so include 32bit SWT Jar
REM ===========================================
set LIBSPATH=libswt\win32
GOTO :CONTINUE
:USE64
REM ===========================================
REM Using 64bit java, so include 64bit SWT Jar
REM ===========================================
set LIBSPATH=libswt\win64
set SWTJAR=..\libswt\win64
:CONTINUE
popd
REM **********************
REM Collect arguments
REM **********************
set _cmdline=
:TopArg
if %1!==! goto EndArg
set _cmdline=%_cmdline% %1
shift
goto TopArg
:EndArg
REM ******************************************************************
REM ** Set java runtime options **
REM ** Change 2048m to higher values in case you run out of memory **
REM ** or set the PENTAHO_DI_JAVA_OPTIONS environment variable **
REM ******************************************************************
if "%PENTAHO_DI_JAVA_OPTIONS%"=="" set PENTAHO_DI_JAVA_OPTIONS="-Xms1024m" "-Xmx2048m" "-XX:MaxPermSize=256m"
set OPT=%OPT% %PENTAHO_DI_JAVA_OPTIONS% "-Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2" "-Djava.library.path=%LIBSPATH%" "-DKETTLE_HOME=%KETTLE_HOME%" "-DKETTLE_REPOSITORY=%KETTLE_REPOSITORY%" "-DKETTLE_USER=%KETTLE_USER%" "-DKETTLE_PASSWORD=%KETTLE_PASSWORD%" "-DKETTLE_PLUGIN_PACKAGES=%KETTLE_PLUGIN_PACKAGES%" "-DKETTLE_LOG_SIZE_LIMIT=%KETTLE_LOG_SIZE_LIMIT%" "-DKETTLE_JNDI_ROOT=%KETTLE_JNDI_ROOT%"
REM ***************
REM ** Run... **
REM ***************
if %STARTTITLE%!==! SET STARTTITLE="Spoon"
REM Eventually call java instead of javaw and do not run in a separate window
if not "%SPOON_CONSOLE%"=="1" set SPOON_START_OPTION=start %STARTTITLE%
@echo on
%SPOON_START_OPTION% "%_PENTAHO_JAVA%" %OPT% -jar launcher\launcher.jar -lib ..\%LIBSPATH% %_cmdline%
@echo off
if "%SPOON_PAUSE%"=="1" pause
| ViswesvarSekar/pentaho-kettle | assembly/package-res/Spoon.bat | bat | apache-2.0 | 4,752 |
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windows variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\.buildtools\gradlew.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
| akirakw/asakusafw-sdk | gradle/gradlew.bat | bat | apache-2.0 | 2,394 |
mysql\bin\mysql.exe -e "\. d:\localhost_wolispac_cow_10.SQL" wolispac_cow
pause
| wolispace/cow_windows_server | oldcow_on_apache/!refresh_from_d_cow_10_sql.bat | bat | apache-2.0 | 81 |
for %%f in (freebsd-11.3-release-*.json) do packer build %* %%f
for %%f in (freebsd-11.3-release-*.json) do packer build -var-file=vars-freebsd-11.3-i386.json %* %%f
| upperstream/packer-templates | freebsd/freebsd-11.3/build_all.bat | bat | apache-2.0 | 166 |
zmac --zmac -m Monitor.z80 | FoxCutter/Cubit | z80 Monitor/build.bat | bat | bsd-2-clause | 26 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_WOPI.MS_WOPI_S09_GetVersions.TestCase_S09_TC04_GetVersions_Success_Results_VersioningEnabled /testcontainer:..\..\MS-WOPI\TestSuite\bin\Debug\MS-WOPI_TestSuite.dll /runconfig:..\..\MS-WOPI\MS-WOPI.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | FileSyncandWOPI/Source/Scripts/MS-WOPI/RunMSWOPI_S09_TC04.cmd | bat | mit | 317 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCFXICS.S04_SyncFastTransferServerClientServerExtended_TestSuite.MSOXCFXICS_S04_SyncFastTransferServerClientServerExtended_TestSuite15 /testcontainer:..\..\MS-OXCFXICS\TestSuite\bin\Debug\MS-OXCFXICS_TestSuite.dll /runconfig:..\..\MS-OXCFXICS\MS-OXCFXICS.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeMAPI/Source/Scripts/MS-OXCFXICS/RunMSOXCFXICS_S04_SyncFastTransferServerClientServerExtended_TestSuite15.cmd | bat | mit | 376 |
c:\Python27\python.exe aom.py
| imrehg/labhardware | projects/novasynth/startsynth.bat | bat | mit | 30 |
@echo off
setlocal
REM Copyright 2006-2010 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the
REM Amazon Software License (the "License"). You may not use this file except in compliance with the License. A copy of the
REM License is located at http://aws.amazon.com/asl or in the "license" file accompanying this file. This file is distributed on an "AS
REM IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
REM language governing permissions and limitations under the License.
REM Set intermediate env vars because the %VAR:x=y% notation below
REM (which replaces the string x with the string y in VAR)
REM doesn't handle undefined environment variables. This way
REM we're always dealing with defined variables in those tests.
set CHK_HOME=_%EC2_HOME%
if %CHK_HOME% == "_" goto HOME_MISSING
"%EC2_HOME:"=%\bin\ec2-cmd" DescribeConversionTasks %*
goto DONE
:HOME_MISSING
echo EC2_HOME is not set
exit /b 1
:DONE
| sujoyg/tool | vendor/ec2-api-tools-1.4.2.2/bin/ec2dct.cmd | bat | mit | 1,040 |
@echo off
setlocal
if not "%APPVEYOR%" == "" (
set ELECTRON_RUN_AS_NODE=
)
set VSCODEUSERDATADIR=%TMP%\vscodeuserfolder-%RANDOM%-%TIME:~6,5%
:: Integration Tests
.\scripts\code.bat %~dp0\..\extensions\vscode-api-tests\testWorkspace --extensionDevelopmentPath=%~dp0\..\extensions\vscode-api-tests --extensionTestsPath=%~dp0\..\extensions\vscode-api-tests\out --disableExtensions --user-data-dir=%VSCODEUSERDATADIR%
.\scripts\code.bat %~dp0\..\extensions\vscode-colorize-tests\test --extensionDevelopmentPath=%~dp0\..\extensions\vscode-colorize-tests --extensionTestsPath=%~dp0\..\extensions\vscode-colorize-tests\out --user-data-dir=%VSCODEUSERDATADIR%
.\scripts\test-int-mocha.bat
rmdir /s /q %VSCODEUSERDATADIR%
endlocal
| hashhar/vscode | scripts/test-integration.bat | bat | mit | 727 |
cmd_drivers/usb/net/cdc_ether.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,drivers/usb/net/.cdc_ether.o.d -nostdinc -isystem /root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -mabi=32 -G 0 -mno-abicalls -fno-pic -pipe -msoft-float -ffreestanding -march=mips32r2 -Wa,-mips32r2 -Wa,--trap -Iinclude/asm-mips/rt2880 -Iinclude/asm-mips/mach-generic -fomit-frame-pointer -gdwarf-2 -fno-stack-protector -membedded-data -muninit-const-in-rodata -funit-at-a-time -Wdeclaration-after-statement -Wno-pointer-sign -DMODULE -mlong-calls -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(cdc_ether)" -D"KBUILD_MODNAME=KBUILD_STR(cdc_ether)" -c -o drivers/usb/net/cdc_ether.o drivers/usb/net/cdc_ether.c
deps_drivers/usb/net/cdc_ether.o := \
drivers/usb/net/cdc_ether.c \
$(wildcard include/config/usb/net/rndis/host.h) \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/generic/bug.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/sysfs.h) \
include/linux/spinlock.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
include/linux/thread_info.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
include/linux/compiler-gcc4.h \
$(wildcard include/config/forced/inlining.h) \
include/linux/compiler-gcc.h \
include/asm/posix_types.h \
include/asm/sgidefs.h \
include/asm/types.h \
$(wildcard include/config/highmem.h) \
$(wildcard include/config/64bit/phys/addr.h) \
$(wildcard include/config/64bit.h) \
include/linux/bitops.h \
include/asm/bitops.h \
$(wildcard include/config/cpu/mipsr2.h) \
$(wildcard include/config/cpu/mips32.h) \
$(wildcard include/config/cpu/mips64.h) \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
$(wildcard include/config/mips/mt/smtc.h) \
$(wildcard include/config/irq/cpu.h) \
$(wildcard include/config/mips/mt/smtc/instant/replay.h) \
include/asm/hazards.h \
$(wildcard include/config/cpu/r10000.h) \
$(wildcard include/config/cpu/rm9000.h) \
$(wildcard include/config/cpu/sb1.h) \
include/asm/barrier.h \
$(wildcard include/config/cpu/has/sync.h) \
$(wildcard include/config/cpu/has/wb.h) \
$(wildcard include/config/weak/ordering.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
include/asm/break.h \
include/asm-generic/bug.h \
$(wildcard include/config/debug/bugverbose.h) \
include/asm/byteorder.h \
$(wildcard include/config/cpu/mips64/r2.h) \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm/cpu-features.h \
$(wildcard include/config/32bit.h) \
$(wildcard include/config/cpu/mipsr2/irq/vi.h) \
$(wildcard include/config/cpu/mipsr2/irq/ei.h) \
include/asm/cpu.h \
include/asm/cpu-info.h \
$(wildcard include/config/sgi/ip27.h) \
$(wildcard include/config/mips/mt.h) \
include/asm/cache.h \
$(wildcard include/config/mips/l1/cache/shift.h) \
include/asm-mips/mach-generic/kmalloc.h \
$(wildcard include/config/dma/coherent.h) \
include/asm-mips/mach-generic/cpu-feature-overrides.h \
include/asm/war.h \
$(wildcard include/config/sgi/ip22.h) \
$(wildcard include/config/sni/rm.h) \
$(wildcard include/config/cpu/r5432.h) \
$(wildcard include/config/sb1/pass/1/workarounds.h) \
$(wildcard include/config/sb1/pass/2/workarounds.h) \
$(wildcard include/config/mips/malta.h) \
$(wildcard include/config/mips/atlas.h) \
$(wildcard include/config/mips/sead.h) \
$(wildcard include/config/cpu/tx49xx.h) \
$(wildcard include/config/momenco/jaguar/atx.h) \
$(wildcard include/config/pmc/yosemite.h) \
$(wildcard include/config/basler/excite.h) \
$(wildcard include/config/momenco/ocelot/3.h) \
include/asm-generic/bitops/non-atomic.h \
include/asm-generic/bitops/fls64.h \
include/asm-generic/bitops/ffz.h \
include/asm-generic/bitops/find.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm-generic/bitops/ext2-atomic.h \
include/asm-generic/bitops/minix.h \
include/asm/thread_info.h \
$(wildcard include/config/page/size/4kb.h) \
$(wildcard include/config/page/size/8kb.h) \
$(wildcard include/config/page/size/16kb.h) \
$(wildcard include/config/page/size/64kb.h) \
$(wildcard include/config/debug/stack/usage.h) \
include/asm/processor.h \
$(wildcard include/config/mips/mt/fpaff.h) \
$(wildcard include/config/cpu/has/prefetch.h) \
include/linux/cpumask.h \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/linux/bitmap.h \
include/linux/string.h \
include/asm/string.h \
$(wildcard include/config/cpu/r3000.h) \
include/asm/cachectl.h \
include/asm/mipsregs.h \
$(wildcard include/config/cpu/vr41xx.h) \
include/asm/prefetch.h \
include/asm/system.h \
include/asm/addrspace.h \
$(wildcard include/config/cpu/r4300.h) \
$(wildcard include/config/cpu/r4x00.h) \
$(wildcard include/config/cpu/r5000.h) \
$(wildcard include/config/cpu/rm7000.h) \
$(wildcard include/config/cpu/nevada.h) \
$(wildcard include/config/cpu/r8000.h) \
$(wildcard include/config/cpu/sb1a.h) \
include/asm-mips/mach-generic/spaces.h \
$(wildcard include/config/dma/noncoherent.h) \
include/asm/dsp.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/linux/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/linux/spinlock_types_up.h \
include/linux/spinlock_up.h \
include/linux/spinlock_api_up.h \
include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/cache.h \
$(wildcard include/config/arch/has/cache/line/size.h) \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/errno.h \
include/asm/errno.h \
include/asm-generic/errno-base.h \
include/linux/elf.h \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/linux/elf-em.h \
include/asm/elf.h \
$(wildcard include/config/mips32/n32.h) \
$(wildcard include/config/mips32/o32.h) \
$(wildcard include/config/mips32/compat.h) \
include/linux/kobject.h \
$(wildcard include/config/hotplug.h) \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/wait.h \
include/asm/current.h \
include/linux/moduleparam.h \
include/linux/init.h \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/acpi/hotplug/memory.h) \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/slob.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/flatmem.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/asm/page.h \
$(wildcard include/config/build/elf64.h) \
$(wildcard include/config/limited/dma.h) \
include/linux/pfn.h \
include/asm/io.h \
include/asm-generic/iomap.h \
include/asm/pgtable-bits.h \
$(wildcard include/config/cpu/mips32/r1.h) \
$(wildcard include/config/cpu/tx39xx.h) \
$(wildcard include/config/mips/uncached.h) \
include/asm-mips/mach-generic/ioremap.h \
include/asm-mips/mach-generic/mangle-port.h \
$(wildcard include/config/swap/io/space.h) \
include/asm-generic/memory_model.h \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/smp.h \
include/asm/topology.h \
include/asm-mips/mach-generic/topology.h \
include/asm-generic/topology.h \
include/linux/slub_def.h \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/calc64.h \
include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/timex.h \
$(wildcard include/config/time/interpolation.h) \
$(wildcard include/config/no/hz.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/asm/timex.h \
include/asm-mips/mach-generic/timex.h \
include/asm/percpu.h \
include/asm-generic/percpu.h \
include/asm/module.h \
$(wildcard include/config/cpu/mips32/r2.h) \
$(wildcard include/config/cpu/mips64/r1.h) \
$(wildcard include/config/cpu/r6000.h) \
include/asm/uaccess.h \
include/asm-generic/uaccess.h \
include/linux/netdevice.h \
$(wildcard include/config/ax25.h) \
$(wildcard include/config/tr.h) \
$(wildcard include/config/net/ipip.h) \
$(wildcard include/config/net/ipgre.h) \
$(wildcard include/config/ipv6/sit.h) \
$(wildcard include/config/ipv6/tunnel.h) \
$(wildcard include/config/wireless/ext.h) \
$(wildcard include/config/netpoll.h) \
$(wildcard include/config/net/poll/controller.h) \
$(wildcard include/config/netpoll/trap.h) \
$(wildcard include/config/net/dma.h) \
$(wildcard include/config/proc/fs.h) \
include/linux/if.h \
include/linux/socket.h \
$(wildcard include/config/compat.h) \
include/asm/socket.h \
include/asm/sockios.h \
include/asm/ioctl.h \
include/linux/sockios.h \
include/linux/uio.h \
include/linux/hdlc/ioctl.h \
include/linux/if_ether.h \
$(wildcard include/config/sysctl.h) \
include/linux/skbuff.h \
$(wildcard include/config/nf/conntrack.h) \
$(wildcard include/config/bridge/netfilter.h) \
$(wildcard include/config/vlan/8021q.h) \
$(wildcard include/config/raeth/skb/recycle/2k.h) \
$(wildcard include/config/net/sched.h) \
$(wildcard include/config/net/cls/act.h) \
$(wildcard include/config/network/secmark.h) \
$(wildcard include/config/imq.h) \
include/linux/net.h \
include/linux/random.h \
include/linux/ioctl.h \
include/linux/sysctl.h \
$(wildcard include/config/bcm/nat.h) \
include/linux/textsearch.h \
include/linux/err.h \
include/net/checksum.h \
include/asm/checksum.h \
include/linux/in6.h \
include/linux/rcupdate.h \
include/linux/dmaengine.h \
$(wildcard include/config/dma/engine.h) \
include/linux/device.h \
$(wildcard include/config/debug/devres.h) \
include/linux/ioport.h \
include/linux/klist.h \
include/linux/completion.h \
include/linux/pm.h \
$(wildcard include/config/pm.h) \
include/asm/semaphore.h \
include/asm/device.h \
include/asm-generic/device.h \
include/linux/hrtimer.h \
$(wildcard include/config/high/res/timers.h) \
include/linux/rbtree.h \
include/linux/if_packet.h \
include/linux/interrupt.h \
$(wildcard include/config/generic/irq/probe.h) \
include/linux/irqreturn.h \
include/linux/hardirq.h \
$(wildcard include/config/preempt/bkl.h) \
$(wildcard include/config/virt/cpu/accounting.h) \
include/linux/smp_lock.h \
$(wildcard include/config/lock/kernel.h) \
include/asm/hardirq.h \
include/linux/irq.h \
$(wildcard include/config/s390.h) \
$(wildcard include/config/irq/per/cpu.h) \
$(wildcard include/config/irq/release/method.h) \
$(wildcard include/config/generic/pending/irq.h) \
$(wildcard include/config/irqbalance.h) \
$(wildcard include/config/auto/irq/affinity.h) \
$(wildcard include/config/generic/hardirqs/no//do/irq.h) \
include/asm/irq.h \
$(wildcard include/config/i8259.h) \
include/asm/mipsmtregs.h \
include/asm-mips/mach-generic/irq.h \
$(wildcard include/config/irq/cpu/rm7k.h) \
$(wildcard include/config/irq/cpu/rm9k.h) \
include/asm/ptrace.h \
$(wildcard include/config/cpu/has/smartmips.h) \
include/asm/isadep.h \
include/asm/irq_regs.h \
include/asm/hw_irq.h \
include/linux/profile.h \
$(wildcard include/config/profiling.h) \
include/linux/irq_cpustat.h \
include/linux/sched.h \
$(wildcard include/config/detect/softlockup.h) \
$(wildcard include/config/split/ptlock/cpus.h) \
$(wildcard include/config/keys.h) \
$(wildcard include/config/bsd/process/acct.h) \
$(wildcard include/config/taskstats.h) \
$(wildcard include/config/inotify/user.h) \
$(wildcard include/config/schedstats.h) \
$(wildcard include/config/task/delay/acct.h) \
$(wildcard include/config/blk/dev/io/trace.h) \
$(wildcard include/config/cc/stackprotector.h) \
$(wildcard include/config/sysvipc.h) \
$(wildcard include/config/rt/mutexes.h) \
$(wildcard include/config/task/xacct.h) \
$(wildcard include/config/cpusets.h) \
$(wildcard include/config/fault/injection.h) \
include/linux/capability.h \
include/asm/mmu.h \
include/asm/cputime.h \
include/asm-generic/cputime.h \
include/linux/sem.h \
include/linux/ipc.h \
$(wildcard include/config/ipc/ns.h) \
include/asm/ipcbuf.h \
include/asm/sembuf.h \
include/linux/signal.h \
include/asm/signal.h \
$(wildcard include/config/trad/signals.h) \
$(wildcard include/config/binfmt/irix.h) \
include/asm-generic/signal.h \
include/asm/sigcontext.h \
include/asm/siginfo.h \
include/asm-generic/siginfo.h \
include/linux/securebits.h \
include/linux/fs_struct.h \
include/linux/pid.h \
include/linux/seccomp.h \
$(wildcard include/config/seccomp.h) \
include/linux/futex.h \
$(wildcard include/config/futex.h) \
include/linux/rtmutex.h \
$(wildcard include/config/debug/rt/mutexes.h) \
include/linux/plist.h \
$(wildcard include/config/debug/pi/list.h) \
include/linux/param.h \
include/linux/resource.h \
include/asm/resource.h \
include/asm-generic/resource.h \
include/linux/task_io_accounting.h \
$(wildcard include/config/task/io/accounting.h) \
include/linux/aio.h \
include/linux/aio_abi.h \
include/linux/etherdevice.h \
include/linux/ctype.h \
include/linux/ethtool.h \
include/linux/mii.h \
include/linux/usb.h \
$(wildcard include/config/usb/devicefs.h) \
$(wildcard include/config/usb/mon.h) \
$(wildcard include/config/usb/device/class.h) \
$(wildcard include/config/usb/suspend.h) \
include/linux/mod_devicetable.h \
include/linux/usb/ch9.h \
$(wildcard include/config/size.h) \
$(wildcard include/config/att/one.h) \
$(wildcard include/config/att/selfpower.h) \
$(wildcard include/config/att/wakeup.h) \
$(wildcard include/config/att/battery.h) \
include/linux/delay.h \
include/asm/delay.h \
include/asm/compiler.h \
include/linux/fs.h \
$(wildcard include/config/dnotify.h) \
$(wildcard include/config/quota.h) \
$(wildcard include/config/inotify.h) \
$(wildcard include/config/security.h) \
$(wildcard include/config/epoll.h) \
$(wildcard include/config/auditsyscall.h) \
$(wildcard include/config/block.h) \
$(wildcard include/config/fs/xip.h) \
$(wildcard include/config/migration.h) \
include/linux/limits.h \
include/linux/kdev_t.h \
include/linux/dcache.h \
include/linux/namei.h \
include/linux/radix-tree.h \
include/linux/prio_tree.h \
include/linux/quota.h \
include/linux/dqblk_xfs.h \
include/linux/dqblk_v1.h \
include/linux/dqblk_v2.h \
include/linux/nfs_fs_i.h \
include/linux/nfs.h \
include/linux/sunrpc/msg_prot.h \
include/linux/fcntl.h \
include/asm/fcntl.h \
include/asm-generic/fcntl.h \
include/linux/usb/cdc.h \
drivers/usb/net/usbnet.h \
drivers/usb/net/cdc_ether.o: $(deps_drivers/usb/net/cdc_ether.o)
$(deps_drivers/usb/net/cdc_ether.o):
| smx-smx/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/drivers/usb/net/.cdc_ether.o.cmd | bat | gpl-2.0 | 18,839 |
cmd_drivers/scsi/scsi_tgt.o := /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ld -EL -r -o drivers/scsi/scsi_tgt.o drivers/scsi/scsi_tgt_lib.o drivers/scsi/scsi_tgt_if.o
| friedrich420/Note-3-AEL-Kernel | drivers/scsi/.scsi_tgt.o.cmd | bat | gpl-2.0 | 189 |
REM @echo off
pushd %~p0
call compile_xamarin_android.bat x86
:END
popd | neutmute/emgucv | platforms/android/scripts/compile_xamarin_android_x86.bat | bat | gpl-3.0 | 73 |
cmd_fs/proc/built-in.o := arm-linux-androideabi-ld -EL -r -o fs/proc/built-in.o fs/proc/proc.o
| MihawkHu/Android_scheduler | kernel/goldfish/fs/proc/.built-in.o.cmd | bat | mit | 100 |
cmd_drivers/media/common/built-in.o := arm-linux-androideabi-ld -EL -r -o drivers/media/common/built-in.o drivers/media/common/tuners/built-in.o
| MihawkHu/Android_scheduler | kernel/goldfish/drivers/media/common/.built-in.o.cmd | bat | mit | 150 |
curl -u user:password -H "Accept: application/json" -H "Content-type: application/json" -X PUT http://localhost:8080/sla-service/enforcements/%1/start | Atos-FiwareOps/sla-framework | sla-core/samples/enforcementJobStartJSON.bat | bat | apache-2.0 | 150 |
curl -u user:password -H "Accept: application/json" -X GET localhost:8080/sla-service/templates/?serviceIds=%1 | Atos-FiwareOps/sla-framework | sla-core/samples/templateGetPerServicesJSON.bat | bat | apache-2.0 | 110 |
@echo off
:: Copyright 2016 The Chromium Authors. All rights reserved.
:: Use of this source code is governed by a BSD-style license that can be
:: found in the LICENSE file.
setlocal
:: Ensure that "depot_tools" is somewhere in PATH so this tool can be used
:: standalone, but allow other PATH manipulations to take priority.
set PATH=%PATH%;%~dp0
python "%~dp0cpplint.py" %*
| Shouqun/node-gn | tools/depot_tools/cpplint.bat | bat | mit | 390 |
@echo off
java -cp javaforce.jar;jftorrent.jar TorrentTracker %*
| thuliumcc/javaforce-thulium | projects/jftorrent/runTracker.bat | bat | lgpl-2.1 | 65 |
@rem /*
@rem Licensed to the Apache Software Foundation (ASF) under one
@rem or more contributor license agreements. See the NOTICE file
@rem distributed with this work for additional information
@rem regarding copyright ownership. The ASF licenses this file
@rem to you under the Apache License, Version 2.0 (the
@rem "License"); you may not use this file except in compliance
@rem with the License. You may obtain a copy of the License at
@rem
@rem http://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem */
@rem Batch file to run Jini ERI server
java -Djava.security.manager= ^
-Djava.security.policy=config\server.policy ^
-Djava.rmi.server.codebase="http://%computername%:8080/server-dl.jar http://%computername%:8080/jsk-dl.jar" ^
-jar lib\server.jar ^
config\jeri-server.config
| apache/river | src/com/sun/jini/example/hello/scripts/jeri-server.bat | bat | apache-2.0 | 1,164 |
:: LEAN IB Gateway Launcher
:: IB Controller Sourced-Modified from https://github.com/ib-controller/ib-controller
@echo off
set TWS_MAJOR_VRSN=968
set TRADING_MODE=%6
set IBC_PATH=%1
set TWS_PATH=%2
set TWSUSERID=%3
set TWSPASSWORD=%4
set APP=%5
set IBC_INI=%IBC_PATH%\IBController.ini
set LOG_PATH=%IBC_PATH%\Logs
set TITLE=IBController (%APP% %TWS_MAJOR_VRSN%)
set MIN=
if not defined LOG_PATH set MIN=/Min
set WAIT=
if /I "%~1" == "/WAIT" set WAIT=/wait
@echo on
start "%TITLE%" %MIN% %WAIT% "%IBC_PATH%\Scripts\DisplayBannerAndLaunch.bat"
:: clear out our history and the screen
doskey /reinstall
cls
:: leave this window running so we can find it later and close its child processes
pause | AnshulYADAV007/Lean | Brokerages/InteractiveBrokers/run-ib-controller.bat | bat | apache-2.0 | 699 |
@echo off
set OPENSSL_CONF=./conf/openssl.cnf
if not exist .\conf\ssl.crt mkdir .\conf\ssl.crt
if not exist .\conf\ssl.key mkdir .\conf\ssl.key
bin\openssl req -new -out server.csr
bin\openssl rsa -in privkey.pem -out server.key
bin\openssl x509 -in server.csr -out server.crt -req -signkey server.key -days 365
set OPENSSL_CONF=
del .rnd
del privkey.pem
del server.csr
move /y server.crt .\conf\ssl.crt
move /y server.key .\conf\ssl.key
echo.
echo -----
echo Das Zertifikat wurde erstellt.
echo The certificate was provided.
echo.
pause
| liuyangning/WX_web | xampp/apache/makecert.bat | bat | mit | 543 |
@echo off
rem
rem Copyright (C) 2000, 2001 Stephen Cleary ([email protected])
rem
rem This file can be redistributed and/or modified under the terms found
rem in "copyright.html"
rem This software and its documentation is provided "as is" without express or
rem implied warranty, and with no claim as to its suitability for any purpose.
rem
rem See http://www.boost.org for updates, documentation, and revision history.
rem
rem Check for Windows NT
if %OS%==Windows_NT goto NT
rem Not NT - run m4 as normal, then exit
m4 -P -E -DNumberOfArguments=%1 pool_construct.m4 > pool_construct.inc
goto end
rem DJGPP programs (including m4) running on Windows/NT do NOT support long
rem file names (see the DJGPP v2 FAQ, question 8.1)
rem Note that the output doesn't have to be a short name because it's an
rem argument to the command shell, not m4.
:NT
m4 -P -E -DNumberOfArguments=%1 < pool_construct.m4 > pool_construct.inc
:end | Ezeer/VegaStrike_win32FR | vegastrike/boost/1_28/boost/pool/detail/pool_construct.bat | bat | mit | 933 |
cat ../hbc/d2x-cios-installer/meta.xml | tr -d '\n\r\t' | sed -r "s/ [ ]+//" | sed -r "s/<release_date>[0-9]+<\/release_date>//" | sed -r "s/<version>.*<\/version>//" | sed -r "s/<\/app>$//" > meta.xml.tmp
sh -c "echo -n '<version>'" >> meta.xml.tmp
grep "^#define VERSION " d2x-cios-installer.h | cut --delimiter=" " --fields=3 | tr -d '"\n\r' >> meta.xml.tmp
sh -c "echo -n '</version><release_date>'" >> meta.xml.tmp
sh -c "ls -l --time-style=+%Y%m%d%H%M%S d2x-cios-installer.elf" | cut --delimiter=" " --fields=6 | tr -d '\n\r' >> meta.xml.tmp
sh -c "echo -n '</release_date></app>'" >> meta.xml.tmp
mv -f d2x-cios-installer.dol ../hbc/d2x-cios-installer/boot.dol
mv -f meta.xml.tmp ../hbc/d2x-cios-installer/meta.xml
wiiload d2x-cios-installer.elf
rm d2x-cios-installer.elf | ECToo/d2x-cios-installer | sources/postbuild.bat | bat | gpl-2.0 | 787 |
@echo off
:checkJava
if "%JAVA_HOME%" == "" goto noJavaHome
if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome
goto runClient
:noJavaHome
echo "You must set the JAVA_HOME variable before running the client"
goto end
:runClient
set CLASSPATH=..\..\..\lib\*;..\..\..\target\org.wso2.carbon.identity.samples.sts-4.2.0-SNAPSHOT.jar
"%JAVA_HOME%\bin\java" -classpath %CLASSPATH% org.wso2.carbon.identity.samples.sts.Client
:end
:END
| johannnallathamby/product-is | modules/samples/sts/sts-client/sts-client.bat | bat | apache-2.0 | 438 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\..\..\.3.7.0@js-yaml\bin\js-yaml.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\..\..\.3.7.0@js-yaml\bin\js-yaml.js" %*
) | athena-github/athena-github.github.io | xiangmuu--weizhan/node_modules/.0.7.2@svgo/node_modules/.bin/js-yaml.cmd | bat | apache-2.0 | 212 |
@echo off
setlocal
SET _BUILD_DISABLE_SDV=Yes
call build_NoLegacy.bat %*
| daynix/kvm-guest-drivers-windows | viostor/build_NoLegacyNoSdv.bat | bat | bsd-3-clause | 73 |
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" "http://localhost:4000/" --new-window
jekyll serve --drafts
| the-living/the-living.github.io | start.bat | bat | mit | 122 |
@echo off
set CHROME_PATH="%HOME%\AppData\Local\Google\Chrome\Application"
set EXTENSION_DIR=%CD%\NC4GC
set EXTENSION_KEY_FILE=%CD%\NC4GC.pem
%CHROME_PATH%\chrome.exe --pack-extension=%EXTENSION_DIR% --pack-extension-key=%EXTENSION_KEY_FILE% | nus/CommentViewerForGoogleChrome | make_package.cmd | bat | mit | 243 |
@echo off
call npm install
SETLOCAL
SET PATH=node_modules\.bin;node_modules\hubot\node_modules\.bin;%PATH%
node_modules\.bin\hubot.cmd --name "ClaudeBot" %* | ClaudeBot/ClaudeBot | bin/hubot.cmd | bat | mit | 158 |
@if not defined INCLUDE goto :FAIL
@setlocal
@set LUAJIT_SRC=luajit-2.0\src\
@set GLFW_SRC=glfw\src\
@set AVCOMPILE=cl /nologo /c /O2 /W3 /D_CRT_SECURE_NO_DEPRECATE /MT
@set AVLINK=link /nologo
echo building luajit:
pushd %LUAJIT_SRC%
dir
@call msvcbuild
popd
copy %LUAJIT_SRC%luajit.exe .
copy %LUAJIT_SRC%lua51.dll .
echo building GLFW:
pushd %GLFW_SRC%
%AVCOMPILE% /D_GLFW_WIN32 /D_GLFW_WGL /D_GLFW_USE_OPENGL /D_GLFW_BUILD_DLL clipboard.c context.c gamma.c init.c input.c joystick.c monitor.c time.c wgl_context.c window.c win32*.c
@if errorlevel 1 goto :BAD
%AVLINK% /DLL /out:glfw.dll *.obj user32.lib ole32.lib gdi32.lib opengl32.lib
@if errorlevel 1 goto :BAD
popd
copy %GLFW_SRC%glfw.dll .
@goto :END
:BAD
@echo.
@echo *******************************************************
@echo *** Build FAILED -- Please check the error messages ***
@echo *******************************************************
@goto :END
:FAIL
@echo You must open a "Visual Studio .NET Command Prompt" to run this script
:END
| LuaAV/libluaav | build_luajit_osx.bat | bat | mit | 1,015 |
@ECHO OFF
COLOR 02
SetLocal EnableDelayedExpansion
SET "ScriptDir=cd"
ECHO %ScriptDir%
pause
:Check_Permissions
net session >nul 2>&1
if %errorLevel% == 0 (
GOTO EnvVars
) else (
COLOR 0C
ECHO Admin privelages required. Please Re-run as Administrator.
GOTO End
)
:GitConfig
ECHO.
ECHO ==============================
ECHO Setup Environmental Variables
ECHO ==============================
ECHO.
IF "%SyncHome%"=="" (SET Default="D:\Dropbox") ELSE (SET Default="%SyncHome%")
SET /P SyncHomePath=SyncHome SyncHomePath [%Default%]: || SET SyncHomePath=%Default%
ECHO.
ECHO Use %SyncHomePath% as SyncHome?
PAUSE
SET SyncHome "%SyncHomePath%"
SETX SyncHome "%SyncHomePath%"
SET Apps "%%SyncHome%%\Apps"
SETX Apps "%%SyncHome%%\Apps"
SETX Cmder "%%Apps%%\System\Cmder\Cmder.exe"
SETX Sublime "%ProgramFiles%\Sublime Text 3\Sublime_text.exe"
:Symlink
| richardfrost/dotfiles | windows/Archive/other.bat | bat | mit | 854 |
@echo off
set "VIRTUAL_ENV=C:\Users\Raaw\Documents\Visual Studio 2013\Projects\Echelon\DjangoFrontendHD\Echelon"
if defined _OLD_VIRTUAL_PROMPT (
set "PROMPT=%_OLD_VIRTUAL_PROMPT%"
) else (
if not defined PROMPT (
set "PROMPT=$P$G"
)
set "_OLD_VIRTUAL_PROMPT=%PROMPT%"
)
set "PROMPT=(Echelon) %PROMPT%"
if not defined _OLD_VIRTUAL_PYTHONHOME (
set "_OLD_VIRTUAL_PYTHONHOME=%PYTHONHOME%"
)
set PYTHONHOME=
if defined _OLD_VIRTUAL_PATH (
set "PATH=%_OLD_VIRTUAL_PATH%"
) else (
set "_OLD_VIRTUAL_PATH=%PATH%"
)
set "PATH=%VIRTUAL_ENV%\Scripts;%PATH%"
:END
| Ananasus/EchelonFrontEnd | DjangoFrontendHD/Echelon/Scripts/activate.bat | bat | mit | 618 |
set TCC=C:\tcc\tcc
%TCC% rawdraw.c -o rawdraw.exe -luser32 -lgdi32 -lopengl32 C:/windows/system32/msvcrt.dll | cnlohr/rawdraw | tccbuild.bat | bat | mit | 109 |
@ECHO OFF
REM go to repository root
cd "%~dp0%\.."
SET config=Release
SET sln=.\Source\SharpGeometry.sln
SET msbuild=%ProgramFiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe
IF NOT EXIST "%msbuild%" ECHO Could not find %msbuild% & PAUSE & GOTO :EOF
IF NOT EXIST "%sln%" ECHO Could not find %sln% & PAUSE & GOTO :EOF
ECHO ---[ Build %sln% @ %config% ]---
"%msbuild%" /nologo /verbosity:minimal "%sln%" /p:Configuration=%config%
| nzain/SharpGeometry | Scripts/Build.bat | bat | mit | 422 |
Set JAVALIB=C:\dev\Perforce\devcentral\dc4\Labs\iControlAssembly\java\3rdparty\jar\Axis1.fix2
set AXIS_CLASSPATH=%JAVALIB%\axis.jar;%JAVALIB%\commons-discovery.jar;%JAVALIB%\commons-logging.jar;%JAVALIB%\jaxrpc.jar;%JAVALIB%\junit.jar;%JAVALIB%\saaj.jar;%JAVALIB%\wsdl4j.jar;%JAVALIB%\activation.jar;%JAVALIB%\mail.jar
:set HOST=dc1-prd-asm-01.dc.local
set HOST=bigip.joesmacbook.com
:set HOST=10.128.1.245
set UID=admin
set PWD=admin
set TIMEOUT=10000
c:\Progra~1\Java\jdk1.6.0_45\bin\java.exe -classpath %AXIS_CLASSPATH%;.;..\lib\iControl.jar SystemInfo %HOST% 443 %UID% %PWD% %TIMEOUT%
:c:\jdk1.6.0_16\bin\java.exe -classpath %AXIS_CLASSPATH%;.;..\lib\iControl.jar PoolMember theboss 443 admin admin pool_1 add 1.1.1.1 80
:c:\jdk1.6.0_16\bin\java.exe -classpath %AXIS_CLASSPATH%;.;..\lib\iControl.jar PoolMember theboss 443 admin admin dc-llix-web
:c:\jdk1.6.0_16\bin\java.exe -classpath %AXIS_CLASSPATH%;.;..\lib\iControl.jar PoolMember theboss 443 admin admin pool_1 remove 1.1.1.1 80
:c:\jdk1.6.0_16\bin\java.exe -classpath %AXIS_CLASSPATH%;.;..\lib\iControl.jar PoolMember theboss 443 admin admin pool_1 sessstate 10.10.10.149 80 enable
:c:\jdk1.6.0_16\bin\java.exe -classpath %AXIS_CLASSPATH%;.;..\lib\iControl.jar Main
:c:\jdk1.6.0_16\bin\java.exe -classpath %AXIS_CLASSPATH%;.;..\lib\iControl.jar PoolMember theboss 443 admin admin noerror getgtmrule foo 10
:c:\jdk1.6.0_16\bin\java.exe -classpath %AXIS_CLASSPATH%;.;..\lib\iControl.jar PoolMember theboss 443 admin admin DC5
:c:\jdk1.6.0_20\bin\java.exe -classpath %AXIS_CLASSPATH%;.;..\lib\iControl.jar LocalLBMonitor 10.50.5.11 443 h-Joe C@nUH3arMe!
:c:\jdk1.6.0_20\bin\java.exe -classpath %AXIS_CLASSPATH%;.;..\lib\iControl.jar PoolMember 10.50.5.11 443 %UID %PWD
:c:\jdk1.6.0_20\bin\java.exe -classpath %AXIS_CLASSPATH%;.;..\lib.11.3-1.6\iControl.jar LocalLBMonitor dc1-prd-asm-01.dc.local 443 %UID% %PWD%
:c:\jdk1.6.0_20\bin\java.exe -classpath %AXIS_CLASSPATH%;.;..\lib.11.3-1.5\iControl.jar LocalLBMonitor %HOST% 80 %UID% %PWD% %TIMEOUT%
| F5Networks/f5-icontrol-library-java | legacy/test/run.cmd | bat | mit | 2,013 |
java -cp bin;lib\log4j-1.2.17.jar;lib\jacob.jar main.MainWindow STEADY | ComputationalReflection/weaveJ | Benchmarks/Real Applications/Java + Invokedynamic/Hotdraw/measureJavaTimeSteady.bat | bat | mit | 70 |
choco install 7zip sysinternals -y
| ridercz/Scripts | Setup-Workstation/3_Chocolatey_packages_server.cmd | bat | mit | 35 |
cmd_arch/powerpc/boot/treeboot-bamboo.o := ppc_4xx-gcc -m32 -Wp,-MD,arch/powerpc/boot/.treeboot-bamboo.o.d -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -Os -msoft-float -pipe -fomit-frame-pointer -fno-builtin -fPIC -nostdinc -isystem /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include -g -fno-stack-protector -Iarch/powerpc/boot -I/tools/dev/repos/linux-2.6-xlnx/arch/powerpc/boot -c -o arch/powerpc/boot/treeboot-bamboo.o arch/powerpc/boot/treeboot-bamboo.c
deps_arch/powerpc/boot/treeboot-bamboo.o := \
arch/powerpc/boot/treeboot-bamboo.c \
arch/powerpc/boot/ops.h \
/tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include/stddef.h \
arch/powerpc/boot/types.h \
arch/powerpc/boot/string.h \
arch/powerpc/boot/stdio.h \
/tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include/stdarg.h \
arch/powerpc/boot/44x.h \
arch/powerpc/boot/stdlib.h \
arch/powerpc/boot/treeboot-bamboo.o: $(deps_arch/powerpc/boot/treeboot-bamboo.o)
$(deps_arch/powerpc/boot/treeboot-bamboo.o):
| mattkelly/linux-2.6-xlnx | arch/powerpc/boot/.treeboot-bamboo.o.cmd | bat | gpl-2.0 | 1,041 |
cmd_sound/isa/es1688/built-in.o := rm -f sound/isa/es1688/built-in.o; /home/madrocker/Desktop/JetDroid1/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ar rcs sound/isa/es1688/built-in.o
| MadRocker/experimental-2.6.29-MadRocker | sound/isa/es1688/.built-in.o.cmd | bat | gpl-2.0 | 178 |
REM CommandInterpreter: $(COMSPEC)
@echo off
rem ------------------------------
rem create php code from GRT structs
if not exist ..\source\php\db mkdir ..\source\php\db
if not exist ..\source\php\db\migration mkdir ..\source\php\db\migration
if not exist ..\source\php\db\oracle mkdir ..\source\php\db\oracle
rem migration
..\..\mysql-gui-common\bin\windows\grtsh -p ..\res\grt\structs.db.migration.xml ..\source\php\db\migration\
rem migration
..\..\mysql-gui-common\bin\windows\grtsh -p ..\res\grt\structs.db.oracle.xml ..\source\php\db\oracle\ | cyberbeat/mysql-gui-tools | migration-tool/build/PreparePhpCode.bat | bat | gpl-2.0 | 565 |
# This file should be used with EPICS base 3.15.4 and mrfioc2 2.7.13
# With current EEE 1.8.2, the proper command is
# $ iocsh cpci-evg-230_0.cmd
# or
# $ iocsh -3.15.4 cpci-evg-230_0.cmd
require mrfioc2,2.7.13
epicsEnvSet("SYS" "ICS-CPCI")
epicsEnvSet("EVG" "EVG230")
epicsEnvSet("EVG_PCIBUS" "0x16")
epicsEnvSet("EVG_PCIDEVICE" "0x09")
epicsEnvSet("EVG_PCIFUNCTION" "0x0")
mrmEvgSetupPCI($(EVG), $(EVG_PCIBUS), $(EVG_PCIDEVICE), $(EVG_PCIFUNCTION))
dbLoadRecords("evg-cpci.db", "DEVICE=$(EVG), SYS=$(SYS)")
iocInit
dbl > cpci-evg-230/cpci-evg-230b.pvlist
dbpf $(SYS)-$(EVG):TrigEvt0-EvtCode-SP 14
dbpf $(SYS)-$(EVG):Mxc0-Frequency-SP 14
dbpf $(SYS)-$(EVG):Mxc0-TrigSrc0-SP 1
dbpf $(SYS)-$(EVG):SoftEvt-Enable-Sel 1 | icshwi/icsem_scripts | cpci-evg-230/cpci-evg-230b_14Hz.cmd | bat | gpl-2.0 | 756 |
cmd_drivers/media/video/gspca/gspca_main.ko := ../prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi-ld.bfd -EL -r -T /media/mwilson/SSD/NU3001/kk4.4.2-rk/kernel/scripts/module-common.lds --build-id -o drivers/media/video/gspca/gspca_main.ko drivers/media/video/gspca/gspca_main.o drivers/media/video/gspca/gspca_main.mod.o
| Zaphod-Beeblebrox/kernel_rockchip_rk3188 | drivers/media/video/gspca/.gspca_main.ko.cmd | bat | gpl-2.0 | 329 |
cmd_drivers/misc/tsif_chrdev.ko := arm-eabi-ld -EL -r -T /data/repos/kernels/scripts/module-common.lds --build-id -o drivers/misc/tsif_chrdev.ko drivers/misc/tsif_chrdev.o drivers/misc/tsif_chrdev.mod.o
| bigbiff/i717-GB-Kernel | drivers/misc/.tsif_chrdev.ko.cmd | bat | gpl-2.0 | 204 |
cmd_sound/mips/built-in.o := rm -f sound/mips/built-in.o; arm-linux-gnueabi-ar rcsD sound/mips/built-in.o
| jpsminix/minix5 | sound/mips/.built-in.o.cmd | bat | gpl-2.0 | 107 |
cmd_drivers/acpi/events/evxfevnt.o := gcc -Wp,-MD,drivers/acpi/events/.evxfevnt.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.6/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2 -fno-optimize-sibling-calls -mtune=generic -m64 -mno-red-zone -mcmodel=kernel -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -funit-at-a-time -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -maccumulate-outgoing-args -fno-omit-frame-pointer -fno-optimize-sibling-calls -g -fno-stack-protector -Wdeclaration-after-statement -Wno-pointer-sign -Os -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(evxfevnt)" -D"KBUILD_MODNAME=KBUILD_STR(evxfevnt)" -c -o drivers/acpi/events/evxfevnt.o drivers/acpi/events/evxfevnt.c
deps_drivers/acpi/events/evxfevnt.o := \
drivers/acpi/events/evxfevnt.c \
include/acpi/acpi.h \
include/acpi/acnames.h \
include/acpi/acconfig.h \
$(wildcard include/config/h.h) \
include/acpi/platform/acenv.h \
include/acpi/platform/aclinux.h \
include/linux/string.h \
include/linux/compiler.h \
$(wildcard include/config/enable/must/check.h) \
include/linux/compiler-gcc4.h \
$(wildcard include/config/forced/inlining.h) \
include/linux/compiler-gcc.h \
include/linux/types.h \
$(wildcard include/config/uid16.h) \
$(wildcard include/config/lbd.h) \
$(wildcard include/config/lsf.h) \
$(wildcard include/config/resources/64bit.h) \
include/linux/posix_types.h \
include/linux/stddef.h \
include/asm/posix_types.h \
include/asm/types.h \
include/asm/string.h \
include/linux/kernel.h \
$(wildcard include/config/preempt/voluntary.h) \
$(wildcard include/config/debug/spinlock/sleep.h) \
$(wildcard include/config/printk.h) \
$(wildcard include/config/numa.h) \
/usr/lib/gcc/x86_64-linux-gnu/4.6/include/stdarg.h \
include/linux/linkage.h \
include/asm/linkage.h \
include/linux/bitops.h \
include/asm/bitops.h \
include/asm/alternative.h \
$(wildcard include/config/smp.h) \
$(wildcard include/config/paravirt.h) \
include/asm/cpufeature.h \
include/asm-generic/bitops/sched.h \
include/asm-generic/bitops/hweight.h \
include/asm-generic/bitops/ext2-non-atomic.h \
include/asm-generic/bitops/le.h \
include/asm/byteorder.h \
include/linux/byteorder/little_endian.h \
include/linux/byteorder/swab.h \
include/linux/byteorder/generic.h \
include/asm-generic/bitops/minix.h \
include/linux/log2.h \
$(wildcard include/config/arch/has/ilog2/u32.h) \
$(wildcard include/config/arch/has/ilog2/u64.h) \
include/asm/bug.h \
$(wildcard include/config/bug.h) \
$(wildcard include/config/debug/bugverbose.h) \
include/asm-generic/bug.h \
$(wildcard include/config/generic/bug.h) \
include/linux/module.h \
$(wildcard include/config/modules.h) \
$(wildcard include/config/modversions.h) \
$(wildcard include/config/unused/symbols.h) \
$(wildcard include/config/module/unload.h) \
$(wildcard include/config/kallsyms.h) \
$(wildcard include/config/sysfs.h) \
include/linux/spinlock.h \
$(wildcard include/config/debug/spinlock.h) \
$(wildcard include/config/preempt.h) \
$(wildcard include/config/debug/lock/alloc.h) \
include/linux/preempt.h \
$(wildcard include/config/debug/preempt.h) \
include/linux/thread_info.h \
include/asm/thread_info.h \
$(wildcard include/config/debug/stack/usage.h) \
include/asm/page.h \
$(wildcard include/config/physical/start.h) \
$(wildcard include/config/flatmem.h) \
include/linux/const.h \
include/asm-generic/memory_model.h \
$(wildcard include/config/discontigmem.h) \
$(wildcard include/config/sparsemem.h) \
$(wildcard include/config/out/of/line/pfn/to/page.h) \
include/asm-generic/page.h \
include/asm/pda.h \
$(wildcard include/config/cc/stackprotector.h) \
include/linux/cache.h \
include/asm/cache.h \
$(wildcard include/config/x86/l1/cache/shift.h) \
$(wildcard include/config/x86/vsmp.h) \
include/asm/mmsegment.h \
include/linux/stringify.h \
include/linux/bottom_half.h \
include/asm/system.h \
$(wildcard include/config/unordered/io.h) \
include/asm/segment.h \
include/asm/cmpxchg.h \
include/linux/irqflags.h \
$(wildcard include/config/trace/irqflags.h) \
$(wildcard include/config/trace/irqflags/support.h) \
$(wildcard include/config/x86.h) \
include/asm/irqflags.h \
include/asm/processor-flags.h \
include/asm-i386/processor-flags.h \
include/linux/spinlock_types.h \
include/linux/lockdep.h \
$(wildcard include/config/lockdep.h) \
$(wildcard include/config/generic/hardirqs.h) \
$(wildcard include/config/prove/locking.h) \
include/linux/list.h \
$(wildcard include/config/debug/list.h) \
include/linux/poison.h \
include/linux/prefetch.h \
include/asm/processor.h \
include/asm/sigcontext.h \
include/linux/threads.h \
$(wildcard include/config/nr/cpus.h) \
$(wildcard include/config/base/small.h) \
include/asm/msr.h \
include/asm/msr-index.h \
include/asm-i386/msr-index.h \
include/linux/errno.h \
include/asm/errno.h \
include/asm-generic/errno.h \
include/asm-generic/errno-base.h \
include/asm/current.h \
include/asm/percpu.h \
include/linux/personality.h \
include/linux/cpumask.h \
$(wildcard include/config/hotplug/cpu.h) \
include/linux/bitmap.h \
include/linux/debug_locks.h \
$(wildcard include/config/debug/locking/api/selftests.h) \
include/linux/stacktrace.h \
$(wildcard include/config/stacktrace.h) \
include/linux/spinlock_types_up.h \
include/linux/spinlock_up.h \
include/linux/spinlock_api_smp.h \
include/asm/atomic.h \
include/asm-generic/atomic.h \
include/linux/stat.h \
include/asm/stat.h \
include/linux/time.h \
include/linux/seqlock.h \
include/linux/kmod.h \
$(wildcard include/config/kmod.h) \
include/linux/elf.h \
include/linux/auxvec.h \
include/asm/auxvec.h \
include/linux/elf-em.h \
include/asm/elf.h \
include/asm/ptrace.h \
include/asm/ptrace-abi.h \
include/asm/user.h \
include/linux/kobject.h \
$(wildcard include/config/hotplug.h) \
include/linux/sysfs.h \
include/linux/kref.h \
include/linux/wait.h \
include/linux/moduleparam.h \
include/linux/init.h \
$(wildcard include/config/memory/hotplug.h) \
$(wildcard include/config/acpi/hotplug/memory.h) \
include/asm/local.h \
include/linux/percpu.h \
include/linux/slab.h \
$(wildcard include/config/slab/debug.h) \
$(wildcard include/config/slab.h) \
$(wildcard include/config/slub.h) \
$(wildcard include/config/debug/slab.h) \
include/linux/gfp.h \
$(wildcard include/config/zone/dma.h) \
$(wildcard include/config/zone/dma32.h) \
$(wildcard include/config/highmem.h) \
include/linux/mmzone.h \
$(wildcard include/config/force/max/zoneorder.h) \
$(wildcard include/config/arch/populates/node/map.h) \
$(wildcard include/config/flat/node/mem/map.h) \
$(wildcard include/config/have/memory/present.h) \
$(wildcard include/config/need/node/memmap/size.h) \
$(wildcard include/config/need/multiple/nodes.h) \
$(wildcard include/config/have/arch/early/pfn/to/nid.h) \
$(wildcard include/config/sparsemem/extreme.h) \
$(wildcard include/config/nodes/span/other/nodes.h) \
$(wildcard include/config/holes/in/zone.h) \
include/linux/numa.h \
$(wildcard include/config/nodes/shift.h) \
include/linux/nodemask.h \
include/linux/memory_hotplug.h \
$(wildcard include/config/have/arch/nodedata/extension.h) \
include/linux/notifier.h \
include/linux/mutex.h \
$(wildcard include/config/debug/mutexes.h) \
include/linux/mutex-debug.h \
include/linux/rwsem.h \
$(wildcard include/config/rwsem/generic/spinlock.h) \
include/linux/rwsem-spinlock.h \
include/linux/srcu.h \
include/linux/topology.h \
$(wildcard include/config/sched/smt.h) \
$(wildcard include/config/sched/mc.h) \
include/linux/smp.h \
include/asm/topology.h \
$(wildcard include/config/acpi/numa.h) \
include/asm-generic/topology.h \
include/linux/slub_def.h \
include/linux/workqueue.h \
include/linux/timer.h \
$(wildcard include/config/timer/stats.h) \
include/linux/ktime.h \
$(wildcard include/config/ktime/scalar.h) \
include/linux/jiffies.h \
include/linux/calc64.h \
include/asm/div64.h \
include/asm-generic/div64.h \
include/linux/timex.h \
$(wildcard include/config/time/interpolation.h) \
$(wildcard include/config/no/hz.h) \
include/asm/param.h \
$(wildcard include/config/hz.h) \
include/asm/timex.h \
include/asm/8253pit.h \
include/asm/vsyscall.h \
$(wildcard include/config/generic/time.h) \
include/asm/hpet.h \
$(wildcard include/config/hpet/emulate/rtc.h) \
include/asm/tsc.h \
include/asm-i386/tsc.h \
$(wildcard include/config/x86/tsc.h) \
$(wildcard include/config/x86/generic.h) \
include/asm/module.h \
include/linux/ctype.h \
include/asm/acpi.h \
$(wildcard include/config/acpi.h) \
$(wildcard include/config/acpi/sleep.h) \
include/acpi/pdc_intel.h \
include/acpi/platform/acgcc.h \
include/acpi/actypes.h \
include/acpi/actypes.h \
include/acpi/acexcep.h \
include/acpi/acmacros.h \
include/acpi/actbl.h \
include/acpi/actbl1.h \
include/acpi/aclocal.h \
include/acpi/acoutput.h \
include/acpi/acpiosxf.h \
include/acpi/acpixf.h \
include/acpi/acobject.h \
include/acpi/acstruct.h \
include/acpi/acglobal.h \
include/acpi/achware.h \
include/acpi/acutils.h \
include/acpi/acevents.h \
include/acpi/acnamesp.h \
include/acpi/actables.h \
drivers/acpi/events/evxfevnt.o: $(deps_drivers/acpi/events/evxfevnt.o)
$(deps_drivers/acpi/events/evxfevnt.o):
| dnh34/proj1 | drivers/acpi/events/.evxfevnt.o.cmd | bat | gpl-2.0 | 9,868 |
@echo off
rem Obtiene la lista de argumentos de la linea de comandos
set ARGS=%1 %2 %3 %4 %5 %6 %7 %8 %9
if not "%OS%"=="Windows_NT" goto Win9x
set ARGS=%*
goto endif
:Win9x
shift
if "%9"=="" goto endif
set ARGS=%ARGS% %9
goto Win9x
:endif
set JVM=%JAVA_HOME%\bin\java %JAVA_RUN_OPTS%
%JVM% es.tid.corba.TIDNotif.tools.ProxyPullConsumer %ARGS%
set ARGS=
set JVM=
| AlvaroVega/TIDNotifJ | tools/TIDNotif/ProxyPullConsumer.bat | bat | gpl-2.0 | 373 |
xelatex linuxprocess.beamer.tex
# xelatex linuxprocess.beamer.tex
xelatex linuxprocess.article.tex
# xelatex linuxprocess.article.tex
| xingnix/learning | embedded/beamer/09_process/compile.bat | bat | gpl-3.0 | 138 |
copy ..\regapihook\release\regapihook.dll .
copy ..\traceapi\release\traceapi.exe .
| huang-zhen/Ocasta | TraceAPI/setup/package.bat | bat | gpl-3.0 | 88 |
@echo off
echo Launching k4freeserver...
set path=c:\ruby191\bin;c:\ruby192\bin;c:\ruby193\bin;%path%
cd src
ruby k4freeserver.rb --v | pierotofy/k4freeserver | startServer.bat | bat | gpl-3.0 | 133 |
md mus
cd mus
bcut ..\NIKO2.DSK DRIVER.BIN 0x02800 0x1000
..\wolfmcut.exe ..\NIKO2.DSK MUS
cd ..
| rururutan/hoot-patches | msx/wolf_team/niko2/cut/cut.bat | bat | gpl-3.0 | 97 |
set CLASSPATH=.;%RTM_JAVA_ROOT%\jar\OpenRTM-aist-1.1.0.jar;%RTM_JAVA_ROOT%\jar\commons-cli-1.1.jar
cd /d %~dp0
cd bin
java TestOut_javaComp -f rtc.conf %*
pause;
| sugarsweetrobotics/TestOut_java | TestOut_java.bat | bat | gpl-3.0 | 162 |
"C:\Program Files\MySQL\MySQL Server 4.1\bin\mysqldump" --opt riskfin --user=root --password=djb115 > structure.sql | NielBuys/NCompPOS | SQL Install 1.1.3/dump data from local.bat | bat | gpl-3.0 | 115 |
@echo off
title Auto_Server_Restart_Taviana
set Arma_Path=C:\###DrivePath###
set Arma_Mods=@DayzOverwatch;@DayzOrigins;@DayZ_Epoch;@DayZ_Epoch_Server
Set Arma_Name=DayZConfig_Taviana
Set Arma_Config=DayZConfig_Taviana\server.cfg
Set Arma_Cfg=DayZConfig_Taviana\basic.cfg
Set Arma_Profiles=DayZConfig_Taviana
set ServerEXE=arma2oaserver_Taviana.exe
set BERCon_Path=C:\###DrivePath###
set SQL_Path=C:\###DrivePath###
Set SQL_Port=####
Set SQL_User=###username###
Set SQL_Pass=###password###
Set SQL_Name=hivemind
Set SQL_Titl=TavianaDatabase
set sIP=127.0.0.1
set sPort=#####
set RConP=###Password###
Set CurrentMessage=0
CALL :LoadKickVars
:Start
timeout /t 5 /nobreak > NUL
set hour=%TIME:~0,2%
if "%hour:~0,1%" == " " set hour=0%hour:~1,1%
set minute=%TIME:~3,2%
set second=%TIME:~6,2%
set timeStamp=%hour%%minute%.%second%
:: 0005 - 0400
if %timeStamp% GEQ 0335.00 if %timeStamp% LSS 0400.00 goto Msg01
if %timeStamp% GEQ 0400.00 if %timeStamp% LSS 0430.00 goto Msg02
if %timeStamp% GEQ 0430.00 if %timeStamp% LSS 0500.00 goto Msg03
if %timeStamp% GEQ 0500.00 if %timeStamp% LSS 0530.00 goto Msg04
if %timeStamp% GEQ 0530.00 if %timeStamp% LSS 0600.00 goto Msg05
if %timeStamp% GEQ 0600.00 if %timeStamp% LSS 0630.00 goto Msg06
if %timeStamp% GEQ 0630.00 if %timeStamp% LSS 0700.00 goto Msg07
if %timeStamp% GEQ 0700.00 if %timeStamp% LSS 0715.00 goto Msg08
if %timeStamp% GEQ 0715.00 if %timeStamp% LSS 0720.00 goto Msg09
if %timeStamp% GEQ 0720.00 if %timeStamp% LSS 0725.00 goto Msg10
if %timeStamp% GEQ 0725.00 if %timeStamp% LSS 0726.00 goto Msg11
if %timeStamp% GEQ 0726.00 if %timeStamp% LSS 0727.00 goto Msg12
if %timeStamp% GEQ 0727.00 if %timeStamp% LSS 0728.00 goto Msg13
if %timeStamp% GEQ 0728.00 if %timeStamp% LSS 0729.00 goto Msg14
if %timeStamp% GEQ 0729.00 if %timeStamp% LSS 0729.30 goto Msg15
if %timeStamp% GEQ 0729.30 if %timeStamp% LSS 0729.45 goto Msg16
if %timeStamp% GEQ 0729.45 if %timeStamp% LSS 0729.50 goto Msg17
if %timeStamp% GEQ 0729.50 if %timeStamp% LSS 0729.55 goto Msg18
if %timeStamp% GEQ 0729.55 if %timeStamp% LSS 0735.00 goto Msg19
:: 0405 - 0800
if %timeStamp% GEQ 0735.00 if %timeStamp% LSS 0800.00 goto Msg01
if %timeStamp% GEQ 0800.00 if %timeStamp% LSS 0830.00 goto Msg02
if %timeStamp% GEQ 0830.00 if %timeStamp% LSS 0900.00 goto Msg03
if %timeStamp% GEQ 0900.00 if %timeStamp% LSS 0930.00 goto Msg04
if %timeStamp% GEQ 0930.00 if %timeStamp% LSS 1000.00 goto Msg05
if %timeStamp% GEQ 1000.00 if %timeStamp% LSS 1030.00 goto Msg06
if %timeStamp% GEQ 1030.00 if %timeStamp% LSS 1100.00 goto Msg07
if %timeStamp% GEQ 1100.00 if %timeStamp% LSS 1115.00 goto Msg08
if %timeStamp% GEQ 1115.00 if %timeStamp% LSS 1120.00 goto Msg09
if %timeStamp% GEQ 1120.00 if %timeStamp% LSS 1125.00 goto Msg10
if %timeStamp% GEQ 1125.00 if %timeStamp% LSS 1126.00 goto Msg11
if %timeStamp% GEQ 1126.00 if %timeStamp% LSS 1127.00 goto Msg12
if %timeStamp% GEQ 1127.00 if %timeStamp% LSS 1128.00 goto Msg13
if %timeStamp% GEQ 1128.00 if %timeStamp% LSS 1129.00 goto Msg14
if %timeStamp% GEQ 1129.00 if %timeStamp% LSS 1129.30 goto Msg15
if %timeStamp% GEQ 1129.30 if %timeStamp% LSS 1129.45 goto Msg16
if %timeStamp% GEQ 1129.45 if %timeStamp% LSS 1129.50 goto Msg17
if %timeStamp% GEQ 1129.50 if %timeStamp% LSS 1129.55 goto Msg18
if %timeStamp% GEQ 1129.55 if %timeStamp% LSS 1135.00 goto Msg19
:: 0805 - 1200
if %timeStamp% GEQ 1135.00 if %timeStamp% LSS 1200.00 goto Msg01
if %timeStamp% GEQ 1200.00 if %timeStamp% LSS 1230.00 goto Msg02
if %timeStamp% GEQ 1230.00 if %timeStamp% LSS 1300.00 goto Msg03
if %timeStamp% GEQ 1300.00 if %timeStamp% LSS 1330.00 goto Msg04
if %timeStamp% GEQ 1330.00 if %timeStamp% LSS 1400.00 goto Msg05
if %timeStamp% GEQ 1400.00 if %timeStamp% LSS 1430.00 goto Msg06
if %timeStamp% GEQ 1430.00 if %timeStamp% LSS 1500.00 goto Msg07
if %timeStamp% GEQ 1500.00 if %timeStamp% LSS 1515.00 goto Msg08
if %timeStamp% GEQ 1515.00 if %timeStamp% LSS 1520.00 goto Msg09
if %timeStamp% GEQ 1520.00 if %timeStamp% LSS 1525.00 goto Msg10
if %timeStamp% GEQ 1525.00 if %timeStamp% LSS 1526.00 goto Msg11
if %timeStamp% GEQ 1526.00 if %timeStamp% LSS 1527.00 goto Msg12
if %timeStamp% GEQ 1527.00 if %timeStamp% LSS 1528.00 goto Msg13
if %timeStamp% GEQ 1528.00 if %timeStamp% LSS 1529.00 goto Msg14
if %timeStamp% GEQ 1529.00 if %timeStamp% LSS 1529.30 goto Msg15
if %timeStamp% GEQ 1529.30 if %timeStamp% LSS 1529.45 goto Msg16
if %timeStamp% GEQ 1529.45 if %timeStamp% LSS 1529.50 goto Msg17
if %timeStamp% GEQ 1529.50 if %timeStamp% LSS 1529.55 goto Msg18
if %timeStamp% GEQ 1529.55 if %timeStamp% LSS 1535.00 goto Msg19
:: 1205 - 1600
if %timeStamp% GEQ 1535.00 if %timeStamp% LSS 1600.00 goto Msg01
if %timeStamp% GEQ 1600.00 if %timeStamp% LSS 1630.00 goto Msg02
if %timeStamp% GEQ 1630.00 if %timeStamp% LSS 1700.00 goto Msg03
if %timeStamp% GEQ 1700.00 if %timeStamp% LSS 1730.00 goto Msg04
if %timeStamp% GEQ 1730.00 if %timeStamp% LSS 1800.00 goto Msg05
if %timeStamp% GEQ 1800.00 if %timeStamp% LSS 1830.00 goto Msg06
if %timeStamp% GEQ 1830.00 if %timeStamp% LSS 1900.00 goto Msg07
if %timeStamp% GEQ 1900.00 if %timeStamp% LSS 1915.00 goto Msg08
if %timeStamp% GEQ 1915.00 if %timeStamp% LSS 1920.00 goto Msg09
if %timeStamp% GEQ 1920.00 if %timeStamp% LSS 1925.00 goto Msg10
if %timeStamp% GEQ 1925.00 if %timeStamp% LSS 1926.00 goto Msg11
if %timeStamp% GEQ 1926.00 if %timeStamp% LSS 1927.00 goto Msg12
if %timeStamp% GEQ 1927.00 if %timeStamp% LSS 1928.00 goto Msg13
if %timeStamp% GEQ 1928.00 if %timeStamp% LSS 1929.00 goto Msg14
if %timeStamp% GEQ 1929.00 if %timeStamp% LSS 1929.30 goto Msg15
if %timeStamp% GEQ 1929.30 if %timeStamp% LSS 1929.45 goto Msg16
if %timeStamp% GEQ 1929.45 if %timeStamp% LSS 1929.50 goto Msg17
if %timeStamp% GEQ 1929.50 if %timeStamp% LSS 1929.55 goto Msg18
if %timeStamp% GEQ 1929.55 if %timeStamp% LSS 1935.00 goto Msg19
:: 1605 - 2000
if %timeStamp% GEQ 1935.00 if %timeStamp% LSS 2000.00 goto Msg01
if %timeStamp% GEQ 2000.00 if %timeStamp% LSS 2030.00 goto Msg02
if %timeStamp% GEQ 2030.00 if %timeStamp% LSS 2100.00 goto Msg03
if %timeStamp% GEQ 2100.00 if %timeStamp% LSS 2130.00 goto Msg04
if %timeStamp% GEQ 2130.00 if %timeStamp% LSS 2200.00 goto Msg05
if %timeStamp% GEQ 2200.00 if %timeStamp% LSS 2230.00 goto Msg06
if %timeStamp% GEQ 2230.00 if %timeStamp% LSS 2300.00 goto Msg07
if %timeStamp% GEQ 2300.00 if %timeStamp% LSS 2315.00 goto Msg08
if %timeStamp% GEQ 2315.00 if %timeStamp% LSS 2320.00 goto Msg09
if %timeStamp% GEQ 2320.00 if %timeStamp% LSS 2325.00 goto Msg10
if %timeStamp% GEQ 2325.00 if %timeStamp% LSS 2326.00 goto Msg11
if %timeStamp% GEQ 2326.00 if %timeStamp% LSS 2327.00 goto Msg12
if %timeStamp% GEQ 2327.00 if %timeStamp% LSS 2328.00 goto Msg13
if %timeStamp% GEQ 2328.00 if %timeStamp% LSS 2329.00 goto Msg14
if %timeStamp% GEQ 2329.00 if %timeStamp% LSS 2329.30 goto Msg15
if %timeStamp% GEQ 2329.30 if %timeStamp% LSS 2329.45 goto Msg16
if %timeStamp% GEQ 2329.45 if %timeStamp% LSS 2329.50 goto Msg17
if %timeStamp% GEQ 2329.50 if %timeStamp% LSS 2329.55 goto Msg18
if %timeStamp% GEQ 2329.55 if %timeStamp% LSS 2335.00 goto Msg19
:: 2005 - 0000
if %timeStamp% GEQ 2335.00 if %timeStamp% LSS 2400.00 goto Msg01
if %timeStamp% GEQ 0000.01 if %timeStamp% LSS 0030.00 goto Msg02
if %timeStamp% GEQ 0030.00 if %timeStamp% LSS 0100.00 goto Msg03
if %timeStamp% GEQ 0100.00 if %timeStamp% LSS 0130.00 goto Msg04
if %timeStamp% GEQ 0130.00 if %timeStamp% LSS 0200.00 goto Msg05
if %timeStamp% GEQ 0200.00 if %timeStamp% LSS 0230.00 goto Msg06
if %timeStamp% GEQ 0230.00 if %timeStamp% LSS 0300.00 goto Msg07
if %timeStamp% GEQ 0300.00 if %timeStamp% LSS 0315.00 goto Msg08
if %timeStamp% GEQ 0315.00 if %timeStamp% LSS 0320.00 goto Msg09
if %timeStamp% GEQ 0320.00 if %timeStamp% LSS 0325.00 goto Msg10
if %timeStamp% GEQ 0325.00 if %timeStamp% LSS 0326.00 goto Msg11
if %timeStamp% GEQ 0326.00 if %timeStamp% LSS 0327.00 goto Msg12
if %timeStamp% GEQ 0327.00 if %timeStamp% LSS 0328.00 goto Msg13
if %timeStamp% GEQ 0328.00 if %timeStamp% LSS 0329.00 goto Msg14
if %timeStamp% GEQ 0329.00 if %timeStamp% LSS 0329.30 goto Msg15
if %timeStamp% GEQ 0329.30 if %timeStamp% LSS 0329.45 goto Msg16
if %timeStamp% GEQ 0329.45 if %timeStamp% LSS 0329.50 goto Msg17
if %timeStamp% GEQ 0329.50 if %timeStamp% LSS 0329.55 goto Msg18
if %timeStamp% GEQ 0329.55 if %timeStamp% LSS 0335.00 goto Msg19
Goto Start
:://// Server Restart
:ServerRestart
start /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd #lock -cmd "say -1 Server Locked" -cmd %Kick0% -cmd %Kick1% -cmd %Kick2% -cmd %Kick3% -cmd %Kick4% -cmd %Kick5% -cmd %Kick6% -cmd %Kick7% -cmd %Kick8% -cmd %Kick9% -cmd %Kick10% -cmd %Kick11% -cmd %Kick12% -cmd %Kick13% -cmd %Kick14% -cmd %Kick15% -cmd %Kick16% -cmd %Kick17% -cmd %Kick18% -cmd %Kick19% -cmd %Kick20% -cmd %Kick21% -cmd %Kick22% -cmd %Kick23% -cmd %Kick24% -cmd %Kick25% -cmd %Kick26% -cmd %Kick27% -cmd %Kick28% -cmd %Kick29% -cmd %Kick30% -cmd %Kick31% -cmd %Kick32% -cmd %Kick33% -cmd %Kick34% -cmd %Kick35% -cmd %Kick36% -cmd %Kick37% -cmd %Kick38% -cmd %Kick39% -cmd %Kick40% -cmd %Kick41% -cmd %Kick42% -cmd %Kick43% -cmd %Kick44% -cmd %Kick45% -cmd %Kick46% -cmd %Kick47% -cmd %Kick48% -cmd %Kick49% -cmd exit
start /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd %Kick50% -cmd %Kick51% -cmd %Kick52% -cmd %Kick53% -cmd %Kick54% -cmd %Kick55% -cmd %Kick56% -cmd %Kick57% -cmd %Kick58% -cmd %Kick59% -cmd %Kick60% -cmd %Kick61% -cmd %Kick62% -cmd %Kick63% -cmd %Kick64% -cmd %Kick65% -cmd %Kick66% -cmd %Kick67% -cmd %Kick68% -cmd %Kick69% -cmd %Kick70% -cmd %Kick71% -cmd %Kick72% -cmd %Kick73% -cmd %Kick74% -cmd %Kick75% -cmd %Kick76% -cmd %Kick77% -cmd %Kick78% -cmd %Kick79% -cmd %Kick80% -cmd %Kick81% -cmd %Kick82% -cmd %Kick83% -cmd %Kick84% -cmd %Kick85% -cmd %Kick86% -cmd %Kick87% -cmd %Kick88% -cmd %Kick89% -cmd %Kick90% -cmd %Kick91% -cmd %Kick92% -cmd %Kick93% -cmd %Kick94% -cmd %Kick95% -cmd %Kick96% -cmd %Kick97% -cmd %Kick98% -cmd %Kick99% -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
timeout /t 3 /nobreak > NUL
start /Wait /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd #Shutdown -cmd exit
taskkill /im %ServerEXE% /F
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
timeout /t 3 /nobreak > NUL
start /Wait /D "%SQL_Path%bin\" /Min mysqladmin.exe -u%SQL_User% shutdown -p%SQL_Pass% -P %SQL_Port% shutdown
timeout /t 5 /nobreak > NUL
start /D "%SQL_Path%" /MIN MySQL.bat
timeout /t 5 /nobreak > NUL
%SQL_Path%bin\mysql.exe --user=%SQL_User% --password=%SQL_Pass% --host=%sIP% --port=%SQL_Port% --database=%SQL_Name% --execute="call pMain(13)"
timeout /t 5 /nobreak > NUL
start /D "%Arma_Path%" /MIN %ServerEXE% -mod=%Arma_Mods% -name=%Arma_Name% -config=%Arma_Config% -cfg=%Arma_Cfg% -profiles=%Arma_Profiles% -port=%sPort%
timeout /t 30 /nobreak > NUL
start /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd #unlock -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
timeout /t 3 /nobreak > NUL
goto Start
:Msg01
if %CurrentMessage% EQU 1 goto Start
Set CurrentMessage=1
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 Server Restart Successful. Enjoy your stay." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg02
if %CurrentMessage% EQU 2 goto Start
Set CurrentMessage=2
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 Next server restart in 3 hours and 30 minutes." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg03
if %CurrentMessage% EQU 3 goto Start
Set CurrentMessage=3
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 Next server restart in 3 hours." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg04
if %CurrentMessage% EQU 4 goto Start
Set CurrentMessage=4
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 Next server restart in 2 hours and 30 minutes." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg05
if %CurrentMessage% EQU 5 goto Start
Set CurrentMessage=5
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 Next server restart in 2 hours." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg06
if %CurrentMessage% EQU 6 goto Start
Set CurrentMessage=6
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 Next server restart in 1 hour and 30 minutes." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg07
if %CurrentMessage% EQU 7 goto Start
Set CurrentMessage=7
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 Next server restart in 1 hour." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg08
if %CurrentMessage% EQU 8 goto Start
Set CurrentMessage=8
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 Next server restart in 30 minutes." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg09
if %CurrentMessage% EQU 9 goto Start
Set CurrentMessage=9
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 Next server restart in 15 minutes." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg10
if %CurrentMessage% EQU 10 goto Start
Set CurrentMessage=10
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 Next server restart in 10 minutes." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg11
if %CurrentMessage% EQU 11 goto Start
Set CurrentMessage=11
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 WARNING: Server restart in 5 minutes." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg12
if %CurrentMessage% EQU 12 goto Start
Set CurrentMessage=12
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 WARNING: Server restart in 4 minutes." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg13
if %CurrentMessage% EQU 13 goto Start
Set CurrentMessage=13
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 WARNING: Server restart in 3 minutes." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg14
if %CurrentMessage% EQU 14 goto Start
Set CurrentMessage=14
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 WARNING: Server restart in 2 minutes." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg15
if %CurrentMessage% EQU 15 goto Start
Set CurrentMessage=15
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 WARNING: Server restart in 1 minute. LogOut Now." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg16
if %CurrentMessage% EQU 16 goto Start
Set CurrentMessage=16
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 WARNING: Server restart in 30 seconds. LogOut Now." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg17
if %CurrentMessage% EQU 17 goto Start
Set CurrentMessage=17
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 WARNING: Server restart in 15 seconds. LogOut Now." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg18
if %CurrentMessage% EQU 18 goto Start
Set CurrentMessage=18
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 WARNING: Server restart in 10 seconds. LogOut Now." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
Goto Start
:Msg19
if %CurrentMessage% EQU 19 goto Start
Set CurrentMessage=19
start "" /D "%BERCon_Path%" /Min BERCon.exe -host %sIP% -port %sPort% -pw %RConP% -cmd "say -1 WARNING: Server restart in 5 seconds. Server restart initiated. If you are reading this, admin's will not replace items lost due to server restart." -cmd exit
timeout /t 2 /nobreak > NUL
taskkill /im BERCon.exe /F
timeout /t 3 /nobreak > NUL
Goto ServerRestart
:LoadKickVars
Set Kick0="kick 0 Server Restart Initiated."
Set Kick1="kick 1 Server Restart Initiated."
Set Kick2="kick 2 Server Restart Initiated."
Set Kick3="kick 3 Server Restart Initiated."
Set Kick4="kick 4 Server Restart Initiated."
Set Kick5="kick 5 Server Restart Initiated."
Set Kick6="kick 6 Server Restart Initiated."
Set Kick7="kick 7 Server Restart Initiated."
Set Kick8="kick 8 Server Restart Initiated."
Set Kick9="kick 9 Server Restart Initiated."
Set Kick10="kick 10 Server Restart Initiated."
Set Kick11="kick 11 Server Restart Initiated."
Set Kick12="kick 12 Server Restart Initiated."
Set Kick13="kick 13 Server Restart Initiated."
Set Kick14="kick 14 Server Restart Initiated."
Set Kick15="kick 15 Server Restart Initiated."
Set Kick16="kick 16 Server Restart Initiated."
Set Kick17="kick 17 Server Restart Initiated."
Set Kick18="kick 18 Server Restart Initiated."
Set Kick19="kick 19 Server Restart Initiated."
Set Kick20="kick 20 Server Restart Initiated."
Set Kick21="kick 21 Server Restart Initiated."
Set Kick22="kick 22 Server Restart Initiated."
Set Kick23="kick 23 Server Restart Initiated."
Set Kick24="kick 24 Server Restart Initiated."
Set Kick25="kick 25 Server Restart Initiated."
Set Kick26="kick 26 Server Restart Initiated."
Set Kick27="kick 27 Server Restart Initiated."
Set Kick28="kick 28 Server Restart Initiated."
Set Kick29="kick 29 Server Restart Initiated."
Set Kick30="kick 30 Server Restart Initiated."
Set Kick31="kick 31 Server Restart Initiated."
Set Kick32="kick 32 Server Restart Initiated."
Set Kick33="kick 33 Server Restart Initiated."
Set Kick34="kick 34 Server Restart Initiated."
Set Kick35="kick 35 Server Restart Initiated."
Set Kick36="kick 36 Server Restart Initiated."
Set Kick37="kick 37 Server Restart Initiated."
Set Kick38="kick 38 Server Restart Initiated."
Set Kick39="kick 39 Server Restart Initiated."
Set Kick40="kick 40 Server Restart Initiated."
Set Kick41="kick 41 Server Restart Initiated."
Set Kick42="kick 42 Server Restart Initiated."
Set Kick43="kick 43 Server Restart Initiated."
Set Kick44="kick 44 Server Restart Initiated."
Set Kick45="kick 45 Server Restart Initiated."
Set Kick46="kick 46 Server Restart Initiated."
Set Kick47="kick 47 Server Restart Initiated."
Set Kick48="kick 48 Server Restart Initiated."
Set Kick49="kick 49 Server Restart Initiated."
Set Kick50="kick 50 Server Restart Initiated."
Set Kick51="kick 51 Server Restart Initiated."
Set Kick52="kick 52 Server Restart Initiated."
Set Kick53="kick 53 Server Restart Initiated."
Set Kick54="kick 54 Server Restart Initiated."
Set Kick55="kick 55 Server Restart Initiated."
Set Kick56="kick 56 Server Restart Initiated."
Set Kick57="kick 57 Server Restart Initiated."
Set Kick58="kick 58 Server Restart Initiated."
Set Kick59="kick 59 Server Restart Initiated."
Set Kick60="kick 60 Server Restart Initiated."
Set Kick61="kick 61 Server Restart Initiated."
Set Kick62="kick 62 Server Restart Initiated."
Set Kick63="kick 63 Server Restart Initiated."
Set Kick64="kick 64 Server Restart Initiated."
Set Kick65="kick 65 Server Restart Initiated."
Set Kick66="kick 66 Server Restart Initiated."
Set Kick67="kick 67 Server Restart Initiated."
Set Kick68="kick 68 Server Restart Initiated."
Set Kick69="kick 69 Server Restart Initiated."
Set Kick70="kick 70 Server Restart Initiated."
Set Kick71="kick 71 Server Restart Initiated."
Set Kick72="kick 72 Server Restart Initiated."
Set Kick73="kick 73 Server Restart Initiated."
Set Kick74="kick 74 Server Restart Initiated."
Set Kick75="kick 75 Server Restart Initiated."
Set Kick76="kick 76 Server Restart Initiated."
Set Kick77="kick 77 Server Restart Initiated."
Set Kick78="kick 78 Server Restart Initiated."
Set Kick79="kick 79 Server Restart Initiated."
Set Kick80="kick 80 Server Restart Initiated."
Set Kick81="kick 81 Server Restart Initiated."
Set Kick82="kick 82 Server Restart Initiated."
Set Kick83="kick 83 Server Restart Initiated."
Set Kick84="kick 84 Server Restart Initiated."
Set Kick85="kick 85 Server Restart Initiated."
Set Kick86="kick 86 Server Restart Initiated."
Set Kick87="kick 87 Server Restart Initiated."
Set Kick88="kick 88 Server Restart Initiated."
Set Kick89="kick 89 Server Restart Initiated."
Set Kick90="kick 90 Server Restart Initiated."
Set Kick91="kick 91 Server Restart Initiated."
Set Kick92="kick 92 Server Restart Initiated."
Set Kick93="kick 93 Server Restart Initiated."
Set Kick94="kick 94 Server Restart Initiated."
Set Kick95="kick 95 Server Restart Initiated."
Set Kick96="kick 96 Server Restart Initiated."
Set Kick97="kick 97 Server Restart Initiated."
Set Kick98="kick 98 Server Restart Initiated."
Set Kick99="kick 99 Server Restart Initiated."
GOTO :EOF | Ultima-weapon/UwU_A2_Servers | ServerRestarts/Auto_Restart_Taviana.bat | bat | gpl-3.0 | 21,596 |
nuget push ..\Releases\*.nupkg -Source https://www.nuget.org/api/v2/package
pause | utillity/wpf.lazycombobox | NuGet/Push.cmd | bat | lgpl-2.1 | 81 |
nuget pack ..\src\ElectronicInvoice.Produce\
for /f "delims=" %%a in ('dir /s /b *.nupkg') do set filename=%%~nxa
nuget push %filename%
del %filename%
Pause | isdaniel/ElectronicInvoice_TW | .nuget/package.bat | bat | apache-2.0 | 160 |
@echo off
: ---------------------------------------------------------------------
: WARNING WARNING WARNING WARNING WARNING WARNING
:
: Please read the help before using this batch file as there are
: some special parameters
:
: ---------------------------------------------------------------------
SET DELDIR=%1
if "%DELDIR%!"=="!" SET DELDIR=C:\Program Files\Delphi5
call MakeDelphi d5 x d5std
SET DELDIR=
goto end
:help
echo MakeD5Std.bat - Builds the JVCL for Delphi 5 Standard
echo.
echo Usage: MakeD5Std [DelphiDirectory]
echo.
echo DelphiDirectory The place where Delphi is installed.
echo Defaults to "C:\Program Files\Delphi5"
echo.
echo Any additional argument will be ignored
echo.
:end
| tavultesoft/keymanweb | windows/src/ext/jedi/jvcl/jvcl/archive/batchfiles/MakeD5Std.bat | bat | apache-2.0 | 749 |
javac *.java
jar -cvfm VncMain.jar MANIFEST.MF *.class
;rem java -jar VncMain.jar
@pause
| maqiangddb/work_MutiVNC | src/compile.bat | bat | apache-2.0 | 89 |
node %~dp0make
| yosbelms/cor | make.cmd | bat | bsd-2-clause | 15 |
@echo off
java -jar CleanJavaChecker.jar %* | ceyeep/CJC | cjc.bat | bat | bsd-3-clause | 44 |
@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
if "%OS%"=="Windows_NT" @setlocal
if "%OS%"=="WINNT" @setlocal
rem ----- use the location of this script to infer $FORREST_HOME -------
if NOT "%OS%"=="Windows_NT" set DEFAULT_FORREST_HOME=..
if "%OS%"=="Windows_NT" set DEFAULT_FORREST_HOME=%~dp0\..
if "%OS%"=="WINNT" set DEFAULT_FORREST_HOME=%~dp0\..
if "%FORREST_HOME%"=="" set FORREST_HOME=%DEFAULT_FORREST_HOME%
rem ----- set the current working dir as the PROJECT_HOME variable ----
if NOT "%OS%"=="Windows_NT" call "%FORREST_HOME%\bin\setpwdvar98.bat"
if "%OS%"=="Windows_NT" call "%FORREST_HOME%\bin\setpwdvar.bat"
if "%OS%"=="WINNT" call "%FORREST_HOME%\bin\setpwdvar.bat"
set PROJECT_HOME=%PWD%
rem ----- set the ant file to use --------------------------------------
set ANTFILE=%FORREST_HOME%\main\forrest.build.xml
rem ----- Save old ANT_HOME --------------------------------------------
set OLD_ANT_HOME=%ANT_HOME%
set ANT_HOME=%FORREST_HOME%\tools\ant
rem ----- Save and set CLASSPATH --------------------------------------------
set OLD_CLASSPATH=%CLASSPATH%
set CLASSPATH=
cd /d "%FORREST_HOME%\lib\endorsed\"
for %%i in ("*.jar") do call "%FORREST_HOME%\bin\appendcp.bat" "%FORREST_HOME%\lib\endorsed\%%i"
cd /d %PWD%
echo.
echo Apache Forrest. Run 'forrest -projecthelp' to list options
echo.
rem ----- call ant.. ---------------------------------------------------
echo.
call "%ANT_HOME%\bin\forrestant" -buildfile "%ANTFILE%" -Dbasedir="%PROJECT_HOME%" -emacs -logger org.apache.tools.ant.NoBannerLogger %1 %2 %3 %4 %5 %6 %7 %8 %9
rem ---- Restore old ANT_HOME
set ANT_HOME=%OLD_ANT_HOME%
set CLASSPATH=%OLD_CLASSPATH%
| geog-opensource/jamod | forrest/bin/forrest.bat | bat | bsd-3-clause | 2,474 |
@echo off
SETLOCAL
if NOT DEFINED JAVA_HOME goto err
set SCRIPT_DIR=%~dp0
for %%I in ("%SCRIPT_DIR%..") do set ES_HOME=%%~dpfI
TITLE Elasticsearch Plugin Manager 1.4.0
"%JAVA_HOME%\bin\java" %JAVA_OPTS% %ES_JAVA_OPTS% -Xmx64m -Xms16m -Des.path.home="%ES_HOME%" -cp "%ES_HOME%/lib/*;" "org.elasticsearch.plugins.PluginManager" %*
goto finally
:err
echo JAVA_HOME environment variable must be set!
pause
:finally
ENDLOCAL | bfeldman24/clositt | lib/elasticsearch-1.4.0/bin/plugin.bat | bat | mit | 429 |
npm update --save-dev | elmahdim/ba-ng | bin/update-ba-ng.bat | bat | mit | 21 |
cmd_fs/cifs/built-in.o := arm-linux-gnueabi-ld -EL -r -o fs/cifs/built-in.o fs/cifs/cifs.o
| b8e5n/KTG-kernel_es209ra | fs/cifs/.built-in.o.cmd | bat | gpl-2.0 | 96 |
@echo off
REM -------------------------------------------------------------------------
REM Desc: Batch file for building GNU make on Windows platforms
REM Tabs: 3
REM
REM Copyright (c) 2006 Novell, Inc. All Rights Reserved.
REM
REM This program is free software; you can redistribute it and/or
REM modify it under the terms of version 2 of the GNU General Public
REM License as published by the Free Software Foundation.
REM
REM This program is distributed in the hope that it will be useful,
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
REM GNU General Public License for more details.
REM
REM You should have received a copy of the GNU General Public License
REM along with this program; if not, contact Novell, Inc.
REM
REM To contact Novell about this file by physical or electronic mail,
REM you may find current contact information at www.novell.com
REM
REM $Id$
REM -------------------------------------------------------------------------
setlocal
if exist build-dir rd /s /q build-dir
mkdir build-dir
cd build-dir
cl /nologo /W0 /MT -I. -DWINDOWS32 -DHAVE_STRING_H -DHAVE_DIRENT_H -DHAVE_FCNTL_H -I.. advapi32.lib user32.lib ../*.c /Femake.exe
cd ..
endlocal
| jlodom/FLAIM-Database-For-OS-X | tools/external/w32/make/build.bat | bat | gpl-2.0 | 1,271 |
::
:: Usage: CheckOrInstallDeps.bat
::
:: This script is used to verify that all the dependencies required to build Marian are available.
:: The CUDA SDK and the Intel MKL must be installed beforehand by the user.
:: The rest of libraries (see README.md), if not found, will be installed by this script using
:: vcpkg.
::
::
@echo off
set ROOT=%~dp0
:: The vcpkg library manager can be used to manage your dependencies in CMake.
::
:: If you already have a working vcpkg installation, this script can use it.
:: If vcpkg is in your PATH variable, the script will use it automatically.
:: Otherwise, please set the VCPKG_ROOT variable to the directory that contains the vcpkg.exe
::
:: eg: set VCPKG_ROOT=D:\Perso\Dev\vcpkg
::----------------------------------------------------------------------------------------------
::set VCPKG_ROOT=
:: If you prefer to manage yourself the dependencies, please set the following variables
:: to the respective paths. These variable can also be already set in your environment.
::----------------------------------------------------------------------------------------------
::set BOOST_INCLUDEDIR=
::set BOOST_LIBRARYDIR=
::set OPENSSL_ROOT_DIR=
:: If all the variables are empty and vcpkg is found in a known path, the script will download and
:: install vcpkg and will use it to manage the dependencies.
:: The MKL library can be automatically found by CMake. However, if you installed it in a custom
:: directory, please set the MKLROOT to this directory path.
:: Default is c:\ProgramFiles (x86)\IntelSWTools\compilers_and_libraries\windows\mkl
::----------------------------------------------------------------------------------------------
::set MKLROOT=
if "%BOOST_INCLUDEDIR%" == "" goto :needVcPkg
if "%OPENSSL_ROOT_DIR%" == "" goto :needVcPkg
goto :checkDeps
:: -------------------------------------------------------
:: Download or update vcpkg
:needVcPkg
:: -------------------------------------------------------
:: First look if vcpkg is in a known path
if "%VCPKG_ROOT%" == "" for /f "delims=" %%p in ('where vcpkg 2^>nul') do set VCPKG_ROOT=%%~dpp
:: Otherwise install it in a subdirectory
if "%VCPKG_ROOT%" == "" set VCPKG_ROOT=%ROOT%deps\vcpkg
if not exist %VCPKG_ROOT% (
echo --- Cloning vcpkg...
git clone https://github.com/Microsoft/vcpkg.git %VCPKG_ROOT%
set BOOTSTRAP_VCPKG=1
) else (
pushd %VCPKG_ROOT%
echo --- Updating vcpkg...
for /f "delims=" %%p in ('git pull') do (
if not "%%p" == "Already up to date." (
set BOOTSTRAP_VCPKG=1
)
)
popd
)
if "%BOOTSTRAP_VCPKG%"=="1" (
pushd %VCPKG_ROOT%
call bootstrap-vcpkg.bat
popd
)
set VCPKG_DEFAULT_TRIPLET=x64-windows-static
set VCPKG_INSTALL=%VCPKG_ROOT%\installed\%VCPKG_DEFAULT_TRIPLET%
set VCPKG=%VCPKG_ROOT%\vcpkg
:: -------------------------------------------------------
:: Check dependencies and configure CMake
:checkDeps
:: -------------------------------------------------------
echo.
echo --- Checking dependencies...
set CMAKE_OPT=
set FOUND_CUDA=
set FOUND_MKL=
set FOUND_BOOST=
:: -------------------------
:: The CUDA_PATH env variable should normally be set by the CUDA SDK installer
::
echo.
echo ... CUDA
if "%CUDA_PATH%"=="" (
echo The CUDA_PATH environment variable is not defined: this will compile only the CPU version.
set "FOUND_CUDA=false"
) else (
echo Found Cuda SDK in "%CUDA_PATH%"
)
:: -------------------------
:: The MKL setup does not set any environment variable to the installation path.
:: The script look into the standard default installation directory.
:: If you installed MKL in a custom directory, please set the variable MKLROOT at the top of this file.
::
echo.
echo ... Intel MKL
if "%MKLROOT%" == "" (
set "MKLROOT=C:\Program Files (x86)\IntelSWTools\compilers_and_libraries\windows\mkl"
)
if not exist "%MKLROOT%" (
echo MKLROOT is set to a non existing path:
echo "%MKLROOT%"
echo Please make sure the Intel MKL libraries are installed and set MKLROOT to the installation path.
set "FOUND_MKL=false"
) else if not exist "%MKLROOT%\include\mkl_version.h" (
echo MKL header files were not found in this folder:
echo "%MKLROOT%\include"
echo Please make sure Intel MKL is properly installed.
set "FOUND_MKL=false"
) else if not exist "%MKLROOT%\lib\intel64\mkl_core.lib" (
echo MKL library files were not found in this folder:
echo "%MKLROOT%\lib\intel64"
echo Please make sure Intel MKL is properly installed.
set "FOUND_MKL=false"
) else (
echo Found Intel MKL library in "%MKLROOT%"
)
if "%FOUND_MKL%" == "false" if "%FOUND_CUDA%" == "false" (
echo.
echo Error: neither CUDA SDK nor Intel MKL were found, but at least one of them must be installed.
)
:: -------------------------
:: BOOST_INCLUDEDIR and BOOST_LIBRARYDIR can be both set to an existing Boost installation.
:: If not, we use vcpkg to install the required Boost packages
::
echo.
echo ... Boost (1.58+)
if "%BOOST_INCLUDEDIR%" == "" (
"%VCPKG%" install boost-system boost-asio
set BOOST_INCLUDEDIR=%VCPKG_INSTALL%\include
set BOOST_LIBRARYDIR=%VCPKG_INSTALL%\lib
)
if not exist "%BOOST_INCLUDEDIR%" (
echo BOOST_INCLUDEDIR is set to a non existing path:
echo "%BOOST_INCLUDEDIR%"
echo Please set BOOST_INCLUDEDIR and BOOST_LIBRARYDIR to the installation path of the Boost library.
set "FOUND_BOOST=false"
) else if not exist "%BOOST_INCLUDEDIR%\boost\version.hpp" (
echo Boost header files were not found in this folder:
echo "%BOOST_INCLUDEDIR%\boost"
echo Please make sure Boost is correctly installed.
set "FOUND_BOOST=false"
) else if not exist "%BOOST_LIBRARYDIR%" (
echo BOOST_LIBRARYDIR is set to a non existing path:
echo "%BOOST_LIBRARYDIR%"
echo Please set BOOST_INCLUDEDIR and BOOST_LIBRARYDIR to the installation path of the Boost library.
set "FOUND_BOOST=false"
) else if not exist "%BOOST_LIBRARYDIR%\boost_*.lib" (
echo Boost library files were not found in this folder:
echo "%BOOST_LIBRARYDIR%"
echo Please make sure Boost is correctly installed.
set "FOUND_BOOST=false"
) else (
echo Found Boost headers in "%BOOST_INCLUDEDIR%" and libs in "%BOOST_LIBRARYDIR%"
)
if "%FOUND_BOOST%" == "false" (
echo.
echo Warning: Boost was not found. marian-server will not be compiled.
)
:: -------------------------
:: OPENSSL_ROOT_DIR can be set to an existing OpenSSL installation.
:: If not, we use vcpkg to install the library
::
echo.
echo ... OpenSSL
if "%OPENSSL_ROOT_DIR%"=="" (
%VCPKG% install openssl
set OPENSSL_ROOT_DIR=%VCPKG_INSTALL%
)
set CMAKE_PREFIX_PATH=%VCPKG_INSTALL%
echo.
echo.
echo --------------------------------------------------
echo BOOST_INCLUDEDIR ^| %BOOST_INCLUDEDIR%
echo BOOST_LIBRARYDIR ^| %BOOST_LIBRARYDIR%
echo CMAKE_PREFIX_PATH ^| %CMAKE_PREFIX_PATH%
echo CUDA_PATH ^| %CUDA_PATH%
echo MKLROOT ^| %MKLROOT%
echo OPENSSL_ROOT_DIR ^| %OPENSSL_ROOT_DIR%
echo VCPKG_ROOT ^| %VCPKG_ROOT%
echo --------------------------------------------------
echo.
echo.
exit /b 0
| marian-nmt/marian-train | vs/CheckOrInstallDeps.bat | bat | mit | 7,420 |
set ANT_HOME=../apache-ant-1.7.1
set PATH=%PATH%;%ANT_HOME%\bin
ant build-kettle-monitor | WilliamRen/bbossgroups-3.5 | antbuildall/build-etl-monitor.bat | bat | apache-2.0 | 88 |
@ECHO OFF
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
)
if "%1" == "" goto help
if "%1" == "help" (
:help
echo.Please use `make ^<target^>` where ^<target^> is one of
echo. html to make standalone HTML files
echo. dirhtml to make HTML files named index.html in directories
echo. singlehtml to make a single large HTML file
echo. pickle to make pickle files
echo. json to make JSON files
echo. htmlhelp to make HTML files and a HTML help project
echo. qthelp to make HTML files and a qthelp project
echo. devhelp to make HTML files and a Devhelp project
echo. epub to make an epub
echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter
echo. text to make text files
echo. man to make manual pages
echo. texinfo to make Texinfo files
echo. gettext to make PO message catalogs
echo. changes to make an overview over all changed/added/deprecated items
echo. xml to make Docutils-native XML files
echo. pseudoxml to make pseudoxml-XML files for display purposes
echo. linkcheck to check all external links for integrity
echo. doctest to run all doctests embedded in the documentation if enabled
goto end
)
if "%1" == "clean" (
for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
del /q /s %BUILDDIR%\*
goto end
)
%SPHINXBUILD% 2> nul
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
echo.installed, then set the SPHINXBUILD environment variable to point
echo.to the full path of the 'sphinx-build' executable. Alternatively you
echo.may add the Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
if "%1" == "html" (
%SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/html.
goto end
)
if "%1" == "dirhtml" (
%SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
goto end
)
if "%1" == "singlehtml" (
%SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml.
goto end
)
if "%1" == "pickle" (
%SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the pickle files.
goto end
)
if "%1" == "json" (
%SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can process the JSON files.
goto end
)
if "%1" == "htmlhelp" (
%SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run HTML Help Workshop with the ^
.hhp project file in %BUILDDIR%/htmlhelp.
goto end
)
if "%1" == "qthelp" (
%SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Pylibsass.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Pylibsass.ghc
goto end
)
if "%1" == "devhelp" (
%SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp
if errorlevel 1 exit /b 1
echo.
echo.Build finished.
goto end
)
if "%1" == "epub" (
%SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The epub file is in %BUILDDIR%/epub.
goto end
)
if "%1" == "latex" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
if errorlevel 1 exit /b 1
echo.
echo.Build finished; the LaTeX files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdf" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "latexpdfja" (
%SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex
cd %BUILDDIR%/latex
make all-pdf-ja
cd %BUILDDIR%/..
echo.
echo.Build finished; the PDF files are in %BUILDDIR%/latex.
goto end
)
if "%1" == "text" (
%SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The text files are in %BUILDDIR%/text.
goto end
)
if "%1" == "man" (
%SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The manual pages are in %BUILDDIR%/man.
goto end
)
if "%1" == "texinfo" (
%SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo.
goto end
)
if "%1" == "gettext" (
%SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The message catalogs are in %BUILDDIR%/locale.
goto end
)
if "%1" == "changes" (
%SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
if errorlevel 1 exit /b 1
echo.
echo.The overview file is in %BUILDDIR%/changes.
goto end
)
if "%1" == "linkcheck" (
%SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck
if errorlevel 1 exit /b 1
echo.
echo.Link check complete; look for any errors in the above output ^
or in %BUILDDIR%/linkcheck/output.txt.
goto end
)
if "%1" == "doctest" (
%SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest
if errorlevel 1 exit /b 1
echo.
echo.Testing of doctests in the sources finished, look at the ^
results in %BUILDDIR%/doctest/output.txt.
goto end
)
if "%1" == "xml" (
%SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The XML files are in %BUILDDIR%/xml.
goto end
)
if "%1" == "pseudoxml" (
%SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml
if errorlevel 1 exit /b 1
echo.
echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml.
goto end
)
:end
| rsenk330/pylibsass | docs/make.bat | bat | mit | 6,707 |
@echo off
call %~dp0/daemon.bat all status
echo %cmdcmdline% | find /i "%~0" >nul
if not errorlevel 1 pause
| andyneff/voxel-globe | statusAll.bat | bat | mit | 110 |
@echo off
cls
echo.
echo. Installing ArcGIS Pro without prompts, according to ENV Yukon standards
echo.
setlocal
set root=%~dp0
pushd %~dp0
:checkPrivileges
:: courtesy of https://ss64.com/nt/syntax-elevate.html
echo. & echo Testing: for admin privileges...
fsutil dirty query %SYSTEMDRIVE% >nul
if %errorLevel% NEQ 0 (
echo. ** Please rerun this script from an elevated command prompt. Exiting...
timeout /t 7
exit /B 1
)
echo Success: this script is running elevated.
:checkDotNet
:: Check for .NET courtesy of @curtvprice
echo. & echo Testing: for correct Dot Net framework
REM set key=HKLM\SOFTWARE\Microsoft\.NETFrameworkDOESNOTEXIST
set key=HKLM\SOFTWARE\Microsoft\.NETFramework
:: 4.6.1 x64
%WINDIR%\system32\reg.exe query %key% /f ".NETFramework,Version=v4.6.1" /k /s >NUL
if %errorLevel% NEQ 0 (
echo. ** Microsoft .NET Framework 4.6.1 ^(x64^) must be installed first
echo. Run "%root%\4-Config\install-DotNet.vbs"
echo. and then try again.
timeout /t 7
exit /B 1
)
echo Success: Microsoft .NET Framework 4.6.1 ^(x64^) verified
call :install_pro
call :install_patches
timeout /t 15
popd
goto :eof
:: --------------- Routines ------------------
:install_pro
REM https://pro.arcgis.com/en/pro-app/get-started/arcgis-pro-installation-administration.htm
echo. & echo -- Installing ArcGIS Pro...
pushd %~dp0\1-Pro
%SystemRoot%\System32\msiexec.exe /I ^
%cd%\ArcGISPro.msi ^
ESRI_LICENSE_HOST=LICSERVER ^
SOFTWARE_CLASS=Viewer ^
AUTHORIZATION_TYPE=CONCURRENT_USE ^
LOCK_AUTH_SETTINGS=FALSE ^
INSTALLDIR=C:\ArcGIS ^
ALLUSERS=1 ^
CHECKFORUPDATESATSTARTUP=0 ^
ENABLEEUEI=0 ^
/L* "%TEMP%\%~nx0.log" ^
/qb
popd
echo Logfile: "%TEMP%\%~nx0.log"
goto :eof
:install_patches
:: patch updates (.msp files, if any) should be placed in folder with ArcGIS Pro msi
pushd "%root%\1-Pro"
for %%p in (*.msp) do (
echo -- Installing patch %%p...
%SystemRoot%\System32\msiexec.exe /p ^
%%p ^
REINSTALLMODE=omus ^
/L* "%TEMP%\%~nx0_patches.log" ^
/qb
echo Logfile: "%TEMP%\%~nx0_patches.log"
)
popd
goto :eof
:: ----- NOTES -----
:: check* routines must appear in top block and can't be called, else
:: the `exit /b` command will only exit the block and not the parent
:: script.
| maphew/arcplus | SysAdmin/deployment/install-Pro.bat | bat | mit | 2,375 |
copy /b src\*.js + src\march\*.js + src\plot\*.js + src\render\*.js build\mathcell.js
| paulmasson/mathcell | build.bat | bat | mit | 86 |
echo off
goto :check_parameter
:check_parameter
if [%1]==[] goto :check_file
goto :set_api_key_from_parameter
:check_file
if exist apikey.txt goto :set_api_key_from_file
echo "The first parameter is the api key. If omitted, a file must exist named 'apikey.txt' that contains the api key."
goto :eof
:set_api_key_from_file
set /p ApiKey=<apikey.txt
goto :get_latest_package_and_push_it
:set_api_key_from_parameter
set ApiKey=%1
goto :get_latest_package_and_push_it
:get_latest_package_and_push_it
for /f %%i in ('dir /b/a-d/od/t:c Rock.Core.XSerializer.?.?.?*.nupkg') do set LAST=%%i
nuget push %LAST% %ApiKey% -source https://www.nuget.org | RockFramework/Rock.Core | build/publishRockCoreXSerializer.bat | bat | mit | 644 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.