text
stringlengths
0
834k
ECHO ""venv%python_3_version_only%""
py -3 -m venv ""venv%python_3_version_only%""",36.4285714286,184,0.768627451
219783,f3195f45528abc4d46823366ccacd673499d347b,1184,bat,Batchfile,util/cron/test-cygwin64.bat,OmarElawady/chapel,2f36c637a4109df48796185a9788a8d11afc9635,['ECL-2.0' 'Apache-2.0'],7.0,2015-03-02T01:42:08.000Z,2021-05-11T22:04:04.000Z,util/cron/test-cygwin64.bat,OmarElawady/chapel,2f36c637a4109df48796185a9788a8d11afc9635,['ECL-2.0' 'Apache-2.0'],2.0,2019-09-19T17:35:56.000Z,2019-09-19T20:54:12.000Z,util/cron/test-cygwin64.bat,OmarElawady/chapel,2f36c637a4109df48796185a9788a8d11afc9635,['ECL-2.0' 'Apache-2.0'],6.0,2015-03-01T13:02:20.000Z,2021-02-27T01:55:40.000Z,"@ECHO OFF
REM Test default configuration against full suite on windows.
REM WORKSPACE is always set inside our testing environment. If this is run
REM outside that environment, the caller is responsible for setting it.
IF ""%WORKSPACE%""=="""" GOTO ErrExit
REM NOTE: This is pretty messy, but it is the only way I could figure out how to
REM get the correct environment setup and then invoke
REM nightly. (thomasvandoren, 2014-07-14)
c:\cygwin64\bin\bash -exc ""export PATH='/usr/local/bin:/usr/bin:/cygdrive/c/Windows/system32:/cygdrive/c/Windows:/cygdrive/c/Windows/System32/Wbem:/cygdrive/c/Program Files/SysinternalsSuite' ; export CHPL_TEST_LIMIT_RUNNING_EXECUTABLES=yes ; export CHPL_HOME=$PWD ; num_procs=`python -c 'import multiprocessing; print (multiprocessing.cpu_count()+1)/2'` ; for i in $(seq 1 $num_procs); do echo localhost; done > $CHPL_HOME/test/NODES/$num_procs-localhost ; source $CHPL_HOME/util/cron/common.bash && export CHPL_NIGHTLY_TEST_CONFIG_NAME=""cygwin64"" && $CHPL_HOME/util/cron/nightly -cron -parnodefile $CHPL_HOME/test/NODES/$num_procs-localhost""
GOTO End
:ErrExit
ECHO ""ERROR: WORKSPACE must be set in the environment""
EXIT 1
GOTO End
:End
",59.2,643,0.7753378378
219784,f3198924e0d12d214aa91663bc164c35a4b01e4a,9281,cmd,Batchfile,bin/storm.cmd,nicoletnt/test2,9b39fa958704139176bc43c0ad07ddd23c323196,['Apache-2.0'],1.0,2018-10-07T09:59:58.000Z,2018-10-07T09:59:58.000Z,bin/storm.cmd,nicoletnt/test2,9b39fa958704139176bc43c0ad07ddd23c323196,['Apache-2.0'],8.0,2020-06-18T17:32:13.000Z,2021-12-14T21:44:48.000Z,bin/storm.cmd,nicoletnt/test2,9b39fa958704139176bc43c0ad07ddd23c323196,['Apache-2.0'],,,,"@echo off
@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 The storm command script
@rem
@rem Environment Variables
@rem
@rem JAVA_HOME The java implementation to use. Overrides JAVA_HOME.
@rem
@rem STORM_CLASSPATH Extra Java CLASSPATH entries.
@rem
@rem STORM_HEAPSIZE The maximum amount of heap to use, in MB.
@rem Default is 1000.
@rem
@rem STORM_OPTS Extra Java runtime options.
@rem
@rem STORM_CONF_DIR Alternate conf dir. Default is ${STORM_HOME}/conf.
@rem
@rem STORM_ROOT_LOGGER The root appender. Default is INFO,console
@rem
:main
setlocal enabledelayedexpansion
set storm-command=%1
if not ""%storm-command%"" == ""jar"" (
set set_storm_options=true
)
@echo This script is deprecated. Please use the Powershell storm.ps1 script instead
call %~dp0storm-config.cmd
if not defined storm-command (
goto print_usage
)
call :make_command_arguments %*
set shellcommands=classpath help
for %%i in ( %shellcommands% ) do (
if %storm-command% == %%i set shellcommand=true
)
if defined shellcommand (
call :%storm-command% %*
goto :eof
)
set corecommands=activate deactivate dev-zookeeper drpc kill list nimbus logviewer rebalance remoteconfvalue repl shell supervisor ui version
for %%i in ( %corecommands% ) do (
if %storm-command% == %%i set corecommand=true
)
if defined corecommand (
call :%storm-command% %storm-command-arguments%
) else (
set CLASS=%storm-command%
)
if %storm-command% == jar (
set config-options=
goto start