text
stringlengths
0
834k
if ""%1"" == """" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The Sphinx module was not found. Make sure you have Sphinx installed,
echo.then set the SPHINXBUILD environment variable to point to the full
echo.path of the 'sphinx-build' executable. Alternatively you may add the
echo.Sphinx directory to PATH.
echo.
echo.If you don't have Sphinx installed, grab it from
echo.http://sphinx-doc.org/
exit /b 1
)
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
goto end
:help
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
:end
popd
",21.6216216216,75,0.74625
219315,d2d5ef834be3092984f0b729b9d60e4a9926740c,141,bat,Batchfile,run.bat,SimassoftCodeChallenge/NumerosSortudosEFelizes,2cbc139cd08ba711e91e6fbd5718210337bdd197,['MIT'],,,,run.bat,SimassoftCodeChallenge/NumerosSortudosEFelizes,2cbc139cd08ba711e91e6fbd5718210337bdd197,['MIT'],,,,run.bat,SimassoftCodeChallenge/NumerosSortudosEFelizes,2cbc139cd08ba711e91e6fbd5718210337bdd197,['MIT'],,,,"@ECHO OFF
dotnet clean
dotnet restore
dotnet build
dotnet run --no-build --no-restore --project 00-Programa\Simasoft.Challenges.SortFeliz.UI\",28.2,90,0.8014184397
219316,d2d5f1aaf3e250ed22cff57197f2ea11125a6c88,5401,bat,Batchfile,deps/boost_1_78_0/tools/build/src/engine/build.bat,joelact/drachtio-server,a1a0f72c7313957361afd13d35d9cea5d6f429b2,['MIT'],1.0,2019-10-27T21:15:52.000Z,2019-10-27T21:15:52.000Z,deps/boost_1_78_0/tools/build/src/engine/build.bat,joelact/drachtio-server,a1a0f72c7313957361afd13d35d9cea5d6f429b2,['MIT'],,,,deps/boost_1_78_0/tools/build/src/engine/build.bat,joelact/drachtio-server,a1a0f72c7313957361afd13d35d9cea5d6f429b2,['MIT'],1.0,2021-08-24T08:49:34.000Z,2021-08-24T08:49:34.000Z,"@ECHO OFF
REM ~ Copyright 2002-2007 Rene Rivera.
REM ~ Distributed under the Boost Software License, Version 1.0.
REM ~ (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
setlocal
goto Start
:Set_Error
color 00
goto :eof
:Clear_Error
ver >nul
goto :eof
:Error_Print
REM Output an error message and set the errorlevel to indicate failure.
setlocal
ECHO ###
ECHO ### %1
ECHO ###
ECHO ### You can specify the toolset as the argument, i.e.:
ECHO ### .\build.bat msvc
ECHO ###
ECHO ### Toolsets supported by this script are: borland, como, gcc,
ECHO ### gcc-nocygwin, intel-win32, mingw,
ECHO ### vc12, vc14, vc141, vc142, vc143
ECHO ###
ECHO ### If you have Visual Studio 2017 installed you will need to either update
ECHO ### the Visual Studio 2017 installer or run from VS 2017 Command Prompt
ECHO ### as we where unable to detect your toolset installation.
ECHO ###
call :Set_Error
endlocal
goto :eof
:Test_Option
REM Tests whether the given string is in the form of an option: ""--*""
call :Clear_Error
setlocal
set test=%1
if not defined test (
call :Set_Error
goto Test_Option_End
)
set test=###%test%###
set test=%test:""###=%
set test=%test:###""=%
set test=%test:###=%
if not ""-"" == ""%test:~1,1%"" call :Set_Error
:Test_Option_End
endlocal
goto :eof
:Test_Empty
REM Tests whether the given string is not empty
call :Clear_Error
setlocal
set test=%1
if not defined test (
call :Clear_Error
goto Test_Empty_End
)
set test=###%test%###