Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,314 for Namespaced (0.29 sec)

  1. api/discovery/api__v1.json

          "namespaced": false,
          "shortNames": [
            "ns"
          ],
          "singularName": "namespace",
          "storageVersionHash": "Q3oi5N2YM8M=",
          "verbs": [
            "create",
            "delete",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "Namespace",
          "name": "namespaces/finalize",
          "namespaced": false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    				{
    					Name:       "cronjobs",
    					Namespaced: true,
    					Kind:       "CronJob",
    					Group:      "batch",
    					Version:    "v1",
    					ShortNames: []string{"cj"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    				{
    					Name:       "cronjobs/status",
    					Namespaced: true,
    					Kind:       "CronJob",
    					Group:      "batch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. pkg/api/v1/persistentvolume/util_test.go

    		t.Logf("Extra namespaced names:\n%s", strings.Join(sets.List[string](extraNames), "\n"))
    		t.Error("Extra namespaced names extracted. Verify VisitPVSecretNames() is correctly extracting secret names")
    	}
    
    	emptyPV := &corev1.PersistentVolume{
    		Spec: corev1.PersistentVolumeSpec{
    			ClaimRef: &corev1.ObjectReference{Namespace: "claimrefns", Name: "claimrefname"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    //	sample is the sample Go type for response type.
    func (b *builder) buildRoute(root, path, httpMethod, actionVerb, operationVerb string, sample interface{}) *restful.RouteBuilder {
    	var namespaced string
    	if b.namespaced {
    		namespaced = "Namespaced"
    	}
    	route := b.ws.Method(httpMethod).
    		Path(root+path).
    		To(func(req *restful.Request, res *restful.Response) {}).
    		Doc(b.descriptionFor(path, operationVerb)).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/visitor.go

    		}
    		if len(info.Namespace) == 0 {
    			info.Namespace = namespace
    			UpdateObjectNamespace(info, nil)
    			return nil
    		}
    		if info.Namespace != namespace {
    			return fmt.Errorf("the namespace from the provided object %q does not match the namespace %q. You must pass '--namespace=%s' to perform this operation.", info.Namespace, namespace, info.Namespace)
    		}
    		return nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  6. pkg/controller/namespace/deletion/namespaced_resources_deleter_test.go

    	numTries := 0
    	retryOnce := func(ctx context.Context, namespace *v1.Namespace) (*v1.Namespace, error) {
    		numTries++
    		if numTries <= 1 {
    			return namespace, errors.NewConflict(api.Resource("namespaces"), namespace.Name, fmt.Errorf("ERROR"))
    		}
    		return namespace, nil
    	}
    	namespace := &v1.Namespace{}
    	d := namespacedResourcesDeleter{
    		nsClient: mockClient.CoreV1().Namespaces(),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_dispatcher.go

    				paramKind.String())
    		}
    
    		// Set up cluster-scoped, or namespaced access to the params
    		// "default" if not provided, and paramKind is namespaced
    		paramStore = paramInformer.Lister()
    		if paramScope.Name() == meta.RESTScopeNameNamespace {
    			paramsNamespace := namespace
    			if len(paramRef.Namespace) > 0 {
    				paramsNamespace = paramRef.Namespace
    			} else if len(paramsNamespace) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller_test.go

    	require.Equal(t, value, object3)
    
    	value, err = myController.Informer().Namespaced(namespacedObject1.GetNamespace()).Get(namespacedObject1.GetName())
    	require.NoError(t, err)
    	require.Equal(t, value, namespacedObject1)
    
    	_, err = myController.Informer().Get("fakeobjectname")
    	require.True(t, k8serrors.IsNotFound(err))
    
    	_, err = myController.Informer().Namespaced("test").Get("fakeobjectname")
    	require.True(t, k8serrors.IsNotFound(err))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

                "type": "string"
              },
              "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
Back to top