Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 224 for Rm (0.05 sec)

  1. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

      // in the ResourceMgr.
      ResourceMgr* rm = ctx->resource_manager();
      CHECK(rm);
    
      TF_ASSIGN_OR_RETURN(DeviceType compilation_device_type,
                          GetCompilationDeviceType(platform_info_.device_type()));
    
      TF_RETURN_IF_ERROR(rm->LookupOrCreate<XlaDeviceCompiler>(
          rm->default_container(), "xla_device_compiler", xla_device_compiler,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. common/Makefile.common.mk

    	@cd $(TMP)/common-files ; git rev-parse HEAD >files/common/.commonfiles.sha
    	@rm -fr common
    # istio/community has its own CONTRIBUTING.md file.
    	@CONTRIB_OVERRIDE=$(shell grep -l "istio/community/blob/master/CONTRIBUTING.md" CONTRIBUTING.md)
    	@if [ "$(CONTRIB_OVERRIDE)" != "CONTRIBUTING.md" ]; then\
    		rm $(TMP)/common-files/files/CONTRIBUTING.md;\
    	fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. hack/lib/etcd.sh

          cd "${ETCD_SCRAPE_DIR}"/.. && \
          tar czf etcd-scrapes.tgz etcd-scrapes && \
          rm -rf etcd-scrapes || :
        )
      fi
      if [[ -n "${ETCD_PID-}" ]]; then
        kill "${ETCD_PID}" &>/dev/null || :
        wait "${ETCD_PID}" &>/dev/null || :
      fi
    }
    
    kube::etcd::clean_etcd_dir() {
      if [[ -n "${ETCD_DIR-}" ]]; then
        rm -rf "${ETCD_DIR}"
      fi
    }
    
    kube::etcd::cleanup() {
      kube::etcd::stop
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. lib/time/update.bash

    #	./update.bash
    #
    # If it prints "No updates needed.", then the generated files
    # in the CL match the update.bash in the CL.
    
    # Versions to use.
    CODE=2024a
    DATA=2024a
    
    set -e
    
    cd $(dirname $0)
    rm -rf work
    mkdir work
    go build -o work/mkzip mkzip.go # build now for correct paths in build errors
    cd work
    mkdir zoneinfo
    curl -sS -L -O https://www.iana.org/time-zones/repository/releases/tzcode$CODE.tar.gz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. hack/make-rules/clean.sh

      "doc_tmp"
      "test/e2e/generated/bindata.go"
    )
    
    for item in "${CLEAN_PATTERNS[@]}"; do
      # Shellcheck wants the ":?" because of paranoia about 'rm -rf /'. It will
      # cause an error if unset, which is already true because of "nounset", but
      # belts AND suspenders is fine for this.
      rm -rf "${KUBE_ROOT:?}/${item:?}"
    done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 08 17:20:44 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top