- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 55 for pwnd (0.04 sec)
-
bin/build_ztunnel.sh
# BUILD_ZTUNNEL=1 with no BUILD_ZTUNNEL_REPO tries to infer BUILD_ZTUNNEL_REPO if [[ "${BUILD_ZTUNNEL_REPO:-}" == "" ]] && [[ "${BUILD_ZTUNNEL:-}" != "" ]]; then local ZTUNNEL_DIR ZTUNNEL_DIR="$(pwd)/../ztunnel" if [[ -d "${ZTUNNEL_DIR}" ]]; then BUILD_ZTUNNEL_REPO="${ZTUNNEL_DIR}" else echo "No directory at ${ZTUNNEL_DIR}" return fi fi
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Apr 02 21:46:06 UTC 2024 - 5K bytes - Viewed (0) -
docs/debugging/build.sh
#!/bin/bash export CGO_ENABLED=0 for dir in docs/debugging/*/; do bin=$(basename ${dir}) go build -C ${dir} -o ${PWD}/${bin}
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 133 bytes - Viewed (0) -
misc/ios/README
set to the clang wrapper that invokes clang for iOS. For example, this command runs all.bash on the iOS emulator: GOOS=ios GOARCH=amd64 CGO_ENABLED=1 CC_FOR_TARGET=$(pwd)/../misc/ios/clangwrap.sh ./all.bash If CC_FOR_TARGET is not set when the toolchain is built (make.bash or all.bash), CC can be set on the command line. For example,
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Dec 29 21:49:26 UTC 2020 - 2.7K bytes - Viewed (0) -
fuzzing/fuzzingserver-update-expected.sh
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Mar 26 02:01:32 UTC 2019 - 275 bytes - Viewed (0) -
mvnw
fi # workaround for JBEAP-8937 (on Solaris 10/Sparc) if [ -d "${wdir}" ]; then wdir=$( cd "$wdir/.." || exit 1 pwd ) fi # end of workaround done printf '%s' "$( cd "$basedir" || exit 1 pwd )" } # concatenates all lines of a file concat_lines() { if [ -f "$1" ]; then # Remove \r in case we run on Windows within Git Bash
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 14 22:24:15 UTC 2024 - 10.9K bytes - Viewed (0) -
src/clean.bash
# license that can be found in the LICENSE file. set -e if [ ! -f run.bash ]; then echo 'clean.bash must be run from $GOROOT/src' 1>&2 exit 1 fi export GOROOT="$(cd .. && pwd)" gobin="${GOROOT}"/bin if ! "$gobin"/go help >/dev/null 2>&1; then echo 'cannot find go command; nothing to clean' >&2 exit 1 fi "$gobin/go" clean -i std "$gobin/go" tool dist clean
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Feb 26 21:54:09 UTC 2020 - 518 bytes - Viewed (0) -
.travis/run.sh
#!/bin/bash cd `dirname $0` cd .. BASE_DIR=`pwd` LOG_FILE=$BASE_DIR/test.log mvn test > $LOG_FILE 2>&1 ret=$? if [ $ret != 0 ] ; then for f in `find $BASE_DIR -type f | grep surefire-reports | grep -v /TEST-` ; do cat $f done fi tail -n1000 $LOG_FILE
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Feb 02 08:45:33 UTC 2019 - 273 bytes - Viewed (0) -
bin/check_samples.sh
# See the License for the specific language governing permissions and # limitations under the License. shopt -s globstar set -e SCRIPTPATH=$( cd "$(dirname "$0")" && pwd -P ) ROOTDIR=$SCRIPTPATH/.. cd "$ROOTDIR" || exit # rely on go build cache ISTIOCTL=bin/istioctl go build -o $ISTIOCTL ./istioctl/cmd/istioctl for f in samples/**/*.yaml; do if grep -q -e "{{" "$f" ; then
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Nov 04 01:54:50 UTC 2023 - 1010 bytes - Viewed (0) -
bin/update_ztunnel.sh
# See the License for the specific language governing permissions and # limitations under the License. set -e UPDATE_BRANCH=${UPDATE_BRANCH:-"master"} SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" ROOTDIR=$(dirname "${SCRIPTPATH}") cd "${ROOTDIR}" # Get the sha of top commit # $1 = repo function getSha() { local dir result dir=$(mktemp -d)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Apr 11 17:50:01 UTC 2023 - 1.1K bytes - Viewed (0) -
test-site/activator
TARGET_FILEPATH= else TARGET_FILEPATH=/$TARGET_FILE fi # make sure we grab the actual windows path, instead of cygwin's path. if ! is_cygwin; then echo "$(pwd -P)/$TARGET_FILE" else echo $(cygwinpath "$(pwd -P)/$TARGET_FILE") fi ) } # TODO - Do we need to detect msys? # Uses uname to detect if we're in the odd cygwin environment. is_cygwin() { local os=$(uname -s)
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 9.3K bytes - Viewed (0)