Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for resourceNames (0.23 sec)

  1. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                  "default": "",
                  "type": "string"
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "resourceNames": {
                "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
                "items": {
                  "default": "",
                  "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

                  "default": "",
                  "type": "string"
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "resourceNames": {
                "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
                "items": {
                  "default": "",
                  "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

    metadata:
      name: calico-node
    rules:
      # Used for creating service account tokens to be used by the CNI plugin
      - apiGroups: [""]
        resources:
          - serviceaccounts/token
        resourceNames:
          - calico-cni-plugin
        verbs:
          - create
      # The CNI plugin needs to get pods, nodes, and namespaces.
      - apiGroups: [""]
        resources:
          - pods
          - nodes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    type ContainerResizePolicy struct {
    	// Name of the resource to which this resource resize policy applies.
    	// Supported values: cpu, memory.
    	ResourceName ResourceName `json:"resourceName" protobuf:"bytes,1,opt,name=resourceName,casttype=ResourceName"`
    	// Restart policy to apply when specified resource is resized.
    	// If not specified, it defaults to NotRequired.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    	resources := make(map[core.ResourceName]bool)
    	for i, p := range policyList {
    		if _, found := resources[p.ResourceName]; found {
    			allErrors = append(allErrors, field.Duplicate(fldPath.Index(i), p.ResourceName))
    		}
    		resources[p.ResourceName] = true
    		switch p.ResourceName {
    		case core.ResourceCPU, core.ResourceMemory:
    		case "":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    const (
    	// Pods, number
    	ResourcePods ResourceName = "pods"
    	// Services, number
    	ResourceServices ResourceName = "services"
    	// ReplicationControllers, number
    	ResourceReplicationControllers ResourceName = "replicationcontrollers"
    	// ResourceQuotas, number
    	ResourceQuotas ResourceName = "resourcequotas"
    	// ResourceSecrets, number
    	ResourceSecrets ResourceName = "secrets"
    	// ResourceConfigMaps, number
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_ContainerResizePolicy_To_core_ContainerResizePolicy(in *v1.ContainerResizePolicy, out *core.ContainerResizePolicy, s conversion.Scope) error {
    	out.ResourceName = core.ResourceName(in.ResourceName)
    	out.RestartPolicy = core.ResourceResizeRestartPolicy(in.RestartPolicy)
    	return nil
    }
    
    // Convert_v1_ContainerResizePolicy_To_core_ContainerResizePolicy is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_ContainerPort
    }
    
    var map_ContainerResizePolicy = map[string]string{
    	"":              "ContainerResizePolicy represents resource resize policy for the container.",
    	"resourceName":  "Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.",
    	"restartPolicy": "Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired.",
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

    message ContainerResizePolicy {
      // Name of the resource to which this resource resize policy applies.
      // Supported values: cpu, memory.
      optional string resourceName = 1;
    
      // Restart policy to apply when specified resource is resized.
      // If not specified, it defaults to NotRequired.
      optional string restartPolicy = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. cpu */
        String CRAWLER_HOTTHREAD_TYPE = "crawler.hotthread.type";
    
        /** The key of the configuration. e.g. resourceName,X-Parsed-By,Content-Encoding.*,Content-Type.*,X-TIKA.* */
        String CRAWLER_METADATA_CONTENT_EXCLUDES = "crawler.metadata.content.excludes";
    
        /** The key of the configuration. e.g. title=title:string<br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
Back to top