Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for endpointslicestorage (0.17 sec)

  1. pkg/registry/discovery/rest/storage_discovery.go

    	if resource := "endpointslices"; apiResourceConfigSource.ResourceEnabled(discoveryv1.SchemeGroupVersion.WithResource(resource)) {
    		endpointSliceStorage, err := endpointslicestorage.NewREST(restOptionsGetter)
    		if err != nil {
    			return storage, err
    		}
    		storage[resource] = endpointSliceStorage
    	}
    
    	return storage, nil
    }
    
    // GroupName is the group name for the storage provider.
    func (p StorageProvider) GroupName() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 30 11:21:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    var alwaysReady = func() bool { return true }
    
    type endpointSliceMirroringController struct {
    	*Controller
    	endpointsStore     cache.Store
    	endpointSliceStore cache.Store
    	serviceStore       cache.Store
    }
    
    func newController(ctx context.Context, batchPeriod time.Duration) (*fake.Clientset, *endpointSliceMirroringController) {
    	client := newClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller_test.go

    // Tests here primarily focus on unique controller functionality before the reconciler begins
    
    var alwaysReady = func() bool { return true }
    
    type endpointSliceController struct {
    	*Controller
    	endpointSliceStore cache.Store
    	nodeStore          cache.Store
    	podStore           cache.Store
    	serviceStore       cache.Store
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
Back to top