Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetPatchMergeKey (0.13 sec)

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

    				patchStrategy, patchMeta.GetPatchMergeKey(), false, mergeOptions)
    			if err != nil {
    				return err
    			}
    		case !foundOriginal && !foundPatch:
    			continue
    		}
    
    		// Split all items into patch items and server-only items and then enforce the order.
    		var patchItems, serverOnlyItems []interface{}
    		if len(patchMeta.GetPatchMergeKey()) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/meta.go

    	if pm.patchStrategies == nil {
    		return []string{}
    	}
    	return pm.patchStrategies
    }
    
    func (pm *PatchMeta) SetPatchStrategies(ps []string) {
    	pm.patchStrategies = ps
    }
    
    func (pm *PatchMeta) GetPatchMergeKey() string {
    	return pm.patchMergeKey
    }
    
    func (pm *PatchMeta) SetPatchMergeKey(pmk string) {
    	pm.patchMergeKey = pmk
    }
    
    type LookupPatchMeta interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top