Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsExclusiveMinimum (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/common/adaptor.go

    	WithTypeAndObjectMeta() Schema
    }
    
    // Validations contains OpenAPI validation that the CEL library uses.
    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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/openapi/adaptor.go

    }
    
    func (s *Schema) Default() any {
    	return s.Schema.Default
    }
    
    func (s *Schema) Minimum() *float64 {
    	return s.Schema.Minimum
    }
    
    func (s *Schema) IsExclusiveMinimum() bool {
    	return s.Schema.ExclusiveMinimum
    }
    
    func (s *Schema) Maximum() *float64 {
    	return s.Schema.Maximum
    }
    
    func (s *Schema) IsExclusiveMaximum() bool {
    	return s.Schema.ExclusiveMaximum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/adaptor.go

    }
    
    func (s *Structural) Minimum() *float64 {
    	if s.Structural.ValueValidation == nil {
    		return nil
    	}
    	return s.Structural.ValueValidation.Minimum
    }
    
    func (s *Structural) IsExclusiveMinimum() bool {
    	if s.Structural.ValueValidation == nil {
    		return false
    	}
    	return s.Structural.ValueValidation.ExclusiveMinimum
    }
    
    func (s *Structural) Maximum() *float64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top