Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for listOfMaps (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    func getMapAndMergeKeyValueByIndex(index int, mergeKey string, listOfMaps []interface{}) (map[string]interface{}, interface{}, error) {
    	m, ok := listOfMaps[index].(map[string]interface{})
    	if !ok {
    		return nil, nil, mergepatch.ErrBadArgType(m, listOfMaps[index])
    	}
    
    	val, ok := m[mergeKey]
    	if !ok {
    		return nil, nil, mergepatch.ErrNoMergeKey(m, mergeKey)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
Back to top