Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 229 for Rm (0.02 sec)

  1. pkg/test/echo/docker/Dockerfile.app_sidecar_base_centos

        iptables \
        iproute \
        sudo \
        nmap-ncat \
        tcpdump \
        procps \
        conntrack \
        net-tools \
        ca-certificates \
        && update-ca-trust \
        && yum clean all \
        && rm -rf /var/cache/yum
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application && \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 568 bytes
    - Viewed (0)
  2. buildscripts/disable-root.sh

    done
    
    set +e
    
    ./mc ready minioadm/
    
    ./mc ls minioadm/
    if [ $? -ne 0 ]; then
    	echo "listing failed, 'minioadmin' should be enabled"
    	exit 1
    fi
    
    killall -9 minio
    
    rm -rf /tmp/multisitea/
    rm -rf /tmp/multisiteb/
    
    echo "Setup site-replication and then disable root credentials"
    
    minio server --address 127.0.0.1:9001 "http://127.0.0.1:9001/tmp/multisitea/data/disterasure/xl{1...4}" \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_compile_multi_pkg.txt

    ! go test -o $WORK/bin/ ./...
    stderr '^cannot write test binary pkg1.test for multiple packages:\nexample/anotherpkg/pkg1\nexample/pkg/pkg1'
    
    go test -c -o $devnull ./...
    
    rm pkg1.test$GOEXE
    rm pkg2.test$GOEXE
    go test -o . ./pkg/...
    exists -exec pkg1.test$GOEXE
    exists -exec pkg2.test$GOEXE
    
    -- go.mod --
    module example
    
    -- pkg/pkg1/pkg1_test.go --
    package pkg1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:09:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/bzr/hello.txt

    env EMAIL='Russ Cox <******@****.***>'
    
    bzr init-repo .
    
    bzr init b
    cd b
    cp ../hello.go .
    bzr add hello.go
    bzr commit --commit-time='2017-09-21 21:20:12 -0400' -m 'hello world'
    bzr push ..
    cd ..
    rm b
    
    bzr log
    cmp stdout .bzr-log
    
    -- .bzr-log --
    ------------------------------------------------------------
    revno: 1
    committer: Russ Cox <******@****.***>
    branch nick: b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 15:22:32 UTC 2023
    - 554 bytes
    - Viewed (0)
  5. docs/site-replication/run-multi-site-ldap.sh

    if [ "${expected_checksum}" != "${actual_checksum}" ]; then
    	echo "replication failed on multipart objects expected ${expected_checksum} got ${actual_checksum}"
    	exit
    fi
    rm ./lrgfile
    
    ./mc rm -r --versions --force minio1/newbucket/lrgfile
    if [ $? -ne 0 ]; then
    	echo "expected object to be present, exiting.."
    	exit_1
    fi
    
    sleep 5
    ./mc stat minio1/newbucket/lrgfile
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. helm/minio/templates/_helper_create_svcacct.txt

      if [[ ! -f $MINIO_ACCESSKEY_SECRETKEY_TMP ]];then
        echo "credentials file does not exist"
        return 1
      fi
      if [[ $(cat $MINIO_ACCESSKEY_SECRETKEY_TMP|wc -l) -ne 2 ]];then
        echo "credentials file is invalid"
        rm -f $MINIO_ACCESSKEY_SECRETKEY_TMP
        return 1
      fi
      SVCACCT=$(head -1 $MINIO_ACCESSKEY_SECRETKEY_TMP)
      # Create the svcacct if it does not exist
      if ! checkSvcacctExists ; then
        echo "Creating svcacct '$SVCACCT'"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 23:20:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. mvnw

            if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
                wget $QUIET "$wrapperUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath"
            else
                wget $QUIET --http-user="$MVNW_USERNAME" --http-password="$MVNW_PASSWORD" "$wrapperUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath"
            fi
        elif command -v curl > /dev/null; then
            log "Found curl ... using curl"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. cluster/images/etcd/cloudbuild.yaml

        args:
          - '-c'
          - |
            gcloud auth configure-docker \
            && docker buildx create --name img-builder --use \
            && docker buildx inspect --bootstrap \
            && docker run --rm --privileged linuxkit/binfmt:4ea3b9b0938cbd19834c096aa31ff475cc75d281 \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 20:51:40 UTC 2024
    - 929 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    go get rsc.io/fortune@v1.0.0
    go install -mod=readonly $GOPATH/pkg/mod/rsc.io/fortune@v1.0.0
    exists $GOPATH/bin/fortune$GOEXE
    cd ..
    rm tmp
    rm $GOPATH/bin
    env GO111MODULE=auto
    
    # 'go install pkg@version' reports errors for meta packages, std packages,
    # and directories.
    ! go install std@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. docs/bucket/replication/delete-replication.sh

    		echo "dc1 server logs ========="
    		cat /tmp/dc1.log
    		echo "dc2 server logs ========="
    		cat /tmp/dc2.log
    	fi
    
    	echo "Cleaning up instances of MinIO"
    	set +e
    	pkill minio
    	pkill mc
    	rm -rf /tmp/xl/
    }
    
    catch
    
    set -e
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    export MINIO_KMS_AUTO_ENCRYPTION=off
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top