Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for gStates (0.23 sec)

  1. pkg/printers/internalversion/printers.go

    	var states []string
    	if obj.DeletionTimestamp != nil {
    		states = append(states, "deleted")
    	}
    	if obj.Status.Allocation == nil {
    		if obj.DeletionTimestamp == nil {
    			states = append(states, "pending")
    		}
    	} else {
    		states = append(states, "allocated")
    		if len(obj.Status.ReservedFor) > 0 {
    			states = append(states, "reserved")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	defer destroyFunc()
    
    	afterWasCalled := false
    	registry.AfterDelete = func(obj runtime.Object, options *metav1.DeleteOptions) {
    		afterWasCalled = true
    	}
    
    	gcStates := []bool{true, false}
    	for _, gcEnabled := range gcStates {
    		t.Logf("garbage collection enabled: %t", gcEnabled)
    		registry.EnableGarbageCollection = gcEnabled
    
    		afterWasCalled = false // reset
    
    		// create pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      const int num_states = op.getOutputShapes().size();
      const int num_captured_arguments = op.getNumOperands() - 1 - num_states;
    
      // If input_elements is undefined, we can still infer the shapes for the
      // states and captured arguments.
      int num_input_elements;
      auto input_types = llvm::to_vector<1>(
          cast<FunctionOpInterface>(f.getOperation()).getArgumentTypes());
      if (input_elements) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    		}
    	}
    
    	// Compute and update the status in cache once the pods are no longer running.
    	// The computation is done here to ensure the pod status used for it contains
    	// information about the container end states (including exit codes) - when
    	// SyncTerminatedPod is called the containers may already be removed.
    	apiPodStatus = kl.generateAPIPodStatus(pod, podStatus, true)
    	kl.statusManager.SetPodStatus(pod, apiPodStatus)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    // is specified) enabled.
    // Similar to bucket replication for PUT operation, soft delete (a.k.a setting delete marker) and
    // permanent deletes (by specifying a version ID in the delete operation) have three states "Pending", "Complete"
    // and "Failed" to mark the status of the replication of "DELETE" operation. All failed operations can
    // then be retried by healing. In the case of permanent deletes, until the replication is completed on the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top