Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for valid (1.27 sec)

  1. pkg/apis/core/validation/validation.go

    	return allErrs
    }
    
    // ValidateNameFunc validates that the provided name is valid for a given resource type.
    // Not all resources have the same validation rules for names. Prefix is true
    // if the name will have a value appended to it.  If the name is not valid,
    // this returns a list of descriptions of individual characteristics of the
    // value that were not valid.  Otherwise this returns an empty list or nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    		errMsg          string
    	}{
    		{
    			name:            "Valid .a",
    			fieldPath:       ".a",
    			pathOfFieldPath: path,
    			schema:          &schema,
    		},
    		{
    			name:            "Valid .a.b",
    			fieldPath:       ".a.bbb",
    			pathOfFieldPath: path,
    			schema:          &schema,
    		},
    		{
    			name:            "Valid .foo.f1",
    			fieldPath:       ".foo.f1",
    			pathOfFieldPath: path,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// +optional
    	Namespace *string
    }
    
    // PersistentVolumeClaimConditionType defines the condition of PV claim.
    // Valid values are either "Resizing" or "FileSystemResizePending".
    type PersistentVolumeClaimConditionType string
    
    // These are valid conditions of Pvc
    const (
    	// An user trigger resize of pvc has been started
    	PersistentVolumeClaimResizing PersistentVolumeClaimConditionType = "Resizing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

              "cidr": {
                "default": "",
                "description": "cidr is a string representing the IPBlock Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\"",
                "type": "string"
              },
              "except": {
                "description": "except is a slice of CIDRs that should not be included within an IPBlock Valid examples are \"192.168.1.0/24\" or \"2001:db8::/64\" Except values will be rejected if they are outside the cidr range",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

                "description": "The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "string"
              },
              "operator": {
                "default": "",
                "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
                "type": "string"
              },
              "values": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "scope": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                  \n The API object must be valid in the cluster; the
                                  Group and Kind must be registered in the cluster for
                                  this reference to be valid. \n References to objects
                                  with invalid Group and Kind are not valid, and must
                                  be rejected by the implementation, with appropriate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

    or the field value is the reserved string `kubernetes.io/job-controller`, but skips reconciling Jobs with a custom value for this field. The value must be a valid domain-prefixed path (e.g. acme.io/foo) - all characters before the first \"/\" must be a valid subdomain as defined by RFC 1123. All characters trailing the first \"/\" must be valid HTTP Path characters as defined by RFC 3986. The value cannot exceed 63 characters. This field is immutable.\n\nThis field is alpha-level. The job controller...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// If specified, this must be a valid port number, 0 < x < 65536.
    	// If HostNetwork is specified, this must match ContainerPort.
    	// Most containers do not need this.
    	// +optional
    	HostPort int32 `json:"hostPort,omitempty" protobuf:"varint,2,opt,name=hostPort"`
    	// Number of port to expose on the pod's IP address.
    	// This must be a valid port number, 0 < x < 65536.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top