Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewMapValue (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy_test.go

    	"k8s.io/apiserver/pkg/cel/environment"
    )
    
    func TestLazyMapType(t *testing.T) {
    	env, variablesType, err := buildTestEnv()
    	if err != nil {
    		t.Fatal(err)
    	}
    	variablesMap := NewMapValue(variablesType)
    	activation := &testActivation{variables: variablesMap}
    
    	// add foo as a string
    	variablesType.Fields["foo"] = apiservercel.NewDeclField("foo", apiservercel.StringType, true, nil, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go

    }
    
    type compositionContext struct {
    	context.Context
    
    	compositionEnv  *CompositionEnv
    	accumulatedCost int64
    }
    
    func (c *compositionContext) Variables(activation any) ref.Val {
    	lazyMap := lazy.NewMapValue(c.compositionEnv.MapType)
    	for name, result := range c.compositionEnv.CompiledVariables {
    		accessor := &variableAccessor{
    			name:       name,
    			result:     result,
    			activation: activation,
    			context:    c,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top