Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for endpointsList (1.84 sec)

  1. pkg/registry/registrytest/endpoint.go

    	"k8s.io/apiserver/pkg/registry/rest"
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    // Registry is an interface for things that know how to store endpoints.
    type EndpointRegistry struct {
    	Endpoints *api.EndpointsList
    	Updates   []api.Endpoints
    	Err       error
    
    	lock sync.Mutex
    }
    
    func (e *EndpointRegistry) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4K bytes
    - Viewed (0)
  2. pkg/apis/core/register.go

    		&ReplicationControllerList{},
    		&ReplicationController{},
    		&ServiceList{},
    		&Service{},
    		&ServiceProxyOptions{},
    		&NodeList{},
    		&Node{},
    		&NodeProxyOptions{},
    		&Endpoints{},
    		&EndpointsList{},
    		&Binding{},
    		&Event{},
    		&EventList{},
    		&List{},
    		&LimitRange{},
    		&LimitRangeList{},
    		&ResourceQuota{},
    		&ResourceQuotaList{},
    		&Namespace{},
    		&NamespaceList{},
    		&ServiceAccount{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 13 11:36:48 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/register.go

    		&PodStatusResult{},
    		&PodTemplate{},
    		&PodTemplateList{},
    		&ReplicationController{},
    		&ReplicationControllerList{},
    		&Service{},
    		&ServiceProxyOptions{},
    		&ServiceList{},
    		&Endpoints{},
    		&EndpointsList{},
    		&Node{},
    		&NodeList{},
    		&NodeProxyOptions{},
    		&Binding{},
    		&Event{},
    		&EventList{},
    		&List{},
    		&LimitRange{},
    		&LimitRangeList{},
    		&ResourceQuota{},
    		&ResourceQuotaList{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 13 11:36:48 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease_test.go

    	t.Cleanup(func() { server.Terminate(t) })
    
    	newFunc := func() runtime.Object { return &corev1.Endpoints{} }
    	newListFunc := func() runtime.Object { return &corev1.EndpointsList{} }
    	sc.Codec = apitesting.TestStorageCodec(codecs, corev1.SchemeGroupVersion)
    
    	s, dFunc, err := factory.Create(*sc.ForResource(schema.GroupResource{Resource: "endpoints"}), newFunc, newListFunc, "")
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. pkg/registry/core/endpoint/storage/storage.go

    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &api.Endpoints{} },
    		NewListFunc:               func() runtime.Object { return &api.EndpointsList{} },
    		DefaultQualifiedResource:  api.Resource("endpoints"),
    		SingularQualifiedResource: api.Resource("endpoints"),
    
    		CreateStrategy: endpoint.Strategy,
    		UpdateStrategy: endpoint.Strategy,
    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