Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LookupPatchMetadataForSlice (0.22 sec)

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

    	LookupPatchMetadataForStruct(key string) (LookupPatchMeta, PatchMeta, error)
    	// LookupPatchMetadataForSlice get subschema and the patch metadata for slice.
    	LookupPatchMetadataForSlice(key string) (LookupPatchMeta, PatchMeta, error)
    	// Get the type name of the field
    	Name() string
    }
    
    type PatchMetaFromStruct struct {
    	T reflect.Type
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    func handleSliceDiff(key string, originalValue, modifiedValue []interface{}, patch map[string]interface{},
    	schema LookupPatchMeta, diffOptions DiffOptions) error {
    	subschema, patchMeta, err := schema.LookupPatchMetadataForSlice(key)
    	if err != nil {
    		// We couldn't look up metadata for the field
    		// If the values are identical, this doesn't matter, no patch is needed
    		if reflect.DeepEqual(originalValue, modifiedValue) {
    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