forked from kubernetes-client/javascript
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dsadasd
- Loading branch information
Showing
9,101 changed files
with
2,360,243 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
||
case `uname` in | ||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
if [ -x "$basedir/node" ]; then | ||
"$basedir/node" "$basedir/../compressjs/bin/compressjs" "$@" | ||
ret=$? | ||
else | ||
node "$basedir/../compressjs/bin/compressjs" "$@" | ||
ret=$? | ||
fi | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO off | ||
SETLOCAL | ||
CALL :find_dp0 | ||
|
||
IF EXIST "%dp0%\node.exe" ( | ||
SET "_prog=%dp0%\node.exe" | ||
) ELSE ( | ||
SET "_prog=node" | ||
SET PATHEXT=%PATHEXT:;.JS;=;% | ||
) | ||
|
||
"%_prog%" "%dp0%\..\compressjs\bin\compressjs" %* | ||
ENDLOCAL | ||
EXIT /b %errorlevel% | ||
:find_dp0 | ||
SET dp0=%~dp0 | ||
EXIT /b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env pwsh | ||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | ||
|
||
$exe="" | ||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | ||
# Fix case when both the Windows and Linux builds of Node | ||
# are installed in the same directory | ||
$exe=".exe" | ||
} | ||
$ret=0 | ||
if (Test-Path "$basedir/node$exe") { | ||
& "$basedir/node$exe" "$basedir/../compressjs/bin/compressjs" $args | ||
$ret=$LASTEXITCODE | ||
} else { | ||
& "node$exe" "$basedir/../compressjs/bin/compressjs" $args | ||
$ret=$LASTEXITCODE | ||
} | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
||
case `uname` in | ||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
if [ -x "$basedir/node" ]; then | ||
"$basedir/node" "$basedir/../crc-32/bin/crc32.njs" "$@" | ||
ret=$? | ||
else | ||
node "$basedir/../crc-32/bin/crc32.njs" "$@" | ||
ret=$? | ||
fi | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO off | ||
SETLOCAL | ||
CALL :find_dp0 | ||
|
||
IF EXIST "%dp0%\node.exe" ( | ||
SET "_prog=%dp0%\node.exe" | ||
) ELSE ( | ||
SET "_prog=node" | ||
SET PATHEXT=%PATHEXT:;.JS;=;% | ||
) | ||
|
||
"%_prog%" "%dp0%\..\crc-32\bin\crc32.njs" %* | ||
ENDLOCAL | ||
EXIT /b %errorlevel% | ||
:find_dp0 | ||
SET dp0=%~dp0 | ||
EXIT /b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env pwsh | ||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | ||
|
||
$exe="" | ||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | ||
# Fix case when both the Windows and Linux builds of Node | ||
# are installed in the same directory | ||
$exe=".exe" | ||
} | ||
$ret=0 | ||
if (Test-Path "$basedir/node$exe") { | ||
& "$basedir/node$exe" "$basedir/../crc-32/bin/crc32.njs" $args | ||
$ret=$LASTEXITCODE | ||
} else { | ||
& "node$exe" "$basedir/../crc-32/bin/crc32.njs" $args | ||
$ret=$LASTEXITCODE | ||
} | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
||
case `uname` in | ||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
if [ -x "$basedir/node" ]; then | ||
"$basedir/node" "$basedir/../detect-libc/bin/detect-libc.js" "$@" | ||
ret=$? | ||
else | ||
node "$basedir/../detect-libc/bin/detect-libc.js" "$@" | ||
ret=$? | ||
fi | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO off | ||
SETLOCAL | ||
CALL :find_dp0 | ||
|
||
IF EXIST "%dp0%\node.exe" ( | ||
SET "_prog=%dp0%\node.exe" | ||
) ELSE ( | ||
SET "_prog=node" | ||
SET PATHEXT=%PATHEXT:;.JS;=;% | ||
) | ||
|
||
"%_prog%" "%dp0%\..\detect-libc\bin\detect-libc.js" %* | ||
ENDLOCAL | ||
EXIT /b %errorlevel% | ||
:find_dp0 | ||
SET dp0=%~dp0 | ||
EXIT /b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env pwsh | ||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | ||
|
||
$exe="" | ||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | ||
# Fix case when both the Windows and Linux builds of Node | ||
# are installed in the same directory | ||
$exe=".exe" | ||
} | ||
$ret=0 | ||
if (Test-Path "$basedir/node$exe") { | ||
& "$basedir/node$exe" "$basedir/../detect-libc/bin/detect-libc.js" $args | ||
$ret=$LASTEXITCODE | ||
} else { | ||
& "node$exe" "$basedir/../detect-libc/bin/detect-libc.js" $args | ||
$ret=$LASTEXITCODE | ||
} | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
||
case `uname` in | ||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
if [ -x "$basedir/node" ]; then | ||
"$basedir/node" "$basedir/../escodegen/bin/escodegen.js" "$@" | ||
ret=$? | ||
else | ||
node "$basedir/../escodegen/bin/escodegen.js" "$@" | ||
ret=$? | ||
fi | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO off | ||
SETLOCAL | ||
CALL :find_dp0 | ||
|
||
IF EXIST "%dp0%\node.exe" ( | ||
SET "_prog=%dp0%\node.exe" | ||
) ELSE ( | ||
SET "_prog=node" | ||
SET PATHEXT=%PATHEXT:;.JS;=;% | ||
) | ||
|
||
"%_prog%" "%dp0%\..\escodegen\bin\escodegen.js" %* | ||
ENDLOCAL | ||
EXIT /b %errorlevel% | ||
:find_dp0 | ||
SET dp0=%~dp0 | ||
EXIT /b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env pwsh | ||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | ||
|
||
$exe="" | ||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | ||
# Fix case when both the Windows and Linux builds of Node | ||
# are installed in the same directory | ||
$exe=".exe" | ||
} | ||
$ret=0 | ||
if (Test-Path "$basedir/node$exe") { | ||
& "$basedir/node$exe" "$basedir/../escodegen/bin/escodegen.js" $args | ||
$ret=$LASTEXITCODE | ||
} else { | ||
& "node$exe" "$basedir/../escodegen/bin/escodegen.js" $args | ||
$ret=$LASTEXITCODE | ||
} | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
||
case `uname` in | ||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
if [ -x "$basedir/node" ]; then | ||
"$basedir/node" "$basedir/../escodegen/bin/esgenerate.js" "$@" | ||
ret=$? | ||
else | ||
node "$basedir/../escodegen/bin/esgenerate.js" "$@" | ||
ret=$? | ||
fi | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO off | ||
SETLOCAL | ||
CALL :find_dp0 | ||
|
||
IF EXIST "%dp0%\node.exe" ( | ||
SET "_prog=%dp0%\node.exe" | ||
) ELSE ( | ||
SET "_prog=node" | ||
SET PATHEXT=%PATHEXT:;.JS;=;% | ||
) | ||
|
||
"%_prog%" "%dp0%\..\escodegen\bin\esgenerate.js" %* | ||
ENDLOCAL | ||
EXIT /b %errorlevel% | ||
:find_dp0 | ||
SET dp0=%~dp0 | ||
EXIT /b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env pwsh | ||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | ||
|
||
$exe="" | ||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | ||
# Fix case when both the Windows and Linux builds of Node | ||
# are installed in the same directory | ||
$exe=".exe" | ||
} | ||
$ret=0 | ||
if (Test-Path "$basedir/node$exe") { | ||
& "$basedir/node$exe" "$basedir/../escodegen/bin/esgenerate.js" $args | ||
$ret=$LASTEXITCODE | ||
} else { | ||
& "node$exe" "$basedir/../escodegen/bin/esgenerate.js" $args | ||
$ret=$LASTEXITCODE | ||
} | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
||
case `uname` in | ||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
if [ -x "$basedir/node" ]; then | ||
"$basedir/node" "$basedir/../esprima/bin/esparse.js" "$@" | ||
ret=$? | ||
else | ||
node "$basedir/../esprima/bin/esparse.js" "$@" | ||
ret=$? | ||
fi | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO off | ||
SETLOCAL | ||
CALL :find_dp0 | ||
|
||
IF EXIST "%dp0%\node.exe" ( | ||
SET "_prog=%dp0%\node.exe" | ||
) ELSE ( | ||
SET "_prog=node" | ||
SET PATHEXT=%PATHEXT:;.JS;=;% | ||
) | ||
|
||
"%_prog%" "%dp0%\..\esprima\bin\esparse.js" %* | ||
ENDLOCAL | ||
EXIT /b %errorlevel% | ||
:find_dp0 | ||
SET dp0=%~dp0 | ||
EXIT /b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env pwsh | ||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | ||
|
||
$exe="" | ||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | ||
# Fix case when both the Windows and Linux builds of Node | ||
# are installed in the same directory | ||
$exe=".exe" | ||
} | ||
$ret=0 | ||
if (Test-Path "$basedir/node$exe") { | ||
& "$basedir/node$exe" "$basedir/../esprima/bin/esparse.js" $args | ||
$ret=$LASTEXITCODE | ||
} else { | ||
& "node$exe" "$basedir/../esprima/bin/esparse.js" $args | ||
$ret=$LASTEXITCODE | ||
} | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
||
case `uname` in | ||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
if [ -x "$basedir/node" ]; then | ||
"$basedir/node" "$basedir/../esprima/bin/esvalidate.js" "$@" | ||
ret=$? | ||
else | ||
node "$basedir/../esprima/bin/esvalidate.js" "$@" | ||
ret=$? | ||
fi | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO off | ||
SETLOCAL | ||
CALL :find_dp0 | ||
|
||
IF EXIST "%dp0%\node.exe" ( | ||
SET "_prog=%dp0%\node.exe" | ||
) ELSE ( | ||
SET "_prog=node" | ||
SET PATHEXT=%PATHEXT:;.JS;=;% | ||
) | ||
|
||
"%_prog%" "%dp0%\..\esprima\bin\esvalidate.js" %* | ||
ENDLOCAL | ||
EXIT /b %errorlevel% | ||
:find_dp0 | ||
SET dp0=%~dp0 | ||
EXIT /b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env pwsh | ||
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent | ||
|
||
$exe="" | ||
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) { | ||
# Fix case when both the Windows and Linux builds of Node | ||
# are installed in the same directory | ||
$exe=".exe" | ||
} | ||
$ret=0 | ||
if (Test-Path "$basedir/node$exe") { | ||
& "$basedir/node$exe" "$basedir/../esprima/bin/esvalidate.js" $args | ||
$ret=$LASTEXITCODE | ||
} else { | ||
& "node$exe" "$basedir/../esprima/bin/esvalidate.js" $args | ||
$ret=$LASTEXITCODE | ||
} | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
||
case `uname` in | ||
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
if [ -x "$basedir/node" ]; then | ||
"$basedir/node" "$basedir/../gitlab/dist/index.cli.js" "$@" | ||
ret=$? | ||
else | ||
node "$basedir/../gitlab/dist/index.cli.js" "$@" | ||
ret=$? | ||
fi | ||
exit $ret |
Oops, something went wrong.