- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 54 for pwnd (0.11 seconds)
-
.ci/scripts/run-gradle.sh
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu May 13 19:08:52 GMT 2021 - 824 bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+periodic+release-tests.yml
#!/usr/local/bin/runbld --redirect-stderr # Fetch beats artifacts export ES_VERSION=$(grep 'elasticsearch' build-tools-internal/version.properties | awk '{print $3}') export BEATS_DIR=$(pwd)/distribution/docker/build/artifacts/beats mkdir -p ${BEATS_DIR}Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Aug 23 16:44:34 GMT 2021 - 1.5K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+periodic+ear.yml
sudo chown -R jenkins /mnt/secret cp -r "$WORKSPACE" /mnt/secret cd /mnt/secret/$(basename "$WORKSPACE") touch .output.log rm -Rf "$WORKSPACE" ln -s "$PWD" "$WORKSPACE" - shell: | #!/usr/local/bin/runbld --redirect-stderrCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue May 25 23:43:40 GMT 2021 - 1.5K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+pull-request+eql-correctness.yml
set +x VAULT_TOKEN=$(vault write -field=token auth/approle/login role_id=$VAULT_ROLE_ID secret_id=$VAULT_SECRET_ID) export VAULT_TOKEN export eql_test_credentials_file="$(pwd)/x-pack/plugin/eql/qa/correctness/credentials.gcs.json" vault read -field=credentials.gcs.json secret/elasticsearch-ci/eql_test_credentials > ${eql_test_credentials_file} unset VAULT_TOKEN set -xCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jul 01 20:27:05 GMT 2021 - 1.8K bytes - Click Count (0) -
src/buildall.bash
if [ "$1" = "-e" ]; then sete=true shift fi if [ "$sete" = true ]; then set -e fi pattern="$1" if [ "$pattern" = "" ]; then pattern=. fi ./make.bash || exit 1 GOROOT="$(cd .. && pwd)" gettargets() { ../bin/go tool dist list | sed -e 's|/|-|' | grep -E -v '^(android|ios)' # need C toolchain even for cross-compiling echo linux-arm-arm5 } selectedtargets() {Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Apr 23 17:45:23 GMT 2024 - 2.1K bytes - Click Count (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
*/ protected byte[] getNTHash() { MessageDigest md4 = Crypto.getMD4(); char[] pwd = getPasswordAsCharArray(); if (pwd == null || pwd.length == 0) { md4.update(Strings.getUNIBytes("")); return md4.digest(); } String tempStr = new String(pwd); try { md4.update(Strings.getUNIBytes(tempStr)); return md4.digest();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 30.3K bytes - Click Count (0) -
.ci/os.sh
SUDOERS_VARS sudo chmod 0440 /etc/sudoers.d/elasticsearch_vars # Bats tests still use this locationa sudo rm -Rf /elasticsearch sudo mkdir -p /elasticsearch/qa/ && sudo chown jenkins /elasticsearch/qa/ && ln -s $PWD/qa/vagrant /elasticsearch/qa/ # sudo sets it's own PATH thus we use env to override that and call sudo annother time so we keep the secure root PATH # run with --continue to run both bats and java tests even if one fails
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Feb 17 17:41:23 GMT 2021 - 2.3K bytes - Click Count (0) -
buildscripts/checkdeps.sh
cd $(dirname $TARGET_FILE) TARGET_FILE=$(basename $TARGET_FILE) done # Compute the canonicalized name by finding the physical path # for the directory we're in and appending the target file. PHYS_DIR=$(pwd -P) RESULT=$PHYS_DIR/$TARGET_FILE echo $RESULT } ## FIXME: ## In OSX, 'sort -V' option does not exist, hence ## we have our own version compare function. ## Once OSX has the option, below function is good enough.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Jun 08 16:12:05 GMT 2025 - 3.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantShellTask.java
spec.setCommand("ssh"); List<String> script = new ArrayList<>(); script.add("sudo bash -c '"); // start inline bash script script.add("pwd"); script.add("cd " + convertLinuxPath(getProject(), rootDir)); extension.getVmEnv().forEach((k, v) -> script.add("export " + k + "=" + v)); script.addAll(getLinuxScript());
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 4.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java
* - Test the output: * --- cat testcases | while read L; do * X=($L) * A=$( cd /b/c && sudo mkdir -p ${X[0]} && cd ${X[0]} && pwd | * sed -e 's#^//*#/#' ) * B=$( cd /b/c && cd ${X[1]} && pwd ) * cmp -s <(echo $A) <(echo $B) || echo "$X[0] -> $A vs. $B" * done | tee testoutput * - Move that testcases file to the appropriate name under testdata.Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 11.9K bytes - Click Count (0)