Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ConvertFieldLabel (0.18 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/converter.go

    	unsafe runtime.ObjectConvertor
    }
    
    var _ runtime.ObjectConvertor = &safeConverterWrapper{}
    
    // ConvertFieldLabel delegate the call to the unsafe converter.
    func (c *safeConverterWrapper) ConvertFieldLabel(gvk schema.GroupVersionKind, label, value string) (string, string, error) {
    	return c.unsafe.ConvertFieldLabel(gvk, label, value)
    }
    
    // Convert makes a copy of in object and then delegate the call to the unsafe converter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/versionconverter_test.go

    	return c[gvk], nil
    }
    
    func (fakeObjectConvertorForTestSchema) Convert(_, _, _ interface{}) error {
    	return fmt.Errorf("function not implemented")
    }
    
    func (fakeObjectConvertorForTestSchema) ConvertFieldLabel(_ schema.GroupVersionKind, _, _ string) (string, string, error) {
    	return "", "", fmt.Errorf("function not implemented")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testing/testfieldmanager.go

    	out = in
    	return nil
    }
    
    func (c *FakeObjectConvertor) ConvertToVersion(in runtime.Object, _ runtime.GroupVersioner) (runtime.Object, error) {
    	return in, nil
    }
    
    func (c *FakeObjectConvertor) ConvertFieldLabel(_ schema.GroupVersionKind, _, _ string) (string, string, error) {
    	return "", "", errors.New("not implemented")
    }
    
    // FakeObjectDefaulter implements runtime.Defaulter, but it actually
    // does nothing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top