Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NamespaceKeyFunc (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	if ok && len(ns) > 0 {
    		key = key + "/" + ns
    	}
    	return key
    }
    
    // NamespaceKeyFunc is the default function for constructing storage paths to
    // a resource relative to the given prefix enforcing namespace rules. If the
    // context does not contain a namespace, it errors.
    func NamespaceKeyFunc(ctx context.Context, prefix string, name string) (string, error) {
    	key := NamespaceKeyRootFunc(ctx, prefix)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		Versioner:      storage.APIObjectVersioner{},
    		GroupResource:  schema.GroupResource{Resource: "pods"},
    		ResourcePrefix: prefix,
    		KeyFunc:        func(obj runtime.Object) (string, error) { return storage.NamespaceKeyFunc(prefix, obj) },
    		GetAttrsFunc: func(obj runtime.Object) (labels.Set, fields.Set, error) {
    			pod, ok := obj.(*example.Pod)
    			if !ok {
    				return storage.DefaultNamespaceScopedAttr(obj)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top