Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for exclusiveMaximum (0.6 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.json

            "description": "descriptionValue",
            "type": "typeValue",
            "format": "formatValue",
            "title": "titleValue",
            "default": "defaultValue",
            "maximum": 9.5,
            "exclusiveMaximum": true,
            "minimum": 11.5,
            "exclusiveMinimum": true,
            "maxLength": 13,
            "minLength": 14,
            "pattern": "patternValue",
            "maxItems": 16,
            "minItems": 17,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi.go

    	}
    }
    
    func (v *ValueValidation) toKubeOpenAPI(ret *spec.Schema) {
    	if v == nil {
    		return
    	}
    
    	ret.Format = v.Format
    	ret.Maximum = v.Maximum
    	ret.ExclusiveMaximum = v.ExclusiveMaximum
    	ret.Minimum = v.Minimum
    	ret.ExclusiveMinimum = v.ExclusiveMinimum
    	ret.MaxLength = v.MaxLength
    	ret.MinLength = v.MinLength
    	ret.Pattern = v.Pattern
    	ret.MaxItems = v.MaxItems
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.yaml

            definitionsKey: {}
          dependencies:
            dependenciesKey:
            - <no json tag> PropertyValue
          description: descriptionValue
          enum:
          - enumValue
          example: exampleValue
          exclusiveMaximum: true
          exclusiveMinimum: true
          externalDocs:
            description: descriptionValue
            url: urlValue
          format: formatValue
          id: idValue
          items:
          - {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. tests/test_application.py

                            {
                                "required": True,
                                "schema": {
                                    "title": "Item Id",
                                    "exclusiveMaximum": 3.0,
                                    "type": "number",
                                },
                                "name": "item_id",
                                "in": "path",
                            }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    	}
    	not, err := newNestedValueValidation(s.Not)
    	if err != nil {
    		return nil, err
    	}
    	v := &ValueValidation{
    		Format:           s.Format,
    		Maximum:          s.Maximum,
    		ExclusiveMaximum: s.ExclusiveMaximum,
    		Minimum:          s.Minimum,
    		ExclusiveMinimum: s.ExclusiveMinimum,
    		MaxLength:        s.MaxLength,
    		MinLength:        s.MinLength,
    		Pattern:          s.Pattern,
    		MaxItems:         s.MaxItems,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.yaml

            dependencies:
              dependenciesKey:
              - <no json tag> PropertyValue
            description: descriptionValue
            enum:
            - enumValue
            example: exampleValue
            exclusiveMaximum: true
            exclusiveMinimum: true
            externalDocs:
              description: descriptionValue
              url: urlValue
            format: formatValue
            id: idValue
            items:
            - {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/jsonschemaprops.go

    	Default                *v1.JSON                                     `json:"default,omitempty"`
    	Maximum                *float64                                     `json:"maximum,omitempty"`
    	ExclusiveMaximum       *bool                                        `json:"exclusiveMaximum,omitempty"`
    	Minimum                *float64                                     `json:"minimum,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/jsonschemaprops.go

    	Default                *v1beta1.JSON                                `json:"default,omitempty"`
    	Maximum                *float64                                     `json:"maximum,omitempty"`
    	ExclusiveMaximum       *bool                                        `json:"exclusiveMaximum,omitempty"`
    	Minimum                *float64                                     `json:"minimum,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.json

                "type": "typeValue",
                "format": "formatValue",
                "title": "titleValue",
                "default": "defaultValue",
                "maximum": 9.5,
                "exclusiveMaximum": true,
                "minimum": 11.5,
                "exclusiveMinimum": true,
                "maxLength": 13,
                "minLength": 14,
                "pattern": "patternValue",
                "maxItems": 16,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/main/config/openapi/openapi-user.yaml

              required: false
              schema:
                type: integer
                minimum: 0
                exclusiveMinimum: false
                maximum: 100
                exclusiveMaximum: false
                default: 20
                example: 20
            - name: sort
              in: query
              description: Sorted field name
              required: false
              schema:
                type: string
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top