Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for existingValue (0.13 sec)

  1. pkg/kubelet/config/config.go

    	if candidateMap == nil {
    		candidateMap = make(map[string]string)
    	}
    	for k, v := range candidateMap {
    		if isLocalAnnotationKey(k) {
    			continue
    		}
    		if existingValue, ok := existingMap[k]; ok && existingValue == v {
    			continue
    		}
    		return false
    	}
    	for k := range existingMap {
    		if isLocalAnnotationKey(k) {
    			continue
    		}
    		// stale entry in existing map.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top