Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 159 for NamespaceId (0.17 sec)

  1. 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)
  2. pkg/test/framework/components/echo/config.go

    	ServiceName() string
    
    	// NamespaceName returns the name of the namespace or "" if the Namespace is nil.
    	NamespaceName() string
    
    	// NamespacedName returns the namespaced name for this service.
    	// Short form for Config().NamespacedName().
    	NamespacedName() NamespacedName
    
    	// ServiceAccountName returns the service account string for this service.
    	ServiceAccountName() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // from the kubectl CLI interface.
      optional string singularName = 6;
    
      // namespaced indicates if a resource is namespaced or not.
      optional bool namespaced = 2;
    
      // group is the preferred group of the resource.  Empty implies the group of the containing resource list.
      // For subresources, this may have a different value, for example: Scale".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // from the kubectl CLI interface.
      optional string singularName = 6;
    
      // namespaced indicates if a resource is namespaced or not.
      optional bool namespaced = 2;
    
      // group is the preferred group of the resource.  Empty implies the group of the containing resource list.
      // For subresources, this may have a different value, for example: Scale".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// from the kubectl CLI interface.
    	SingularName string `json:"singularName" protobuf:"bytes,6,opt,name=singularName"`
    	// namespaced indicates if a resource is namespaced or not.
    	Namespaced bool `json:"namespaced" protobuf:"varint,2,opt,name=namespaced"`
    	// group is the preferred group of the resource.  Empty implies the group of the containing resource list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    	// Required.
    	Resources []string
    
    	// 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 Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top