Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 164 for Rm (0.07 sec)

  1. src/make.rc

    # Bootstrap installs a proper cmd/dist, built with the new toolchain.
    # Throw ours, built with the bootstrap toolchain, away after bootstrap.
    ./cmd/dist/dist bootstrap -a $vflag $*
    rm -f ./cmd/dist/dist
    
    # DO NOT ADD ANY NEW CODE HERE.
    # The bootstrap+rm above are the final step of make.rc.
    # If something must be added, add it to cmd/dist's cmdbootstrap,
    # to avoid needing three copies in three different shell languages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. buildscripts/verify-healing.sh

    fi
    
    WORK_DIR="$PWD/.verify-$RANDOM"
    MINIO_CONFIG_DIR="$WORK_DIR/.minio"
    MINIO=("$PWD/minio" --config-dir "$MINIO_CONFIG_DIR" server)
    GOPATH=/tmp/gopath
    
    function start_minio_3_node() {
    	for i in $(seq 1 3); do
    		rm "${WORK_DIR}/dist-minio-server$i.log"
    	done
    
    	export MINIO_ROOT_USER=minio
    	export MINIO_ROOT_PASSWORD=minio123
    	export MINIO_ERASURE_SET_DRIVE_COUNT=6
    	export MINIO_CI_CD=1
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. docs/site-replication/run-multi-site-oidc.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
    - 8.5K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              # This is a horrible idea for production images, but these are just for tests.
              [[ -f /tmp/istio-sidecar.rpm ]] && sudo rpm -vi /tmp/istio-sidecar.rpm && sudo rm /tmp/istio-sidecar.rpm
              [[ -f /tmp/istio-sidecar.deb ]] && sudo dpkg -i /tmp/istio-sidecar.deb && sudo rm /tmp/istio-sidecar.deb
    
              # Read root cert from and place signed certs here (can't mount directly or the dir would be unwritable)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/variable_info_util.cc

    namespace tensorflow {
    
    Status GetVariableInfosFromInputs(ResourceMgr* rm, DeviceBase* dev,
                                      absl::Span<const Tensor* const> inputs,
                                      absl::Span<const int> variable_indices,
                                      std::vector<VariableInfo>* result) {
      return GetVariableInfosFromInputs(rm, dev, inputs, variable_indices, nullptr,
                                        result);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. hack/verify-vendor.sh

      # make go module dirs writeable
      chmod -R +w "${_tmpdir}"
      if [ "${KEEP_TMP}" == "true" ]; then
        echo "Leaving ${_tmpdir} for you to examine or copy. Please delete it manually when finished. (rm -rf ${_tmpdir})"
      else
        echo "Removing ${_tmpdir}"
        rm -rf "${_tmpdir}"
      fi
    }
    kube::util::trap_add cleanup EXIT
    
    # Copy the contents of the kube directory into the nice clean place (which is NOT shaped like a GOPATH)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/crypto/internal/boring/Dockerfile

    RUN \
    	wget https://github.com/ninja-build/ninja/archive/refs/tags/v$NinjaV.tar.gz && \
    	echo "$NinjaH v$NinjaV.tar.gz" >sha && sha256sum -c sha && \
    	tar -xzf v$NinjaV.tar.gz && \
    	rm v$NinjaV.tar.gz && \
    	cd ninja-$NinjaV && \
    	CC=clang-$ClangV CXX=clang++-$ClangV ./configure.py --bootstrap && \
    	mv ninja /usr/local/bin/
    
    # Download, validate, unpack, and install Go.
    ARG GOARCH
    ENV GoV=1.16.5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure.sh

        log-wrap "InstallCredentialProvider" install-auth-provider-gcp
      fi
      # Install crictl on each node.
      log-wrap "InstallCrictl" install-crictl
    
      # Clean up.
      rm -rf "${KUBE_HOME}/kubernetes"
      rm -f "${KUBE_HOME}/${server_binary_tar}"
      rm -f "${KUBE_HOME}/${server_binary_tar}.sha512"
    }
    
    
    # This function detects the platform/arch of the machine where the script runs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  9. cmd/metrics-resource.go

    	}
    }
    
    func prepareResourceMetrics(rm ResourceMetric, subSys MetricSubsystem, requireAvgMax bool) []MetricV2 {
    	help := resourceMetricsHelpMap[rm.Name]
    	name := rm.Name
    	metrics := make([]MetricV2, 0, 3)
    	metrics = append(metrics, MetricV2{
    		Description:    getResourceMetricDescription(subSys, name, help),
    		Value:          rm.Current,
    		VariableLabels: cloneMSS(rm.Labels),
    	})
    
    	if requireAvgMax {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. hack/update-openapi-spec.sh

    mkdir -p "${OPENAPI_ROOT_DIR}/v3"
    # clean up folder, note that some files start with dot like
    # ".well-known__openid-configuration_openapi.json"
    rm -r "${OPENAPI_ROOT_DIR}"/v3/{*,.*} || true
    
    rm -rf "${OPENAPI_ROOT_DIR}/v3/*"
    curl -w "\n" -kfsS -H 'Authorization: Bearer dummy_token' \
      "https://${API_HOST}:${API_PORT}/openapi/v3" \
      | jq -r '.paths | to_entries | .[].key' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top