Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for Reserve (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    GetTPUDevices(ParsedDevices devices,
                  llvm::ArrayRef<ParsedDevice> system_devices) {
      llvm::SmallVector<llvm::SmallVector<ParsedDevice, 8>, 8> tpu_devices;
      tpu_devices.reserve(system_devices.size());
    
      auto lookup = [&devices](ParsedDevice device_spec) {
        device_spec.has_type = true;
        device_spec.type = kDeviceTPU;
        // Enumerate all the available TPUs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		// NOTE: this means Istio reserves the word "none" in this field with a special meaning
    		//   a waypoint named "none" cannot be used and will be ignored
    		//   also reserve anything with suffix "/none" to prevent use of "namespace/none" as a work around
    		// ~ is used in other portions of the API, reserve it with special meaning although it's unlikely to be documented
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

      MlirOptimizationPassState overall_state = MlirOptimizationPassState::Disabled;
    
      // Cache per pass state and reuse it during pass execution.
      std::vector<MlirOptimizationPassState> per_pass_state;
      per_pass_state.reserve(registry_->passes().size());
    
      int num_passes_enabled = 0, num_passes_disabled = 0,
          num_passes_fallback_enabled = 0;
      for (const auto& pass_registration : registry_->passes()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/qos_container_manager_linux.go

    	// update qos cgroup tiers on startup and in periodic intervals
    	// to ensure desired state is in sync with actual state.
    	go wait.Until(func() {
    		err := m.UpdateCgroups()
    		if err != nil {
    			klog.InfoS("Failed to reserve QoS requests", "err", err)
    		}
    	}, periodicQOSCgroupUpdateInterval, wait.NeverStop)
    
    	return nil
    }
    
    // setHugePagesUnbounded ensures hugetlb is effectively unbounded
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/types.go

    	// UnschedulablePlugins records the plugin names that the Pod failed with Unschedulable or UnschedulableAndUnresolvable status.
    	// It's registered only when the Pod is rejected in PreFilter, Filter, Reserve, PreBind or Permit (WaitOnPermit).
    	UnschedulablePlugins sets.Set[string]
    	// PendingPlugins records the plugin names that the Pod failed with Pending status.
    	PendingPlugins sets.Set[string]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    	suffix    []byte // ring buffer once len(suffix) == N
    	suffixOff int    // offset to write into suffix
    	skipped   int64
    
    	// TODO(bradfitz): we could keep one large []byte and use part of it for
    	// the prefix, reserve space for the '... Omitting N bytes ...' message,
    	// then the ring buffer suffix, and just rearrange the ring buffer
    	// suffix when Bytes() is called, but it doesn't seem worth it for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    	// the function entry map is index 0. Conveniently, layout
    	// already ensured that the entry block is first.
    	if lv.f.Entry != lv.f.Blocks[0] {
    		lv.f.Fatalf("entry block must be first")
    	}
    
    	{
    		// Reserve an entry for function entry.
    		live := bitvec.New(nvars)
    		lv.livevars = append(lv.livevars, live)
    	}
    
    	for _, b := range lv.f.Blocks {
    		be := lv.blockEffects(b)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.proto

      Locality locality = 24;
    
      // Reservations for deleted fields.
      reserved 15;
    }
    
    message Locality {
      string region = 1;
      string zone = 2;
      string subzone = 3;
    }
    
    enum WorkloadStatus {
      // Workload is healthy and ready to serve traffic.
      HEALTHY = 0;
      // Workload is unhealthy and NOT ready to serve traffic.
      UNHEALTHY = 1;
    }
    
    enum WorkloadType {
      DEPLOYMENT = 0;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation_resourceclaim_test.go

    							Resource: "pods",
    							Name:     "foo",
    							UID:      "1",
    						})
    				}
    				return claim
    			},
    		},
    		"invalid-reserved-for-not-shared": {
    			wantFailures: field.ErrorList{field.Forbidden(field.NewPath("status", "reservedFor"), "may not be reserved more than once")},
    			oldClaim: func() *resource.ResourceClaim {
    				claim := validAllocatedClaim.DeepCopy()
    				claim.Status.Allocation.Shareable = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

                    // TODO - should preserve information about the source, for diagnostics at execution time
                    writeByte(1)
                }
    
                value.hasFixedValue() && sideEffect == null -> {
                    // Can serialize a fixed value and discard the provider
                    // TODO - should preserve information about the source, for diagnostics at execution time
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top