text
stringlengths
0
834k
cd ..\..\..
@ endlocal
pause",25.5833333333,92,0.6525515744
364,d0363089cf031884adea7346f389af061001558a,53,bat,Batchfile,compile.bat,thaoj0/MVCExample,274628dbd862512df943ef5fdb4776746b301d3c,['MIT'],,,,compile.bat,thaoj0/MVCExample,274628dbd862512df943ef5fdb4776746b301d3c,['MIT'],,,,compile.bat,thaoj0/MVCExample,274628dbd862512df943ef5fdb4776746b301d3c,['MIT'],,,,"javac -d . Main\Clicker.java
javac -d . Engine\*.java",26.5,28,0.6981132075
365,d03633b8ebf0dff02fc74774ddfcbe1dea001293,8045,bat,Batchfile,components/governance/org.wso2.carbon.governance.api/src/test/resources/carbon-home/bin/wso2server.bat,jranabahu/carbon-governance,96dc772013cdd4e85bc5d8976c1c396d44653432,['Apache-2.0'],8.0,2015-04-01T07:28:02.000Z,2022-02-17T14:07:07.000Z,components/governance/org.wso2.carbon.governance.api/src/test/resources/carbon-home/bin/wso2server.bat,jranabahu/carbon-governance,96dc772013cdd4e85bc5d8976c1c396d44653432,['Apache-2.0'],53.0,2015-01-06T09:56:21.000Z,2022-01-27T16:16:37.000Z,components/governance/org.wso2.carbon.governance.api/src/test/resources/carbon-home/bin/wso2server.bat,jranabahu/carbon-governance,96dc772013cdd4e85bc5d8976c1c396d44653432,['Apache-2.0'],127.0,2015-01-16T11:52:06.000Z,2022-03-23T06:47:05.000Z,"@echo off
REM ---------------------------------------------------------------------------
REM Copyright 2015 WSO2, Inc. http://www.wso2.org
REM
REM Licensed under the Apache License, Version 2.0 (the ""License"");
REM you may not use this file except in compliance with the License.
REM 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 ---------------------------------------------------------------------------
REM Copyright 2005-2009 WSO2, Inc. http://www.wso2.org
REM
REM Licensed under the Apache License, Version 2.0 (the ""License"");
REM you may not use this file except in compliance with the License.
REM 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 Main Script for WSO2 Carbon
rem
rem Environment Variable Prequisites
rem
rem CARBON_HOME Home of CARBON installation. If not set I will try
rem to figure it out.
rem
rem JAVA_HOME Must point at your Java Development Kit installation.
rem
rem JAVA_OPTS (Optional) Java runtime options used when the commands
rem is executed.
rem ---------------------------------------------------------------------------
rem ----- if JAVA_HOME is not set we're not happy ------------------------------
:checkJava
if ""%JAVA_HOME%"" == """" goto noJavaHome
if not exist ""%JAVA_HOME%\bin\java.exe"" goto noJavaHome
goto checkServer
:noJavaHome
echo ""You must set the JAVA_HOME variable before running CARBON.""
goto end
rem ----- Only set CARBON_HOME if not already set ----------------------------
:checkServer
rem %~sdp0 is expanded pathname of the current script under NT with spaces in the path removed
if ""%CARBON_HOME%""=="""" set CARBON_HOME=%~sdp0..
SET curDrive=%cd:~0,1%
SET wsasDrive=%CARBON_HOME:~0,1%
if not ""%curDrive%"" == ""%wsasDrive%"" %wsasDrive%:
rem find CARBON_HOME if it does not exist due to either an invalid value passed
rem by the user or the %0 problem on Windows 9x
if not exist ""%CARBON_HOME%\bin\version.txt"" goto noServerHome
set AXIS2_HOME=%CARBON_HOME%
goto updateClasspath
:noServerHome
echo CARBON_HOME is set incorrectly or CARBON could not be located. Please set CARBON_HOME.
goto end
rem ----- update classpath -----------------------------------------------------
:updateClasspath
setlocal EnableDelayedExpansion
cd %CARBON_HOME%
set CARBON_CLASSPATH=
FOR %%C in (""%CARBON_HOME%\bin\*.jar"") DO set CARBON_CLASSPATH=!CARBON_CLASSPATH!;"".\bin\%%~nC%%~xC""
set CARBON_CLASSPATH=""%JAVA_HOME%\lib\tools.jar"";%CARBON_CLASSPATH%;
FOR %%D in (""%CARBON_HOME%\lib\commons-lang*.jar"") DO set CARBON_CLASSPATH=!CARBON_CLASSPATH!;"".\lib\%%~nD%%~xD""
rem ----- Process the input command -------------------------------------------
rem Slurp the command line arguments. This loop allows for an unlimited number
rem of arguments (up to the command line limit, anyway).
:setupArgs