Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 140 for Enumerated (0.42 sec)

  1. staging/src/k8s.io/api/authorization/v1/generated.proto

      // +listType=atomic
      repeated string verbs = 1;
    
      // APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of
      // the enumerated resources in any API group will be allowed.  "*" means all.
      // +optional
      // +listType=atomic
      repeated string apiGroups = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. plugin/pkg/admission/limitranger/admission_test.go

    		t.Errorf("Expected no annotation but got %v", a)
    	}
    }
    
    func TestMergePodResourceRequirements(t *testing.T) {
    	limitRange := validLimitRange()
    
    	// pod with no resources enumerated should get each resource from default request
    	expected := getResourceRequirements(getComputeResourceList("", ""), getComputeResourceList("", ""))
    	pod := validPod("empty-resources", 1, expected)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/authorization/v1/generated.proto

      repeated string verbs = 1;
    
      // APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of
      // the enumerated resources in any API group will be allowed.  "*" means all.
      // +optional
      repeated string apiGroups = 2;
    
      // Resources is a list of resources this rule applies to.  "*" means all in the specified apiGroups.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

      // +listType=atomic
      repeated string verbs = 1;
    
      // APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of
      // the enumerated resources in any API group will be allowed.  "*" means all.
      // +optional
      // +listType=atomic
      repeated string apiGroups = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. ci/official/utilities/code_check_full.bats

    # the dependencies of that target which include a license notice file are then
    # included when generating that license. Necessary because the license targets
    # in TensorFlow are manually enumerated rather than generated automatically.
    do_external_licenses_check(){
      BUILD_TARGET="$1"
      LICENSES_TARGET="$2"
    
      # grep patterns for targets which are allowed to be missing from the licenses
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/qos_container_manager_linux.go

    		}
    
    		// containerConfig object stores the cgroup specifications
    		containerConfig := &CgroupConfig{
    			Name:               containerName,
    			ResourceParameters: resourceParameters,
    		}
    
    		// for each enumerated huge page size, the qos tiers are unbounded
    		m.setHugePagesUnbounded(containerConfig)
    
    		// check if it exists
    		if !cm.Exists(containerName) {
    			if err := cm.Create(containerConfig); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1/types.go

    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    	// APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of
    	// the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    	// APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of
    	// the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. internal/logger/logger.go

    )
    
    // HighwayHash key for logging in anonymous mode
    var magicHighwayHash256Key = []byte("\x4b\xe7\x34\xfa\x8e\x23\x8a\xcd\x26\x3e\x83\xe6\xbb\x96\x85\x52\x04\x0f\x93\x5d\xa3\x9f\x44\x14\x97\xe0\x9d\x13\x22\xde\x36\xa0")
    
    // Enumerated level types
    const (
    	// Log types errors
    	FatalKind   = madmin.LogKindFatal
    	WarningKind = madmin.LogKindWarning
    	ErrorKind   = madmin.LogKindError
    	EventKind   = madmin.LogKindEvent
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1/types.go

    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    	// APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of
    	// the enumerated resources in any API group will be allowed.  "*" means all.
    	// +optional
    	// +listType=atomic
    	APIGroups []string `json:"apiGroups,omitempty" protobuf:"bytes,2,rep,name=apiGroups"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top