Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for Statuses (0.56 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // ConditionStatus is the status of the condition.
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers_test.go

    	if len(podWorkers.podUpdates) != 0 {
    		t.Errorf("Incorrect number of open channels %v", len(podWorkers.podUpdates))
    	}
    	if len(podWorkers.podSyncStatuses) != 2 {
    		t.Errorf("Incorrect number of tracked statuses: %#v", podWorkers.podSyncStatuses)
    	}
    
    	for uid := range desiredPods {
    		pod := newNamedPod(string(uid), "ns", "name", false)
    		podWorkers.UpdatePod(UpdatePodOptions{
    			Pod:        pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    type ResourceScope string
    
    const (
    	ClusterScoped   ResourceScope = "Cluster"
    	NamespaceScoped ResourceScope = "Namespaced"
    )
    
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/types.go

    	// if they're rejected in PreFilter (via PreFilterResult) or Filter plugins.
    	// Nodes that pass PreFilter/Filter plugins are not included in this map.
    	// While this map may contain UnschedulableAndUnresolvable statuses, the absence of
    	// a node should be interpreted as UnschedulableAndUnresolvable.
    	NodeToStatusMap NodeToStatusMap
    	// UnschedulablePlugins are plugins that returns Unschedulable or UnschedulableAndUnresolvable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	PersistentVolumeClaimNodeResizeFailed ClaimResourceStatus = "NodeResizeFailed"
    )
    
    // +enum
    // New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately
    type PersistentVolumeClaimModifyVolumeStatus string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. pkg/scheduler/schedule_one_test.go

    				"c": framework.NewStatus(framework.UnschedulableAndUnresolvable, fmt.Sprintf("FakeExtender: node %q failed and unresolvable", "c")),
    			},
    		},
    		{
    			name: "extender may overwrite the statuses",
    			extenders: []tf.FakeExtender{
    				{
    					ExtenderName: "FakeExtender1",
    					Predicates: []tf.FitPredicate{func(pod *v1.Pod, node *framework.NodeInfo) *framework.Status {
    						if node.Node().Name == "a" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	// it later). Set the status and phase appropriately
    	runnable := kl.canRunPod(pod)
    	if !runnable.Admit {
    		// Pod is not runnable; and update the Pod and Container statuses to why.
    		if apiPodStatus.Phase != v1.PodFailed && apiPodStatus.Phase != v1.PodSucceeded {
    			apiPodStatus.Phase = v1.PodPending
    		}
    		apiPodStatus.Reason = runnable.Reason
    		apiPodStatus.Message = runnable.Message
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	PersistentVolumeClaimNodeResizeFailed ClaimResourceStatus = "NodeResizeFailed"
    )
    
    // +enum
    // New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately
    type PersistentVolumeClaimModifyVolumeStatus string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    						},
    					},
    				}},
    			},
    		},
    		core.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "foo",
    			},
    		},
    		"",
    		"Container statuses pending",
    	}, {
    		core.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "foo",
    			},
    			Status: core.PodStatus{
    				InitContainerStatuses: []core.ContainerStatus{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    		if duration < time.Second {
    			// Make sure to sleep at least a second to avoid high CPU ticks.
    			duration = time.Second
    		}
    		time.Sleep(duration)
    	}
    }
    
    // Loads bucket replication resync statuses into memory.
    func (p *ReplicationPool) loadResync(ctx context.Context, buckets []BucketInfo, objAPI ObjectLayer) error {
    	// Make sure only one node running resync on the cluster.
    	ctx, cancel := globalLeaderLock.GetLock(ctx)
    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