- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 217 for rm (0.04 sec)
-
docs/distributed/decom.sh
#!/bin/bash if [ -n "$TEST_DEBUG" ]; then set -x fi pkill minio rm -rf /tmp/xl rm -rf /tmp/xltier if [ ! -f ./mc ]; then wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc && chmod +x mc fi export CI=true export MINIO_SCANNER_SPEED=fastest (minio server http://localhost:9000/tmp/xl/{1...10}/disk{0...1} 2>&1 >/tmp/decom.log) & pid=$!
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 6.4K bytes - Viewed (0) -
.github/workflows/deploy-docs.yml
env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COMMIT_SHA: ${{ github.event.workflow_run.head_sha }} RUN_ID: ${{ github.run_id }} - name: Clean site run: | rm -rf ./site mkdir ./site - uses: actions/download-artifact@v4 with: path: ./site/ pattern: docs-site-* merge-multiple: true
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 09:37:59 UTC 2024 - 2.6K bytes - Viewed (0) -
ci/official/utilities/repack_libtensorflow.sh
(mkdir -p src/main/java && cd src/main/java && jar -xf "${tmp_dir}/orig.jar" org/) # Repackage src/ jar -cMf "${tmp_dir}/new.jar" src popd cp "${tmp_dir}/new.jar" "${dest_jar}" rm -rf "${tmp_dir}" } DIR=$1 TARBALL_SUFFIX=$2 mkdir -p "$DIR" cp bazel-bin/tensorflow/tools/lib_package/libtensorflow.tar.gz "${DIR}/libtensorflow${TARBALL_SUFFIX}.tar.gz"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jul 12 19:47:53 UTC 2023 - 2.6K bytes - Viewed (0) -
util/gradle_integration_tests.sh
# integration-tests/gradle/gradlew # integration-tests/gradle/gradlew.bat # Please commit your changes or stash them before you switch branches. GRADLE_TEMP="$(mktemp -d)" trap 'rm -rf "${GRADLE_TEMP}"' EXIT # The Gradle tests need the pom.xml only to read its version number. # (And the file needs to be two directory levels up from the Gradle build file.)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 16 20:48:20 UTC 2023 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SpnegoContext.java
byte[] inputToken = null; if ( spToken instanceof NegTokenInit ) { NegTokenInit tinit = (NegTokenInit) spToken; ASN1ObjectIdentifier[] rm = tinit.getMechanisms(); this.remoteMechs = rm; ASN1ObjectIdentifier prefMech = rm[ 0 ]; // only use token if the optimistic mechanism is supported if ( this.mechContext.isSupported(prefMech) ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Jan 04 04:18:31 UTC 2021 - 14.8K bytes - Viewed (0) -
schema/utils.go
resultsMap := map[string][]reflect.Value{} results := [][]interface{}{} for _, v := range values { rm, rs := GetIdentityFieldValuesMap(ctx, reflect.Indirect(reflect.ValueOf(v)), fields) for k, v := range rm { resultsMap[k] = append(resultsMap[k], v...) } results = append(results, rs...) } return resultsMap, results }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Aug 19 13:35:14 UTC 2023 - 5.5K bytes - Viewed (0) -
docs/bucket/lifecycle/DESIGN.md
### Expiry or removal events An object that is in transition tier will be deleted once the object hits expiry date or if removed via `mc rm` (`mc rm --vid` in the case of delete of a specific object version). Other rules specific to legal hold and object locking precede any lifecycle rules. ### Additional notes
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 4.3K bytes - Viewed (0) -
buildscripts/verify-healing-empty-erasure-set.sh
done echo "FAILED" purge "$WORK_DIR" exit 1 } function check_online() { if ! grep -q 'API:' ${WORK_DIR}/dist-minio-*.log; then echo "1" fi } function purge() { echo rm -rf "$1" } function __init__() { echo "Initializing environment" mkdir -p "$WORK_DIR" mkdir -p "$MINIO_CONFIG_DIR" ## version is purposefully set to '3' for minio to migrate configuration file
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 20:51:54 UTC 2024 - 3.7K bytes - Viewed (0) -
ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh
rpm2cpio "glibc-2.17-317.el7.src.rpm" |cpio -idmv tar -xvzf "glibc-2.17-c758a686.tar.gz" --strip 1 tar -xvzf "glibc-2.17-c758a686-releng.tar.gz" --strip 1 sed -i '/patch0060/d' glibc.spec /rpm-patch.sh "glibc.spec" rm -f "glibc-2.17-317.el7.src.rpm" "glibc-2.17-c758a686.tar.gz" "glibc-2.17-c758a686-releng.tar.gz" patch -p1 < /gcc9-fixups.patch patch -p1 < /stringop_trunc.patch cd ../glibc-build
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Sep 29 00:26:34 UTC 2023 - 6.1K bytes - Viewed (0) -
src/packaging/common/scripts/postrm
update-rc.d fess remove >/dev/null || true fi fi if [ "$REMOVE_DIRS" = "true" ]; then if [ -d "$PID_DIR" ]; then echo -n "Deleting PID directory..." rm -rf "$PID_DIR" && echo " OK" || echo " ERROR: unable to delete directory [$PID_DIR]" fi fi if [ "$REMOVE_USER_AND_GROUP" = "true" ]; then if id "$FESS_USER" > /dev/null 2>&1 ; then userdel "$FESS_USER"
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 2.2K bytes - Viewed (0)