Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 257 for uids (0.07 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/controller_utils.go

    	u.uidStoreLock.Lock()
    	defer u.uidStoreLock.Unlock()
    
    	uids := u.GetUIDs(rcKey)
    	if uids != nil && uids.Has(deleteKey) {
    		logger.V(4).Info("Controller received delete for pod", "controller", rcKey, "key", deleteKey)
    		u.ControllerExpectationsInterface.DeletionObserved(logger, rcKey)
    		uids.Delete(deleteKey)
    	}
    }
    
    // DeleteExpectations deletes the UID set and invokes DeleteExpectations on the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authentication/v1beta1/types_swagger_doc_generated.go

    	"username": "The name that uniquely identifies this user among all active users.",
    	"uid":      "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.",
    	"groups":   "The names of groups this user is a part of.",
    	"extra":    "Any additional information provided by the authenticator.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1beta1/generated.proto

      optional string username = 1;
    
      // A unique value that identifies this user across time. If this user is
      // deleted and another user by the same name is added, they will have
      // different UIDs.
      // +optional
      optional string uid = 2;
    
      // The names of groups this user is a part of.
      // +optional
      // +listType=atomic
      repeated string groups = 3;
    
      // Any additional information provided by the authenticator.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/authentication/v1beta1/generated.proto

      optional string username = 1;
    
      // A unique value that identifies this user across time. If this user is
      // deleted and another user by the same name is added, they will have
      // different UIDs.
      // +optional
      optional string uid = 2;
    
      // The names of groups this user is a part of.
      // +optional
      repeated string groups = 3;
    
      // Any additional information provided by the authenticator.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	return map_SuccessPolicyRule
    }
    
    var map_UncountedTerminatedPods = map[string]string{
    	"":          "UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't been accounted in Job status counters.",
    	"succeeded": "succeeded holds UIDs of succeeded Pods.",
    	"failed":    "failed holds UIDs of failed Pods.",
    }
    
    func (UncountedTerminatedPods) SwaggerDoc() map[string]string {
    	return map_UncountedTerminatedPods
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authentication/v1beta1/types.go

    	// A unique value that identifies this user across time. If this user is
    	// deleted and another user by the same name is added, they will have
    	// different UIDs.
    	// +optional
    	UID string `json:"uid,omitempty" protobuf:"bytes,2,opt,name=uid"`
    	// The names of groups this user is a part of.
    	// +optional
    	// +listType=atomic
    	Groups []string `json:"groups,omitempty" protobuf:"bytes,3,rep,name=groups"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/generated.proto

      optional int32 succeededCount = 2;
    }
    
    // UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't
    // been accounted in Job status counters.
    message UncountedTerminatedPods {
      // succeeded holds UIDs of succeeded Pods.
      // +listType=set
      // +optional
      repeated string succeeded = 1;
    
      // failed holds UIDs of failed Pods.
      // +listType=set
      // +optional
      repeated string failed = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authentication.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: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/authentication/v1/generated.proto

      optional string username = 1;
    
      // A unique value that identifies this user across time. If this user is
      // deleted and another user by the same name is added, they will have
      // different UIDs.
      // +optional
      optional string uid = 2;
    
      // The names of groups this user is a part of.
      // +optional
      repeated string groups = 3;
    
      // Any additional information provided by the authenticator.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top