Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CreateThreeWayMergePatch (0.28 sec)

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

    				}
    			}
    		})
    	}
    }
    
    // These are test cases for StrategicMergePatch, to assert that applying  a patch
    // yields the correct outcome. They are also test cases for CreateTwoWayMergePatch
    // and CreateThreeWayMergePatch, to assert that they both generate the correct patch
    // for the given set of input documents.
    var createStrategicMergePatchTestCaseData = []byte(`
    testCases:
      - description: nil original
        twoWay:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	BuildRetainKeysDirective bool
    }
    
    type MergeOptions struct {
    	// MergeParallelList indicates if we are merging the parallel list.
    	// We don't merge parallel list when calling mergeMap() in CreateThreeWayMergePatch()
    	// which is called client-side.
    	// We merge parallel list iff when calling mergeMap() in StrategicMergeMapPatch()
    	// which is called server-side
    	MergeParallelList bool
    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