Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for MinItems (0.2 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/jsonschemaprops.go

    	return b
    }
    
    // WithMinItems sets the MinItems field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the MinItems field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithMinItems(value int64) *JSONSchemaPropsApplyConfiguration {
    	b.MinItems = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/adaptor.go

    	if s.Structural.ValueValidation == nil {
    		return nil
    	}
    	return s.Structural.ValueValidation.MultipleOf
    }
    
    func (s *Structural) MinItems() *int64 {
    	if s.Structural.ValueValidation == nil {
    		return nil
    	}
    	return s.Structural.ValueValidation.MinItems
    }
    
    func (s *Structural) MaxItems() *int64 {
    	if s.Structural.ValueValidation == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    		Minimum:          s.Minimum,
    		ExclusiveMinimum: s.ExclusiveMinimum,
    		MaxLength:        s.MaxLength,
    		MinLength:        s.MinLength,
    		Pattern:          s.Pattern,
    		MaxItems:         s.MaxItems,
    		MinItems:         s.MinItems,
    		UniqueItems:      s.UniqueItems,
    		MultipleOf:       s.MultipleOf,
    		MaxProperties:    s.MaxProperties,
    		MinProperties:    s.MinProperties,
    		Required:         s.Required,
    		Not:              not,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.json

                "minimum": 11.5,
                "exclusiveMinimum": true,
                "maxLength": 13,
                "minLength": 14,
                "pattern": "patternValue",
                "maxItems": 16,
                "minItems": 17,
                "uniqueItems": true,
                "multipleOf": 19.5,
                "enum": [
                  "enumValue"
                ],
                "maxProperties": 21,
                "minProperties": 22,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/common/adaptor.go

    type Validations interface {
    	Pattern() string
    	Minimum() *float64
    	IsExclusiveMinimum() bool
    	Maximum() *float64
    	IsExclusiveMaximum() bool
    	MultipleOf() *float64
    	MinItems() *int64
    	MaxItems() *int64
    	MinLength() *int64
    	MaxLength() *int64
    	MinProperties() *int64
    	MaxProperties() *int64
    	Required() []string
    	Enum() []any
    	Nullable() bool
    	UniqueItems() bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/jsonschemaprops.go

    	return b
    }
    
    // WithMinItems sets the MinItems field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the MinItems field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithMinItems(value int64) *JSONSchemaPropsApplyConfiguration {
    	b.MinItems = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    	out.Minimum = in.Minimum
    	out.ExclusiveMinimum = in.ExclusiveMinimum
    	out.MaxLength = in.MaxLength
    	out.MinLength = in.MinLength
    	out.Pattern = in.Pattern
    	out.MaxItems = in.MaxItems
    	out.MinItems = in.MinItems
    	out.UniqueItems = in.UniqueItems
    	out.MultipleOf = in.MultipleOf
    	out.MaxProperties = in.MaxProperties
    	out.MinProperties = in.MinProperties
    	out.Required = in.Required
    
    	if in.Default != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	Pattern          string   `json:"pattern,omitempty" protobuf:"bytes,15,opt,name=pattern"`
    	MaxItems         *int64   `json:"maxItems,omitempty" protobuf:"bytes,16,opt,name=maxItems"`
    	MinItems         *int64   `json:"minItems,omitempty" protobuf:"bytes,17,opt,name=minItems"`
    	UniqueItems      bool     `json:"uniqueItems,omitempty" protobuf:"bytes,18,opt,name=uniqueItems"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	Pattern          string   `json:"pattern,omitempty" protobuf:"bytes,15,opt,name=pattern"`
    	MaxItems         *int64   `json:"maxItems,omitempty" protobuf:"bytes,16,opt,name=maxItems"`
    	MinItems         *int64   `json:"minItems,omitempty" protobuf:"bytes,17,opt,name=minItems"`
    	UniqueItems      bool     `json:"uniqueItems,omitempty" protobuf:"bytes,18,opt,name=uniqueItems"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	Maximum          *float64
    	ExclusiveMaximum bool
    	Minimum          *float64
    	ExclusiveMinimum bool
    	MaxLength        *int64
    	MinLength        *int64
    	Pattern          string
    	MaxItems         *int64
    	MinItems         *int64
    	UniqueItems      bool
    	MultipleOf       *float64
    	Enum             []JSON
    	MaxProperties    *int64
    	MinProperties    *int64
    	Required         []string
    	AllOf            []NestedValueValidation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top