text stringlengths 0 834k |
|---|
copy frsconfig.cmd w:\frsconfig |
copy frsinstall.cmd w:\frsconfig |
copy frsobjsup.pm w:\frsconfig |
copy README-bp.TXT w:\frsconfig |
",27.4,33,0.7226277372 |
122,d00fdece459503096dae92789230c0e827c163b1,808,bat,Batchfile,components/files/folder_create/folder_create.bat,Sitelink3D-v2-Developer/sitelink3dv2-examples,254a79b359ad59e3ee086e4b4ba10e423f4b1c84,['Apache-2.0'],1.0,2021-10-19T00:08:24.000Z,2021-10-19T00:08:24.000Z,components/files/folder_create/folder_create.bat,Sit... |
rem ## Batch file to create a folder. |
rem ## Settings for the environment. |
set env=""qa"" |
set dc=""us"" |
set site_id="""" |
set folder_name=""Windows Folder"" |
set folder_uuid="""" |
set parent_uuid="""" |
rem ## Authorization. OAuth credentials are used if the JWT string is empty. |
rem # run `SitelinkFrontend.core.store.getState().app.owner.jwt[0]` in your browser developer console to obtain a JWT. |
set jwt="""" |
rem # - or - |
set oauth_id="""" |
set oauth_secret="""" |
set oauth_scope="""" |
python folder_create.py ^ |
--env %env% ^ |
--dc %dc% ^ |
--site_id %site_id% ^ |
--folder_name %folder_name% ^ |
--folder_uuid %folder_uuid% ^ |
--parent_uuid %parent_uuid% ^ |
--jwt %jwt% ^ |
--oauth_id %oauth_id% ^ |
--oauth_secret %oauth_secret% ^ |
--oauth_scope %oauth_scope% |
",25.25,119,0.6485148515 |
123,d00fe64739a78f2eb9a2fdfa17d608f60839db0d,168,bat,Batchfile,locale/generate_pot.bat,chet-manley/Watcher3,0217e75158b563bdefc8e01c3be7620008cf3977,['Apache-2.0'],320.0,2017-03-28T23:33:45.000Z,2022-02-17T08:45:01.000Z,locale/generate_pot.bat,chet-manley/Watcher3,0217e75158b563bdefc8e01c3be7620008cf3977,['Apache-2.0']... |
124,d0101441f9e64cbd5bc9122656943442f20c3ec4,255,cmd,Batchfile,install.cmd,momcms/MoM.Dev,c99f8651aae6ddd4523fc03a09df10d3e3c23b33,['MIT'],,,,install.cmd,momcms/MoM.Dev,c99f8651aae6ddd4523fc03a09df10d3e3c23b33,['MIT'],,,,install.cmd,momcms/MoM.Dev,c99f8651aae6ddd4523fc03a09df10d3e3c23b33,['MIT'],,,,"@ECHO OFF |
PowerShell -NoProfile -NoLogo -ExecutionPolicy unrestricted -Command ""[System.Threading.Thread]::CurrentThread.CurrentCulture = ''; [System.Threading.Thread]::CurrentThread.CurrentUICulture = '';& '%~dp0install.ps1' %*; exit $LASTEXITCODE"" |
pause",85.0,239,0.7764705882 |
125,d0108276c1616a0b304dcf6fb139fce36f2322f2,201,bat,Batchfile,MFES/AC/UPPAAL/uppaal64-4.1.24/demo/yggdrasil/updown/test.bat,luis1ribeiro/MEI---Majors-Degree,c3b6660703e07eea0506eac29e7eb9af2264fc7a,['MIT'],1.0,2021-07-19T22:09:47.000Z,2021-07-19T22:09:47.000Z,MFES/AC/UPPAAL/uppaal64-4.1.24/demo/yggdrasil/updown/test.b... |
copy app\\AppC.java app\\App.java |
javac -cp . app\\App.java |
for /f %%i in ('dir /b *.code') DO ( |
echo %%i |
copy %%i app\\Test.java |
javac -cp . app\\Test.java |
java -ea -cp . app.Test |
)",20.1,36,0.5970149254 |
126,d010a66f981082d852a02c57e2bc42e4390c641d,336,bat,Batchfile,recipe/bld.bat,dakcarto/opencl-clhpp-feedstock,cb1344c674abd3dd54718536721d3db1c660c652,['BSD-3-Clause'],,,,recipe/bld.bat,dakcarto/opencl-clhpp-feedstock,cb1344c674abd3dd54718536721d3db1c660c652,['BSD-3-Clause'],,,,recipe/bld.bat,dakcarto/opencl-clhpp-feed... |
mkdir build |
cd build |
:: TODO for Windows |
cmake -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ |
-DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^ |
-G ""NMake Makefiles"" ^ |
-DCMAKE_BUILD_TYPE=Release ^ |
.. |
if errorlevel 1 exit /B 1 |
nmake |
if errorlevel 1 exit /B 1 |
:: No make check |
nmake install |
if errorlevel 1 exit /B 1 |
",17.6842105263,48,0.6755952381 |
127,d010aa2885bb9264c2bb491d7b902270edf1623c,1784,bat,Batchfile,New folder/php/phptok.bat,Jaifar/java_ptf,14c5b27374184b738f78d2ad1f2253751ac5863a,['Apache-2.0'],,,,New folder/php/phptok.bat,Jaifar/java_ptf,14c5b27374184b738f78d2ad1f2253751ac5863a,['Apache-2.0'],,,,New folder/php/phptok.bat,Jaifar/java_ptf,14c5b2737418... |
REM php-token-stream |
REM |
REM Copyright (c) 2009-2010, Sebastian Bergmann <sb@sebastian-bergmann.de>. |
REM All rights reserved. |
REM |
REM Redistribution and use in source and binary forms, with or without |
REM modification, are permitted provided that the following conditions |
REM are met: |
REM |
REM * Redistributions of source code must retain the above copyright |
REM notice, this list of conditions and the following disclaimer. |
REM |
REM * Redistributions in binary form must reproduce the above copyright |
REM notice, this list of conditions and the following disclaimer in |
REM the documentation and/or other materials provided with the |
REM distribution. |
REM |
REM * Neither the name of Sebastian Bergmann nor the names of his |
REM contributors may be used to endorse or promote products derived |
REM from this software without specific prior written permission. |
REM |
REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
REM ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
REM LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
REM FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
REM COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
REM INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
REM BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.