Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for NamespaceId (0.17 sec)

  1. staging/src/k8s.io/api/rbac/v1beta1/generated.proto

      // Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding.
      // Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"),  but not both.
      // +optional
      // +listType=atomic
      repeated string nonResourceURLs = 5;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1alpha1/generated.proto

      // Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding.
      // Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"),  but not both.
      // +optional
      // +listType=atomic
      repeated string nonResourceURLs = 6;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/deployment-multi-service.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      name: injection-disabled-ns
    spec: {}
    ---
    # Deployment has multiple service attached but using same port but different protocol.
    # Sidecar is enabled although the namespaced doesn't have automatic injection.
    # It should generate a warning.
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ann-enabled-ns-disabled
      namespace: injection-disabled-ns
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. pkg/config/crd/validator.go

    	defer iv.mu.Unlock()
    	if iv.patternsByNamespace[namespace] == nil {
    		iv.patternsByNamespace[namespace] = sets.String{}
    	}
    	iv.patternsByNamespace[namespace].Insert(pattern)
    }
    
    // ShouldIgnore checks if a given namespaced name should be ignored based on the patterns.
    func (iv *ValidationIgnorer) ShouldIgnore(namespace, name string) bool {
    	iv.mu.RLock()
    	defer iv.mu.RUnlock()
    
    	patterns, exists := iv.patternsByNamespace[namespace]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. pkg/controller/storageversionmigrator/resourceversion.go

    	if err != nil {
    		return false, err
    	}
    
    	for _, resource := range resourceList.APIResources {
    		if resource.Name == gvr.Resource {
    			return resource.Namespaced, nil
    		}
    	}
    
    	return false, fmt.Errorf("resource %q not found", gvr.String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind responseKind = 2;
    
      // scope indicates the scope of a resource, either Cluster or Namespaced
      optional string scope = 3;
    
      // singularResource is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind responseKind = 2;
    
      // scope indicates the scope of a resource, either Cluster or Namespaced
      optional string scope = 3;
    
      // singularResource is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller.go

    	namespace, name, err = cache.SplitMetaNamespaceKey(key)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("invalid resource key: %s", key))
    		return nil
    	}
    
    	if len(namespace) > 0 {
    		lister = c.informer.Namespaced(namespace)
    	} else {
    		lister = c.informer
    	}
    
    	newObj, err = lister.Get(name)
    	if err != nil {
    		if !kerrors.IsNotFound(err) {
    			return err
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/html/template/doc.go

    functions.
    
    For these internal escaping functions, if an action pipeline evaluates to
    a nil interface value, it is treated as though it were an empty string.
    
    # Namespaced and data- attributes
    
    Attributes with a namespace are treated as if they had no namespace.
    Given the excerpt
    
    	<a my:href="{{.}}"></a>
    
    At parse time the attribute will be treated as if it were just "href".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind responseKind = 2;
    
      // scope indicates the scope of a resource, either Cluster or Namespaced
      optional string scope = 3;
    
      // singularResource is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top