Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 165 for uids (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/apis/batch/types.go

    type UncountedTerminatedPods struct {
    	// succeeded holds UIDs of succeeded Pods.
    	// +listType=set
    	// +optional
    	Succeeded []types.UID
    
    	// failed holds UIDs of failed Pods.
    	// +listType=set
    	// +optional
    	Failed []types.UID
    }
    
    // JobConditionType is a valid value for JobCondition.Type
    type JobConditionType string
    
    // These are valid conditions of a job.
    const (
    	// JobSuspended means the job has been suspended.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. 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)
  10. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_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)
Back to top