Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 165 for uids (0.06 sec)

  1. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "uid": {
                "default": "",
                "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
                "type": "string"
              }
            },
            "required": [
              "apiVersion",
              "kind",
              "name",
              "uid"
            ],
            "type": "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "type": "string"
              },
              "uid": {
                "default": "",
                "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
                "type": "string"
              }
            },
            "required": [
              "apiVersion",
              "kind",
              "name",
              "uid"
            ],
            "type": "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  3. pkg/controller/resourceclaim/controller.go

    					if err != nil && !apierrors.IsNotFound(err) {
    						return err
    					}
    					if pod == nil || pod.UID != reservedFor.UID {
    						logger.V(6).Info("remove reservation because pod is gone or got replaced", "pod", klog.KObj(pod), "claim", klog.KRef(namespace, name))
    						keepEntry = false
    					}
    				case pod.UID != reservedFor.UID:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                "type": "string"
              },
              "uid": {
                "default": "",
                "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
                "type": "string"
              }
            },
            "required": [
              "apiVersion",
              "kind",
              "name",
              "uid"
            ],
            "type": "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	pod = pod.DeepCopy()
    	pod.Name = newName
    	pod.UID = types.UID(pod.Name + pod.Namespace)
    	return pod
    }
    
    func expectInFlightPods(t *testing.T, q *PriorityQueue, uids ...types.UID) {
    	t.Helper()
    	var actualUIDs []types.UID
    	for uid := range q.inFlightPods {
    		actualUIDs = append(actualUIDs, uid)
    	}
    	sortUIDs := cmpopts.SortSlices(func(a, b types.UID) bool { return a < b })
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

                "type": "string"
              },
              "uid": {
                "default": "",
                "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
                "type": "string"
              }
            },
            "required": [
              "apiVersion",
              "kind",
              "name",
              "uid"
            ],
            "type": "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

                "type": "string"
              },
              "uid": {
                "default": "",
                "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
                "type": "string"
              }
            },
            "required": [
              "apiVersion",
              "kind",
              "name",
              "uid"
            ],
            "type": "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils_test.go

    	target.SetOwnerReferences([]metav1.OwnerReference{
    		{UID: "123", Controller: ptr.To(true)},
    		{UID: "456", Controller: ptr.To(false)},
    		{UID: "789"},
    	})
    	testCases := []struct {
    		uid    types.UID
    		hasRef bool
    	}{
    		{
    			uid:    "123",
    			hasRef: true,
    		},
    		{
    			uid:    "456",
    			hasRef: true,
    		},
    		{
    			uid:    "789",
    			hasRef: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                "type": "string"
              },
              "uid": {
                "default": "",
                "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
                "type": "string"
              }
            },
            "required": [
              "apiVersion",
              "kind",
              "name",
              "uid"
            ],
            "type": "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    	// consume podSyncStatuses[uid].pendingUpdate if set.
    	podUpdates map[types.UID]chan struct{}
    	// Tracks by UID the termination status of a pod - syncing, terminating,
    	// terminated, and evicted.
    	podSyncStatuses map[types.UID]*podSyncStatus
    
    	// Tracks all uids for started static pods by full name
    	startedStaticPodsByFullname map[string]types.UID
    	// Tracks all uids for static pods that are waiting to start by full name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top