Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for MinItems (0.19 sec)

  1. tests/test_tuples.py

                                        {
                                            "title": "Square",
                                            "maxItems": 2,
                                            "minItems": 2,
                                            "type": "array",
                                            "prefixItems": [
                                                {"$ref": "#/components/schemas/Coordinate"},
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

    			name: "maxItems",
    			in: &apiextensions.JSONSchemaProps{
    				MaxItems: &testInt64,
    			},
    			expected: new(spec.Schema).
    				WithMaxItems(testInt64),
    		},
    		{
    			name: "minItems",
    			in: &apiextensions.JSONSchemaProps{
    				MinItems: &testInt64,
    			},
    			expected: new(spec.Schema).
    				WithMinItems(testInt64),
    		},
    		{
    			name: "uniqueItems",
    			in: &apiextensions.JSONSchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  8. fastapi/openapi/models.py

        maxLength: Optional[int] = Field(default=None, ge=0)
        minLength: Optional[int] = Field(default=None, ge=0)
        pattern: Optional[str] = None
        maxItems: Optional[int] = Field(default=None, ge=0)
        minItems: Optional[int] = Field(default=None, ge=0)
        uniqueItems: Optional[bool] = None
        maxContains: Optional[int] = Field(default=None, ge=0)
        minContains: Optional[int] = Field(default=None, ge=0)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (1)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      optional bool exclusiveMinimum = 12;
    
      optional int64 maxLength = 13;
    
      optional int64 minLength = 14;
    
      optional string pattern = 15;
    
      optional int64 maxItems = 16;
    
      optional int64 minItems = 17;
    
      optional bool uniqueItems = 18;
    
      optional double multipleOf = 19;
    
      // +listType=atomic
      repeated JSON enum = 20;
    
      optional int64 maxProperties = 21;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top