Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 249 for Namespaced (0.21 sec)

  1. 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 (1)
  2. pkg/apis/admissionregistration/types.go

    	// if `paramKind` is namespace-scoped.
    	//
    	// +optional
    	Name string
    
    	// namespace is the namespace of the referenced resource. Allows limiting
    	// the search for params to a specific namespace. Applies to both `name` and
    	// `selector` fields.
    	//
    	// A per-namespace parameter may be used by specifying a namespace-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// if `paramKind` is namespace-scoped.
    	//
    	Name string `json:"name,omitempty" protobuf:"bytes,1,rep,name=name"`
    
    	// namespace is the namespace of the referenced resource. Allows limiting
    	// the search for params to a specific namespace. Applies to both `name` and
    	// `selector` fields.
    	//
    	// A per-namespace parameter may be used by specifying a namespace-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // if `paramKind` is namespace-scoped.
      optional string name = 1;
    
      // namespace is the namespace of the referenced resource. Allows limiting
      // the search for params to a specific namespace. Applies to both `name` and
      // `selector` fields.
      //
      // A per-namespace parameter may be used by specifying a namespace-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	b := newDefaultBuilderWith(fakeClientWith("", t, map[string]string{
    		"/namespaces/test/pods/foo":     runtime.EncodeOrDie(corev1Codec, &pods.Items[0]),
    		"/namespaces/test/pods/baz":     runtime.EncodeOrDie(corev1Codec, &pods.Items[1]),
    		"/namespaces/test/services/foo": runtime.EncodeOrDie(corev1Codec, &svcs.Items[0]),
    		"/namespaces/test/services/baz": runtime.EncodeOrDie(corev1Codec, &svcs.Items[0]),
    	})).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		return
    	}
    
    	// iterate over watchers for each applicable namespace/name tuple
    	namespace := event.ObjFields["metadata.namespace"]
    	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)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    var longRunningFilter = genericfilters.BasicLongRunningRequestCheck(sets.NewString("watch"), sets.NewString())
    
    // possiblyAcrossAllNamespacesVerbs contains those verbs which can be per-namespace and across all
    // namespaces for namespaces resources. I.e. for these an empty namespace in the requestInfo is fine.
    var possiblyAcrossAllNamespacesVerbs = sets.NewString("list", "watch")
    
    func (r *crdHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	return t
    }
    
    // TestNamespace returns the namespace that will be used when creating contexts.
    // Returns NamespaceNone for cluster-scoped objects.
    func (t *Tester) TestNamespace() string {
    	if t.clusterScope {
    		return metav1.NamespaceNone
    	}
    	return "test"
    }
    
    // TestContext returns a namespaced context that will be used when making storage calls.
    // Namespace is determined by TestNamespace()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // 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)
    	ns, ok := genericapirequest.NamespaceFrom(ctx)
    	if !ok || len(ns) == 0 {
    		return "", apierrors.NewBadRequest("Namespace parameter required.")
    	}
    	if len(name) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top