- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 213 for LS (0.11 sec)
-
cmd/storage-rest-common.go
storageRESTMethodReadXL = "/rxl" storageRESTMethodReadAll = "/rall" storageRESTMethodReadFile = "/rfile" storageRESTMethodReadFileStream = "/rfilest" storageRESTMethodListDir = "/ls" storageRESTMethodDeleteVersions = "/dvers" storageRESTMethodRenameFile = "/rfile" storageRESTMethodVerifyFile = "/vfile" storageRESTMethodStatInfoFile = "/sfile" storageRESTMethodReadMultiple = "/rmpl"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Aug 12 08:38:15 UTC 2024 - 2.9K bytes - Viewed (0) -
disabled-Jenkinsfile.its
} } } stage( "Run Maven Integration Testing" ) { steps { git url: "https://github.com/apache/maven-integration-testing.git", branch: "${ITS_BRANCH}" sh "ls -lrt ${env.WORKSPACE}/apache-maven/target/" withEnv(["JAVA_HOME=${ tool "JDK 1.8 (latest)" }", "PATH+MAVEN=${tool 'Maven 3.6.3'}/bin:${env.JAVA_HOME}/bin"]) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Sep 30 14:11:55 UTC 2024 - 2.3K bytes - Viewed (0) -
integration-tests/gradle/gradlew
app_path=$0 # Need this for daisy-chained symlinks. while APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path [ -h "$app_path" ] do ls=$( ls -ld "$app_path" ) link=${ls#*' -> '} case $link in #( /*) app_path=$link ;; #( *) app_path=$APP_HOME$link ;; esac done # This is normally unused # shellcheck disable=SC2034
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 31 19:07:19 UTC 2023 - 8.5K bytes - Viewed (0) -
ci/official/containers/linux_arm64/setup.python.sh
$VERSION-dev $VERSION-venv EOF fi /setup.packages.sh pythons.txt # Re-link pyconfig.h from aarch64-linux-gnu into the devtoolset directory # for any Python version present pushd /usr/include/aarch64-linux-gnu for f in $(ls | grep python); do # set up symlink for devtoolset-10 rm -f /dt10/usr/include/aarch64-linux-gnu/$f ln -s /usr/include/aarch64-linux-gnu/$f /dt10/usr/include/aarch64-linux-gnu/$f done popd
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Oct 01 12:56:16 UTC 2024 - 2.2K bytes - Viewed (0) -
ci/official/installer_wheel.sh
# Get the name of the pure python wheel that was built. This should # resolve to either # 1. tensorflow-a.b.c-py3-none-any.whl or, for nightly builds, # 2. tf_nightly-a.b.c.devYYYYMMDD-py3-none-any.whl pure_python_whl=$(ls "$TFCI_OUTPUT_DIR"/*py3-none-any*) pure_python_whl=$(basename "${pure_python_whl}") # Extract the package name from the wheel name. That is, extract every character # before the pattern "-py3-" in the wheel name.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Jul 25 17:28:01 UTC 2024 - 3.5K bytes - Viewed (0) -
docs/iam/opa.md
mc mb myminio/test mc admin user add myminio foo foobar123 mc cp /etc/issue myminio/test/ # 2. Now access the server as user `foo`. These operations will also succeed. export MC_HOST_foo=http://foo:foobar123@localhost:9000 mc ls foo/test mc cat foo/test/issue # 3. Attempt to upload an object as user `foo` - this will fail with a permissions error. mc cp /etc/issue myminio/test/issue2
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jul 17 15:43:14 UTC 2022 - 2.3K bytes - Viewed (0) -
docs/site-replication/run-multi-site-minio-idp.sh
if [ "${val}" != "val2" ]; then echo "expected bucket tag to have replicated, exiting..." exit_1 fi # Test if bucket created/deleted when minio1 is down healed diff -q <(./mc ls minio1) <(./mc ls minio2) 1>/dev/null if [ $? -ne 0 ]; then echo "expected 'bucket2' delete and 'newbucket2' creation to have replicated, exiting..." exit_1 fi # force a resync after removing all site replication
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 12.1K bytes - Viewed (0) -
src/bootstrap.bash
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Jan 20 17:52:26 UTC 2023 - 2.3K bytes - Viewed (0) -
docs/bucket/replication/setup_3site_replication.sh
sleep 10 ./mc stat --no-list sitea/bucket/new-test-encrypted-object ./mc stat --no-list siteb/bucket/new-test-encrypted-object ./mc stat --no-list sitec/bucket/new-test-encrypted-object ./mc ls -r sitea/bucket/ ./mc ls -r siteb/bucket/ ./mc ls -r sitec/bucket/
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 10.3K bytes - Viewed (0) -
helm/minio/templates/_helper_create_bucket.txt
sleep 2 # 1 second intervals between attempts $MC_COMMAND STATUS=$? done set -e # reset `e` as active return 0 } # checkBucketExists ($bucket) # Check if the bucket exists, by using the exit code of `mc ls` checkBucketExists() { BUCKET=$1 CMD=$(${MC} stat myminio/$BUCKET >/dev/null 2>&1) return $? } # createBucket ($bucket, $policy, $purge) # Ensure bucket exists, purging if asked to createBucket() {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jan 12 18:18:57 UTC 2024 - 3.5K bytes - Viewed (0)