text
stringlengths
0
834k
rem ----- commandDebug ---------------------------------------------------------
:commandDebug
shift
set DEBUG_PORT=%1
if ""%DEBUG_PORT%""=="""" goto noDebugPort
if not ""%JAVA_OPTS%""=="""" echo Warning !!!. User specified JAVA_OPTS will be ignored, once you give the --debug option.
set JAVA_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=%DEBUG_PORT%
echo Please start the remote debugging client to continue...
goto findJdk
:noDebugPort
echo Please specify the debug port after the --debug option
goto end
rem ----- commandLifecycle -----------------------------------------------------
:commandLifecycle
goto findJdk
:doneStart
if ""%OS%""==""Windows_NT"" @setlocal
if ""%OS%""==""WINNT"" @setlocal
rem ---------- Handle the SSL Issue with proper JDK version --------------------
rem find the version of the jdk
:findJdk
set CMD=RUN %*
:checkJdk17
""%JAVA_HOME%\bin\java"" -version 2>&1 | findstr /r ""1.[7|8]"" >NUL
IF ERRORLEVEL 1 goto unknownJdk
goto jdk17
:unknownJdk
echo Starting WSO2 Carbon (in unsupported JDK)
echo [ERROR] CARBON is supported only on JDK 1.7 and 1.8
goto jdk17
:jdk17
goto runServer
rem ----------------- Execute The Requested Command ----------------------------
:runServer
cd %CARBON_HOME%
rem ------------------ Remove tmp folder on startup -----------------------------
set TMP_DIR=%CARBON_HOME%\tmp
cd ""%TMP_DIR%""
del *.* /s /q > nul
FOR /d %%G in (""*.*"") DO rmdir %%G /s /q
cd ..
rem ---------- Add jars to classpath ----------------
set CARBON_CLASSPATH=.\lib;%CARBON_CLASSPATH%
set JAVA_ENDORSED="".\..\lib\bps-endorsed"";""%JAVA_HOME%\jre\lib\endorsed"";""%JAVA_HOME%\lib\endorsed""
rem ---------------- Setting default profile for Runtime if not parsed --------------
set profileSet=false
for %%x in (%*) do (
if ""%%x"" == ""%x:-Dprofile%"" (
set profileSet=true
)
)
if ""%profileSet%"" == ""false"" (
set profile=-Dprofile=business-process-default
)
set CMD_LINE_ARGS=-Xbootclasspath/a:%CARBON_XBOOTCLASSPATH% -Xms256m -Xmx1024m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=""%CARBON_HOME%\repository\logs\heap-dump.hprof"" -Dcom.sun.management.jmxremote -classpath %CARBON_CLASSPATH% %JAVA_OPTS% -Djava.endorsed.dirs=%JAVA_ENDORSED% -Dcarbon.registry.root=/ -Dcarb...
:runJava
echo JAVA_HOME environment variable is set to %JAVA_HOME%
echo CARBON_HOME environment variable is set to %CARBON_HOME%
""%JAVA_HOME%\bin\java"" %CMD_LINE_ARGS% org.wso2.carbon.bootstrap.Bootstrap %CMD%
if ""%ERRORLEVEL%""==""121"" goto runJava
:end
goto endlocal
:endlocal
:END
",41.6479591837,1991,0.6561313243
109,d00dcecd5a926c0d8028227643de229bebf45598,5108,bat,Batchfile,docs/make.bat,NanZhang715/datafountain,1f060ccf9c0432b829209bae59cf64c0334ef8fa,['MIT'],,,,docs/make.bat,NanZhang715/datafountain,1f060ccf9c0432b829209bae59cf64c0334ef8fa,['MIT'],,,,docs/make.bat,NanZhang715/datafountain,1f060ccf9c0432b829209bae59cf64c0334...
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%