Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for NamespaceId (0.4 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/apis/apidiscovery/types.go

    	// This value will be null or empty if an APIService reports subresources but supports no operations on the parent resource
    	ResponseKind *v1.GroupVersionKind
    	// scope indicates the scope of a resource, either Cluster or Namespaced
    	Scope ResourceScope
    	// 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: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/rbac/v1beta1/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
    - 8.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

      group: install.istio.io
      names:
        kind: IstioOperator
        listKind: IstioOperatorList
        plural: istiooperators
        singular: istiooperator
        shortNames:
        - iop
        - io
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: Istio control plane revision
          jsonPath: .spec.revision
          name: Revision
          type: string
        - description: IOP current state
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	ResponseKind *v1.GroupVersionKind `json:"responseKind,omitempty" protobuf:"bytes,2,opt,name=responseKind"`
    	// scope indicates the scope of a resource, either Cluster or Namespaced
    	Scope ResourceScope `json:"scope" protobuf:"bytes,3,opt,name=scope"`
    	// 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 May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top