Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for validatePatchWithSetOrderList (1.29 sec)

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

    // the relative order of any two items in the setOrderList list matches that in the patch list.
    // the items in the patch list must be a subset or the same as the $setElementOrder list (deletions are ignored).
    func validatePatchWithSetOrderList(patchList, setOrderList interface{}, mergeKey string) error {
    	typedSetOrderList, ok := setOrderList.([]interface{})
    	if !ok {
    		return mergepatch.ErrBadPatchFormatForSetElementOrderList
    	}
    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