Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for nameCell (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    		flowcontrol.FlowDistinguisherMethodByUserType,
    		flowcontrol.PolicyRulesWithSubjects{
    			Subjects: append(
    				users(user.KubeControllerManager, user.KubeScheduler),
    				kubeSystemServiceAccount(flowcontrol.NameAll)...),
    			ResourceRules: []flowcontrol.ResourcePolicyRule{
    				resourceRule(
    					[]string{"get", "create", "update"},
    					[]string{coordinationv1.GroupName},
    					[]string{"leases"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/validation/validation.go

    	}
    	if len(subject.Name) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("name"), ""))
    	} else if subject.Name != flowcontrol.NameAll {
    		for _, msg := range apimachineryvalidation.ValidateServiceAccountName(subject.Name, false) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("name"), subject.Name, msg))
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/types.go

    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // These are valid wildcards.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    	NameAll        = "*"
    
    	NamespaceEvery = "*" // matches every particular namespace
    )
    
    // System preset priority level names
    const (
    	PriorityLevelConfigurationNameExempt   = "exempt"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    package v1beta1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // These are valid wildcards.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    	NameAll        = "*"
    
    	NamespaceEvery = "*" // matches every particular namespace
    )
    
    // System preset priority level names
    const (
    	PriorityLevelConfigurationNameExempt   = "exempt"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1/types.go

    package v1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // These are valid wildcards.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    	NameAll        = "*"
    
    	NamespaceEvery = "*" // matches every particular namespace
    )
    
    // System preset priority level names
    const (
    	PriorityLevelConfigurationNameExempt   = "exempt"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    package v1beta2
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // These are valid wildcards.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    	NameAll        = "*"
    
    	NamespaceEvery = "*" // matches every particular namespace
    )
    
    // System preset priority level names
    const (
    	PriorityLevelConfigurationNameExempt   = "exempt"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    package v1beta3
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // These are valid wildcards.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    	NameAll        = "*"
    
    	NamespaceEvery = "*" // matches every particular namespace
    )
    
    // System preset priority level names
    const (
    	PriorityLevelConfigurationNameExempt   = "exempt"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
Back to top