Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NamespaceId (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		requestedNamespace string
    		recursive          bool
    		fieldSelector      fields.Selector
    		indexFields        []string
    		watchTests         []*testWatchStruct
    	}{
    		{
    			name:          "namespaced watch, request without name, request without namespace, without field selector",
    			recursive:     true,
    			fieldSelector: fields.Everything(),
    			watchTests: []*testWatchStruct{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// scope specifies the scope of this rule.
    	// Valid values are "Cluster", "Namespaced", and "*"
    	// "Cluster" means that only cluster-scoped resources will match this rule.
    	// Namespace API objects are cluster-scoped.
    	// "Namespaced" means that only namespaced resources will match this rule.
    	// "*" means that there are no scope restrictions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      repeated string resources = 3;
    
      // scope specifies the scope of this rule.
      // Valid values are "Cluster", "Namespaced", and "*"
      // "Cluster" means that only cluster-scoped resources will match this rule.
      // Namespace API objects are cluster-scoped.
      // "Namespaced" means that only namespaced resources will match this rule.
      // "*" means that there are no scope restrictions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	name := event.ObjFields["metadata.name"]
    	if len(namespace) > 0 {
    		if len(name) > 0 {
    			// namespaced watchers scoped by name
    			for _, watcher := range c.watchers.allWatchers[namespacedName{namespace: namespace, name: name}] {
    				c.watchersBuffer = append(c.watchersBuffer, watcher)
    			}
    		}
    		// namespaced watchers not scoped by name
    		for _, watcher := range c.watchers.allWatchers[namespacedName{namespace: namespace}] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    		}
    		rawAlias[nh] = host.Name(s.Attributes.K8sAttributes.ExternalName)
    	}
    
    	// unnamespacedRawAlias is like rawAlias but without namespaces.
    	// This is because an `ExternalName` isn't namespaced. If there is a conflict, the behavior is undefined.
    	// This is split from above as a minor optimization to right-size the map
    	unnamespacedRawAlias := make(map[host.Name]host.Name, len(rawAlias))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top