Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 164 for Rm (0.04 sec)

  1. cmd/kubeadm/app/cmd/certs.go

    func fetchCertificateExpirationInfo(rm *renewal.Manager) (*outputapiv1alpha3.CertificateExpirationInfo, error) {
    	info := &outputapiv1alpha3.CertificateExpirationInfo{}
    
    	for _, handler := range rm.Certificates() {
    		if ok, _ := rm.CertificateExists(handler.Name); ok {
    			e, err := rm.GetCertificateExpirationInfo(handler.Name)
    			if err != nil {
    				return nil, err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. hack/update-codegen.sh

                kube::log::status "DBG:     $dir"
            done
        fi
    
        git_find -z \
            ':(glob)**/generated.proto' \
            ':(glob)**/generated.pb.go' \
            | xargs -0 rm -f
    
        if kube::protoc::check_protoc >/dev/null; then
          hack/_update-generated-protobuf-dockerized.sh "${apis[@]}"
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    					}
    				} else {
    					if rex&PrefixREXB != 0 {
    						rexUsed |= PrefixREXB
    						rm |= 8
    					}
    					if mod == 0 && rm&7 == 5 || rm&7 == 4 {
    						// base omitted
    					} else if mod != 3 {
    						mem.Base = baseRegForBits(addrMode) + Reg(rm)
    					}
    				}
    
    				// Consume disp32 if present.
    				if mod == 0 && (rm&7 == 5 || haveSIB && base&7 == 5) || mod == 2 {
    					if pos+4 > len(src) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //
    // - arg_Xds: a X register encoded in the Rd[4:0] field (31 is sp)
    //
    // - arg_Wn: encoded in Rn[9:5]
    //
    // - arg_Wm: encoded in Rm[20:16]
    //
    // - arg_Wm_extend__UXTB_0__UXTH_1__LSL_UXTW_2__UXTX_3__SXTB_4__SXTH_5__SXTW_6__SXTX_7__0_4:
    //     a W register encoded in Rm with an extend encoded in option[15:13] and an amount
    //     encoded in imm3[12:10] in the range [0,4].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
Back to top