Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newStructValue (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/value.go

    // whitespace as well as a raw form which preserves whitespace.
    type MultilineStringValue struct {
    	Value string
    	Raw   string
    }
    
    func newStructValue() *structValue {
    	return &structValue{
    		Fields:   []*Field{},
    		fieldMap: map[string]*Field{},
    	}
    }
    
    type structValue struct {
    	Fields   []*Field
    	fieldMap map[string]*Field
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
Back to top