text
stringlengths
0
834k
set GRPC=unity_to_external.proto
protoc --proto_path=proto --csharp_out %DST_DIR_C% --grpc_out %DST_DIR_C% %SRC_DIR%\%GRPC% --plugin=protoc-gen-grpc=grpc_csharp_plugin.exe
python -m grpc_tools.protoc --proto_path=proto --python_out=%DST_DIR_P% --grpc_python_out=%DST_DIR_P% %SRC_DIR%\%GRPC%
rem Generate the init file for the python module
rem rm -f $DST_DIR_P/$PYTHON_PACKAGE/__init__.py
setlocal enabledelayedexpansion
for %%i in (%DST_DIR_P%\%PYTHON_PACKAGE%\*.py) do (
set FILE=%%~ni
rem echo from .$(basename $FILE) import * >> $DST_DIR_P/$PYTHON_PACKAGE/__init__.py
echo from .!FILE! import * >> %DST_DIR_P%\%PYTHON_PACKAGE%\__init__.py
)
",33.7111111111,138,0.7659854977
167,d018605f78163bd3838f0426cbd1f871b963bb9c,131,bat,Batchfile,Clear.bat,sameer-gupta/CheckerPlus,dec24d898f7e65655b80a62f5863a5178ceced26,['MIT'],,,,Clear.bat,sameer-gupta/CheckerPlus,dec24d898f7e65655b80a62f5863a5178ceced26,['MIT'],,,,Clear.bat,sameer-gupta/CheckerPlus,dec24d898f7e65655b80a62f5863a5178ceced26,['MIT'],,,,"@echo off
del file.cpp
del workspace.cpp
del output.txt
del input.txt
del your_output.txt
del gmon.out
del Workspace.exe
",13.1,20,0.7404580153
168,d018c0675bd9df5f9aea09f679014eb6cc3fff92,7251,bat,Batchfile,Tools/apache-ant-1.9.15/bin/ant.bat,sivakit/ant-sample,9cce74675d7c43efd7ec71a180af535c3f4dce99,['Unlicense'],,,,Tools/apache-ant-1.9.15/bin/ant.bat,sivakit/ant-sample,9cce74675d7c43efd7ec71a180af535c3f4dce99,['Unlicense'],,,,Tools/apache-ant-1.9.15/bin/ant.bat,sivakit/ant-sample,9cce74675d7c43efd7ec71a180af535c3f4dce99,['Unlicense'],,,,"@echo on
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.
REM See the License for the specific language governing permissions and
REM limitations under the License.
REM This is an inordinately troublesome piece of code, particularly because it
REM tries to work on both Win9x and WinNT-based systems. If we could abandon '9x
REM support, things would be much easier, but sadly, it is not yet time.
REM Be cautious about editing this, and only add WinNT specific stuff in code that
REM only runs on WinNT.
if ""%HOME%""=="""" goto homeDrivePathPre
if exist ""%HOME%\antrc_pre.bat"" call ""%HOME%\antrc_pre.bat""
:homeDrivePathPre
if ""%HOMEDRIVE%%HOMEPATH%""=="""" goto userProfilePre
if ""%HOMEDRIVE%%HOMEPATH%""==""%HOME%"" goto userProfilePre
if exist ""%HOMEDRIVE%%HOMEPATH%\antrc_pre.bat"" call ""%HOMEDRIVE%%HOMEPATH%\antrc_pre.bat""
:userProfilePre
if ""%USERPROFILE%""=="""" goto alpha
if ""%USERPROFILE%""==""%HOME%"" goto alpha
if ""%USERPROFILE%""==""%HOMEDRIVE%%HOMEPATH%"" goto alpha
if exist ""%USERPROFILE%\antrc_pre.bat"" call ""%USERPROFILE%\antrc_pre.bat""
:alpha
if ""%OS%""==""Windows_NT"" @setlocal
if ""%OS%""==""WINNT"" @setlocal
if ""%ANT_HOME%""=="""" goto setDefaultAntHome
:stripAntHome
if not _%ANT_HOME:~-1%==_\ goto checkClasspath
set ANT_HOME=%ANT_HOME:~0,-1%
goto stripAntHome
:setDefaultAntHome
rem %~dp0 is expanded pathname of the current script under NT
set ANT_HOME=%~dp0..
:checkClasspath
set _USE_CLASSPATH=yes
rem CLASSPATH must not be used if it is equal to """"
if ""%CLASSPATH%""=="""""""" set _USE_CLASSPATH=no
if ""%CLASSPATH%""=="""" set _USE_CLASSPATH=no
rem Slurp the command line arguments. This loop allows for an unlimited number
rem of arguments (up to the command line limit, anyway).
set ANT_CMD_LINE_ARGS=
:setupArgs
if """"%1""""=="""""""" goto doneStart
if """"%1""""==""""-noclasspath"""" goto clearclasspath
set ANT_CMD_LINE_ARGS=%ANT_CMD_LINE_ARGS% %1
shift
goto setupArgs
rem here is there is a -noclasspath in the options
:clearclasspath
set _USE_CLASSPATH=no
shift
goto setupArgs