Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for LookupPatchMetaError (0.29 sec)

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

    limitations under the License.
    */
    
    package strategicpatch
    
    import (
    	"fmt"
    )
    
    type LookupPatchMetaError struct {
    	Path string
    	Err  error
    }
    
    func (e LookupPatchMetaError) Error() string {
    	return fmt.Sprintf("LookupPatchMetaError(%s): %v", e.Path, e.Err)
    }
    
    type FieldNotFoundError struct {
    	Path  string
    	Field string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 22:35:14 UTC 2017
    - 1.2K bytes
    - Viewed (0)
Back to top