Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for withMaxLength (0.28 sec)

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

    			schemaGenerator: func(max *int64) *schema.Structural {
    				strType := withMaxLength(primitiveType("string", ""), max)
    				beforeLen := int64(2)
    				afterLen := int64(4)
    				objType := objectType(map[string]schema.Structural{
    					"str":    strType,
    					"before": withMaxLength(primitiveType("string", ""), &beforeLen),
    					"after":  withMaxLength(primitiveType("string", ""), &afterLen),
    				})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/jsonschemaprops.go

    	b.ExclusiveMinimum = &value
    	return b
    }
    
    // WithMaxLength sets the MaxLength 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 MaxLength field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithMaxLength(value int64) *JSONSchemaPropsApplyConfiguration {
    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

    	b.ExclusiveMinimum = &value
    	return b
    }
    
    // WithMaxLength sets the MaxLength 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 MaxLength field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithMaxLength(value int64) *JSONSchemaPropsApplyConfiguration {
    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/controller/openapi/v2/conversion_test.go

    				WithMinimum(testFloat64, true),
    		},
    		{
    			name: "maxLength",
    			in: &apiextensions.JSONSchemaProps{
    				MaxLength: &testInt64,
    			},
    			expected: new(spec.Schema).
    				WithMaxLength(testInt64),
    		},
    		{
    			name: "minLength",
    			in: &apiextensions.JSONSchemaProps{
    				MinLength: &testInt64,
    			},
    			expected: new(spec.Schema).
    				WithMinLength(testInt64),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		{
    			Rule: rule,
    		},
    	}
    	return s
    }
    
    func cloneWithRule(s *schema.Structural, rule string) *schema.Structural {
    	s = s.DeepCopy()
    	return withRulePtr(s, rule)
    }
    
    func withMaxLength(s schema.Structural, maxLength *int64) schema.Structural {
    	if s.ValueValidation == nil {
    		s.ValueValidation = &schema.ValueValidation{}
    	}
    	s.ValueValidation.MaxLength = maxLength
    	return s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top