Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MaxProperties (0.65 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    	}
    	s.ValueValidation.MaxItems = maxItems
    	return s
    }
    
    func withMaxProperties(s schema.Structural, maxProperties *int64) schema.Structural {
    	if s.ValueValidation == nil {
    		s.ValueValidation = &schema.ValueValidation{}
    	}
    	s.ValueValidation.MaxProperties = maxProperties
    	return s
    }
    
    func withDefault(dflt interface{}, s schema.Structural) schema.Structural {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "format": "int64",
                "type": "integer"
              },
              "maxLength": {
                "format": "int64",
                "type": "integer"
              },
              "maxProperties": {
                "format": "int64",
                "type": "integer"
              },
              "maximum": {
                "format": "double",
                "type": "number"
              },
              "minItems": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
Back to top