Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for uids (0.06 sec)

  1. pkg/kubelet/pod_workers_test.go

    	}
    	for _, uid := range uids {
    		if _, ok := w.holds[uid]; !ok {
    			w.holds[uid] = make(chan struct{})
    		}
    	}
    }
    
    func (w *timeIncrementingWorkers) ReleaseWorkers(uids ...types.UID) {
    	w.lock.Lock()
    	defer w.lock.Unlock()
    	w.ReleaseWorkersUnderLock(uids...)
    }
    
    func (w *timeIncrementingWorkers) ReleaseWorkersUnderLock(uids ...types.UID) {
    	for _, uid := range uids {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    	}
    	return true
    }
    
    func filterInUncountedUIDs(uncounted []types.UID, include sets.Set[string]) []types.UID {
    	var newUncounted []types.UID
    	for _, uid := range uncounted {
    		if include.Has(string(uid)) {
    			newUncounted = append(newUncounted, uid)
    		}
    	}
    	return newUncounted
    }
    
    // newFailedConditionForFailureTarget creates a job Failed condition based on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"uid":                        "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    // Make sure there are no two workloads in the index with similar UIDs
    func (s *ambientTestServer) assertUniqueWorkloads(t *testing.T) {
    	t.Helper()
    	uids := sets.New[string]()
    	workloads := s.lookup("")
    	for _, wl := range workloads {
    		if wl.GetWorkload() != nil && uids.InsertContains(wl.GetWorkload().GetUid()) {
    			t.Fatal("Index has workloads with the same UID")
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Name of the referent.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
      optional string name = 3;
    
      // UID of the referent.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
      optional string uid = 4;
    
      // If true, this reference points to the managing controller.
      // +optional
      optional bool controller = 6;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Name of the referent.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
      optional string name = 3;
    
      // UID of the referent.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
      optional string uid = 4;
    
      // If true, this reference points to the managing controller.
      // +optional
      optional bool controller = 6;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "uid": {
              "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids",
              "type": "string"
            }
          }
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authorization.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: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	Name string `json:"name" protobuf:"bytes,3,opt,name=name"`
    	// UID of the referent.
    	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids
    	UID types.UID `json:"uid" protobuf:"bytes,4,opt,name=uid,casttype=k8s.io/apimachinery/pkg/types.UID"`
    	// If true, this reference points to the managing controller.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  10. 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)
Back to top