Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,002 for Namespaced (0.17 sec)

  1. api/discovery/apis__admissionregistration.k8s.io__v1beta1.json

          "name": "validatingadmissionpolicies/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
            "update"
          ]
        },
        {
          "categories": [
            "api-extensions"
          ],
          "kind": "ValidatingAdmissionPolicyBinding",
          "name": "validatingadmissionpolicybindings",
          "namespaced": false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. api/discovery/apis__storagemigration.k8s.io__v1alpha1.json

    {
      "apiVersion": "v1",
      "groupVersion": "storagemigration.k8s.io/v1alpha1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "StorageVersionMigration",
          "name": "storageversionmigrations",
          "namespaced": false,
          "singularName": "storageversionmigration",
          "storageVersionHash": "N0mJdFqO17c=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 746 bytes
    - Viewed (0)
  3. pkg/kubelet/sysctl/allowlist.go

    // patternAllowlist takes a list of sysctls or sysctl patterns (ending in *) and
    // checks validity via a sysctl and prefix map, rejecting those which are not known
    // to be namespaced.
    type patternAllowlist struct {
    	sysctls  map[string]utilsysctl.Namespace
    	prefixes map[string]utilsysctl.Namespace
    }
    
    var _ lifecycle.PodAdmitHandler = &patternAllowlist{}
    
    // NewAllowlist creates a new Allowlist from a list of sysctls and sysctl pattern (ending in *).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		if producedObject == nil {
    			producedObject = defaultVersionedObject
    		}
    		reqScope.Namer = action.Namer
    
    		requestScope := "cluster"
    		var namespaced string
    		var operationSuffix string
    		if apiResource.Namespaced {
    			requestScope = "namespace"
    			namespaced = "Namespaced"
    		}
    		if strings.HasSuffix(action.Path, "/{path:*}") {
    			requestScope = "resource"
    			operationSuffix = operationSuffix + "WithPath"
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/NamespaceId.java

                String namespace = dis.readUTF();
                String name = dis.readUTF();
                return new NamespaceId(namespace, name);
            } catch (Exception e) {
                throw new RuntimeException("Failed decoding namespace ID");
            }
        }
    
        public NamespaceId(String namespace, String name) {
            this.namespace = namespace;
            this.name = name;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. api/discovery/apis__discovery.k8s.io__v1.json

    {
      "apiVersion": "v1",
      "groupVersion": "discovery.k8s.io/v1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "EndpointSlice",
          "name": "endpointslices",
          "namespaced": true,
          "singularName": "endpointslice",
          "storageVersionHash": "qgS0xkrxYAI=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 06:31:58 UTC 2024
    - 472 bytes
    - Viewed (0)
  7. api/discovery/apis__storage.k8s.io__v1alpha1.json

    {
      "apiVersion": "v1",
      "groupVersion": "storage.k8s.io/v1alpha1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "VolumeAttributesClass",
          "name": "volumeattributesclasses",
          "namespaced": false,
          "shortNames": [
            "vac"
          ],
          "singularName": "volumeattributesclass",
          "storageVersionHash": "HPC8kMG1ukQ=",
          "verbs": [
            "create",
            "delete",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 547 bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/accessor.go

    type BindingAccessor interface {
    	GetName() string
    	GetNamespace() string
    
    	// GetPolicyName returns the name of the (Validating/Mutating)AdmissionPolicy,
    	// which is cluster-scoped, so namespace is usually left blank.
    	// But we leave the door open to add a namespaced vesion in the future
    	GetPolicyName() types.NamespacedName
    	GetParamRef() *v1.ParamRef
    
    	GetMatchResources() *v1.MatchResources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. 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)
Back to top