Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 52 of 52 for gvr (0.02 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	// TODO refactor all tests to use real watch mechanism, see #72327
    	client.AddWatchReactor("*", func(action k8stesting.Action) (handled bool, ret watch.Interface, err error) {
    		gvr := action.GetResource()
    		ns := action.GetNamespace()
    		watch, err := reactor.Watch(gvr, ns)
    		if err != nil {
    			return false, nil, err
    		}
    		return true, watch, nil
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		gvk := gvkProvider.GroupVersionKind(a.group.GroupVersion)
    		apiResource.Group = gvk.Group
    		apiResource.Version = gvk.Version
    		apiResource.Kind = gvk.Kind
    	}
    
    	// Record the existence of the GVR and the corresponding GVK
    	a.group.EquivalentResourceRegistry.RegisterKindFor(reqScope.Resource, reqScope.Subresource, fqKindToRegister)
    
    	return &apiResource, resourceInfo, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top