Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unkeyedItems (0.08 sec)

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

    	}
    	if match, ok := a.keyedItems[key]; ok {
    		return match
    	}
    	// keep keying items until we either find a match or run out of unkeyed items
    	for len(a.unkeyedItems) > 0 {
    		// dequeue an unkeyed item
    		item := a.unkeyedItems[0]
    		a.unkeyedItems = a.unkeyedItems[1:]
    
    		// key the item
    		mitem, ok := item.(map[string]interface{})
    		if !ok {
    			continue
    		}
    		itemKey, ok := a.ks.CompositeKeyFor(mitem)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 02:56:51 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top