Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 229 for Rm (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. deploy_website.sh

    # https://squidfunk.github.io/mkdocs-material/
    # It requires python3 to run.
    
    set -ex
    
    REPO="******@****.***:square/okhttp.git"
    DIR=temp-clone
    
    # Delete any existing temporary website clone
    rm -rf $DIR
    
    # Clone the current repo into temp folder
    git clone $REPO $DIR
    # Replace `git clone` with these lines to hack on the website locally
    # cp -a . "../okhttp-website"
    # mv "../okhttp-website" "$DIR"
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_launch_util_gpu_test.cc

                            const gtl::ArraySlice<T> data) {
        Var* var = CreateVariable<T>(name, shape, data);
        ResourceMgr* rm = device_->resource_manager();
        TF_ASSERT_OK(rm->Create(rm->default_container(), name, var));
    
        ResourceHandle handle;
        handle.set_device(device_->name());
        handle.set_container(rm->default_container());
        handle.set_name(name);
        TypeIndex type_index = TypeIndex::Make<Var>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/jit/pjrt_compile_util.h

    // Instead, it takes the following arguments that are obtained from
    // OpKernelContext in the above function.
    // - `device`: the device used to compile the function.
    // - `rm`: the resource manager for DeviceCompiler to store JIT-compiled XLA
    // computation.
    // - `flr`: the FunctionLibraryRuntime for the `function`.
    Status CompileToPjRtLoadedExecutable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top