text
stringlengths
0
834k
if errorlevel 1 exit /b 1
echo.
echo.Testing of coverage in the sources finished, look at the ^
results in %BUILDDIR%/coverage/python.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
",26.4507575758,79,0.7061434913
219607,f3014105b5e2ad24c93b8c03a2476144aed168be,176,cmd,Batchfile,node_modules/.bin/parcel.cmd,ginaphil/map-scroll,6a75f1a030db252d65258f9733743ea6a02e9423,['Apache-2.0'],,,,node_modules/.bin/parcel.cmd,ginaphil/map-scroll,6a75f1a030db252d65258f9733743ea6a02e9423,['Apache-2.0'],,,,node_modules/.bin/parcel.cmd,ginaphil/map-scroll,6a75f1a030db252d65258f9733743ea6a02e9423,['Apache-2.0'],,,,"@IF EXIST ""%~dp0\node.exe"" (
""%~dp0\node.exe"" ""%~dp0\..\parcel\lib\bin.js"" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node ""%~dp0\..\parcel\lib\bin.js"" %*
)",25.1428571429,51,0.5454545455
219608,f30143b14e64d887ec7de39c5780f785409972b5,3383,bat,Batchfile,vagrant/windows/install_for_build.bat,theGreenJedi/grr,d9e11e304dc299d49c76b7fdf6fdbfcd4b8eec39,['Apache-2.0'],,,,vagrant/windows/install_for_build.bat,theGreenJedi/grr,d9e11e304dc299d49c76b7fdf6fdbfcd4b8eec39,['Apache-2.0'],,,,vagrant/windows/install_for_build.bat,theGreenJedi/grr,d9e11e304dc299d49c76b7fdf6fdbfcd4b8eec39,['Apache-2.0'],,,,"echo Installing GRR dependencies
mkdir C:\grr_deps || echo ""Failed to create C:\grr_deps"" && exit /b 1
cd C:\grr_deps
echo Installing 64bit python and pip
powershell -NoProfile -ExecutionPolicy unrestricted -Command ""(new-object System.Net.WebClient).DownloadFile('https://www.python.org/ftp/python/2.7.11/python-2.7.11.amd64.msi', 'C:\grr_deps\python-2.7.11.amd64.msi')"" || echo ""64bit python download failed"" && exit /b 1
:: These Python paths were chosen to match appveyor since python will silently
:: refuse to install if it is already installed elsewhere:
:: http://www.appveyor.com/docs/installed-software#python
::
:: There's some weirdness with server versions of windows and installing python
:: with pip. Happens on both azure and GCP, the workaround is to install twice.
:: http://stackoverflow.com/questions/28404878/fail-to-install-python-2-7-9-on-a-windows-google-compute-engine-instance
start /wait msiexec.exe /i ""C:\grr_deps\python-2.7.11.amd64.msi"" /passive ADDLOCAL=""all"" REMOVE=""pip_feature"" TARGETDIR=""C:\Python27-x64"" ALLUSERS=1 || echo ""python no pip failed"" && exit /b 1
start /wait msiexec.exe /i ""C:\grr_deps\python-2.7.11.amd64.msi"" /passive ADDLOCAL=""all"" TARGETDIR=""C:\Python27-x64"" ALLUSERS=1 || echo ""python with pip failed"" && exit /b 1
C:\Python27-x64\python.exe --version || echo ""64bit python missing"" && exit /b 1
C:\Python27-x64\Scripts\pip.exe install --upgrade pip
C:\Python27-x64\Scripts\pip.exe install --upgrade virtualenv
C:\Python27-x64\Scripts\virtualenv.exe --version || echo ""64bit virtualenv install failed"" && exit /b 1
echo Installing 32bit python and pip
powershell -NoProfile -ExecutionPolicy unrestricted -Command ""(new-object System.Net.WebClient).DownloadFile('https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi', 'C:\grr_deps\python-2.7.11.msi')""
start /wait msiexec.exe /i ""C:\grr_deps\python-2.7.11.msi"" /passive ADDLOCAL=""all"" REMOVE=""pip_feature"" TARGETDIR=""C:\Python27"" ALLUSERS=1
start /wait msiexec.exe /i ""C:\grr_deps\python-2.7.11.msi"" /passive ADDLOCAL=""all"" TARGETDIR=""C:\Python27"" ALLUSERS=1
C:\Python27\python.exe --version || echo ""32bit python install failed"" && exit /b 1
C:\Python27\Scripts\pip.exe install --upgrade pip
C:\Python27\Scripts\pip.exe install --upgrade virtualenv
C:\Python27\Scripts\virtualenv.exe --version || echo ""32bit virtualenv install failed"" && exit /b 1
:: Get the Microsoft Visual C++ Compiler for Python 2.7
:: http://aka.ms/vcpython27
echo Installing Microsoft Visual C++ Compiler for Python 2.7
powershell -NoProfile -ExecutionPolicy unrestricted -Command ""(new-object System.Net.WebClient).DownloadFile('https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi', 'C:\grr_deps\VCForPython27.msi')""
start /wait msiexec.exe /i C:\grr_deps\VCForPython27.msi /passive
:: Install protobuf compiler - needed for building sdist
echo Installing protobuf compiler
powershell -NoProfile -ExecutionPolicy unrestricted -Command ""(new-object System.Net.WebClient).DownloadFile('https://github.com/google/protobuf/releases/download/v2.6.1/protoc-2.6.1-win32.zip', 'C:\grr_deps\protoc-2.6.1-win32.zip')""
C:\Python27-x64\python.exe -m ""zipfile"" -e C:\grr_deps\protoc-2.6.1-win32.zip C:\grr_deps\protoc
C:\grr_deps\protoc\protoc.exe --version || echo ""proto compiler install failed"" && exit /b 1
echo GRR dependency installation complete
",75.1777777778,268,0.7611587349
219609,f3015d63a176eb37ab3ec60ef3a9b733cd5f248f,22,bat,Batchfile,deploy.bat,TheoLvs/westworld,7fb435f3a028ff3d3156bf2a023b44ee06aa9f8b,['MIT'],1.0,2020-06-08T14:35:32.000Z,2020-06-08T14:35:32.000Z,utils_deploy_docs.bat,collectif-codata/pyepidemics,36ca85a58e1c991b8ada419f8b07eb9fcddedf59,['MIT'],3.0,2021-09-06T23:12:23.000Z,2021-09-17T01:04:34.000Z,deploy.bat,TheoLvs/westworld,7fb435f3a028ff3d3156bf2a023b44ee06aa9f8b,['MIT'],2.0,2021-02-08T14:34:25.000Z,2021-11-09T20:42:25.000Z,"mkdocs gh-deploy
pause",11.0,16,0.8636363636
219610,f301606933a954ceeaaa6efbd0264c16be2c6623,1035,cmd,Batchfile,bin/spark-submit.cmd,maomanqi/spark,2eaf4f3fe3595ae341a3a5ce886b859992dea5b2,"['BSD-3-Clause-Open-MPI' 'PSF-2.0' 'Apache-2.0' 'BSD-2-Clause' 'MIT'
'MIT-0' 'BSD-3-Clause-No-Nuclear-License-2014' 'BSD-3-Clause-Clear'
'PostgreSQL' 'BSD-3-Clause']",675.0,2016-12-21T00:15:05.000Z,2022-03-31T07:15:59.000Z,bin/spark-submit.cmd,maomanqi/spark,2eaf4f3fe3595ae341a3a5ce886b859992dea5b2,"['BSD-3-Clause-Open-MPI' 'PSF-2.0' 'Apache-2.0' 'BSD-2-Clause' 'MIT'
'MIT-0' 'BSD-3-Clause-No-Nuclear-License-2014' 'BSD-3-Clause-Clear'
'PostgreSQL' 'BSD-3-Clause']",607.0,2016-12-12T21:56:43.000Z,2019-11-14T22:21:06.000Z,bin/spark-submit.cmd,maomanqi/spark,2eaf4f3fe3595ae341a3a5ce886b859992dea5b2,"['BSD-3-Clause-Open-MPI' 'PSF-2.0' 'Apache-2.0' 'BSD-2-Clause' 'MIT'
'MIT-0' 'BSD-3-Clause-No-Nuclear-License-2014' 'BSD-3-Clause-Clear'
'PostgreSQL' 'BSD-3-Clause']",168.0,2017-01-12T00:47:04.000Z,2021-12-02T08:08:10.000Z,"@echo off
rem
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.