Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 7,511 for implementMe (0.18 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/testing/cacheable_object.go

    	return m.gvk
    }
    
    // SetGroupVersionKind implements schema.ObjectKind interface.
    func (m *MockCacheableObject) SetGroupVersionKind(gvk schema.GroupVersionKind) {
    	m.gvk = gvk
    }
    
    // Marshal implements proto.Marshaler interface.
    // This is implemented to avoid errors from protobuf serializer.
    func (*MockCacheableObject) Marshal() ([]byte, error) {
    	return []byte("\"proto-result\""), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 30 06:58:54 UTC 2019
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_predicates.go

    }
    
    // Implements reports whether type V implements interface T.
    //
    // The behavior of Implements is unspecified if V is Typ[Invalid] or an uninstantiated
    // generic type.
    func Implements(V Type, T *Interface) bool {
    	if T.Empty() {
    		// All types (even Typ[Invalid]) implement the empty interface.
    		return true
    	}
    	// Checker.implements suppresses errors for invalid types, so we need special
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/customPlugin/readme.xml

    <sample>
        <para>A set of projects that show how to implement, test, publish and use a custom plugin and task.</para>
        <para>This sample contains the following projects:</para>
        <itemizedlist>
            <listitem>
                <para>The <filename>java-gradle-plugin</filename> directory contains the project that implements and publishes the plugin.</para>
            </listitem>
            <listitem>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 563 bytes
    - Viewed (0)
  4. src/go/types/api_predicates.go

    }
    
    // Implements reports whether type V implements interface T.
    //
    // The behavior of Implements is unspecified if V is Typ[Invalid] or an uninstantiated
    // generic type.
    func Implements(V Type, T *Interface) bool {
    	if T.Empty() {
    		// All types (even Typ[Invalid]) implement the empty interface.
    		return true
    	}
    	// Checker.implements suppresses errors for invalid types, so we need special
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/registry/core/limitrange/storage/storage.go

    	if err := store.CompleteWithOptions(options); err != nil {
    		return nil, err
    	}
    	return &REST{store}, nil
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"limits"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. pkg/registry/apps/daemonset/storage/storage.go

    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"ds"}
    }
    
    var _ rest.CategoriesProvider = &REST{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. pkg/api/testing/meta_test.go

    						t.Errorf("%v (%v) has ObjectMeta but does not implement ObjectMetaAccessor", gv.WithKind(kind), knownType)
    						continue
    					}
    					if _, ok := value.Elem().Type().FieldByName("ListMeta"); ok {
    						t.Errorf("%v (%v) has ListMeta but does not implement ListMetaAccessor", gv.WithKind(kind), knownType)
    						continue
    					}
    					t.Logf("%v (%v) does not implement ListMetaAccessor or ObjectMetaAccessor", gv.WithKind(kind), knownType)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 10:11:56 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transport/file/FileConnectorFactory.java

            return new HashSet<>();
        }
    
        @Override
        public ExternalResourceConnector createResourceConnector(ResourceConnectorSpecification connectionDetails) {
            throw new UnsupportedOperationException("Not implemented");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. pkg/registry/core/configmap/storage/storage.go

    		AttrFunc:    configmap.GetAttrs,
    	}
    	if err := store.CompleteWithOptions(options); err != nil {
    		return nil, err
    	}
    	return &REST{store}, nil
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"cm"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 20:38:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. pkg/registry/core/endpoint/storage/storage.go

    	if err := store.CompleteWithOptions(options); err != nil {
    		return nil, err
    	}
    	return &REST{store}, nil
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"ep"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top