Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for NamespaceId (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/interface.go

    	cache.SharedIndexInformer
    	Lister[T]
    }
    
    // Lister[T] helps list Ts.
    // All objects returned here must be treated as read-only.
    type Lister[T any] interface {
    	NamespacedLister[T]
    	Namespaced(namespace string) NamespacedLister[T]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/rbac/v1/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
      repeated string nonResourceURLs = 5;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. pkg/kubelet/sysctl/safe_sysctls.go

    		kernel: utilkernel.TCPKeepAliveProbesNamespacedKernelVersion,
    	},
    }
    
    // SafeSysctlAllowlist returns the allowlist of safe sysctls and safe sysctl patterns (ending in *).
    //
    // A sysctl is called safe iff
    // - it is namespaced in the container or the pod
    // - it is isolated, i.e. has no influence on any other pod on the same node.
    func SafeSysctlAllowlist() []string {
    	if goruntime.GOOS != "linux" {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 19:24:34 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/lister.go

    			Code:    http.StatusNotFound,
    			Reason:  metav1.StatusReasonNotFound,
    			Message: fmt.Sprintf("%s not found", name),
    		}}
    	}
    	result = obj.(T)
    	return result, nil
    }
    
    func (w lister[T]) Namespaced(namespace string) NamespacedLister[T] {
    	return namespacedLister[T]{namespace: namespace, indexer: w.indexer}
    }
    
    func NewLister[T runtime.Object](indexer cache.Indexer) lister[T] {
    	return lister[T]{indexer: indexer}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/ResolveCrossVersionIntegrationTest.groovy

            version current withTasks 'check' run()
            version previous withTasks 'check' run()
        }
    
        @Issue("GRADLE-3153")
        def "can upgrade when ivy.xml contains namespaced extra info elements"() {
            given:
            def module = ivyHttpRepo.module("test", "io", "1.4").publish()
            module.ivyFile.text = """
    <ivy-module version="1.0">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. common-protos/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
      repeated string nonResourceURLs = 6;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

      // there are no conflicts with other CSI drivers on the cluster, the recommendation
      // is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends
      // with the unique CSI driver name.
      //
      // Objects are namespaced.
      //
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1beta1/types_swagger_doc_generated.go

    	"nonResourceURLs": "NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path 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.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/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
    - 7.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/model.go

    	// key: referenced resources(e.g. secrets), value: gateway-api resources(e.g. gateways)
    	ResourceReferences map[model.ConfigKey][]model.ConfigKey
    }
    
    // Reference stores a reference to a namespaced GVK, as used by ReferencePolicy
    type Reference struct {
    	Kind      config.GroupVersionKind
    	Namespace k8s.Namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top