Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for copyAndSetTargetKind (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    				return copyAndSetTargetKind(copy, in, gvk)
    			}
    			return copyAndSetTargetKind(copy, in, unversionedKind)
    		}
    		return nil, NewNotRegisteredErrForTarget(s.schemeName, t, target)
    	}
    
    	// target wants to use the existing type, set kind and return (no conversion necessary)
    	for _, kind := range kinds {
    		if gvk == kind {
    			return copyAndSetTargetKind(copy, in, gvk)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
Back to top