Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for ResourceNames (0.23 sec)

  1. pkg/xds/server_test.go

    					model.EndpointType: {
    						NonceSent:     "nonce",
    						AlwaysRespond: true,
    						ResourceNames: []string{"my-resource"},
    					},
    				},
    			},
    			request: &discovery.DiscoveryRequest{
    				TypeUrl:       model.EndpointType,
    				VersionInfo:   "v1",
    				ResponseNonce: "nonce",
    				ResourceNames: []string{"my-resource"},
    			},
    			response: true,
    		},
    		{
    			name: "nack",
    			proxy: &TestProxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pkg/registry/rbac/validation/policy_compact_test.go

    				{Verbs: []string{"patch"}, APIGroups: []string{"extensions"}, Resources: []string{"daemonsets"}, ResourceNames: []string{""}},
    				{Verbs: []string{"get"}, APIGroups: []string{"extensions"}, Resources: []string{"daemonsets"}, ResourceNames: []string{"foo"}},
    				{Verbs: []string{"list"}, APIGroups: []string{"extensions"}, Resources: []string{"daemonsets"}, ResourceNames: []string{"foo"}},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 9.5K bytes
    - Viewed (0)
  3. pkg/registry/rbac/validation/policy_compact.go

    	if !reflect.DeepEqual(simpleRule, rule) {
    		return resource, false
    	}
    
    	if len(rule.ResourceNames) == 0 {
    		resource = simpleResource{Group: rule.APIGroups[0], Resource: rule.Resources[0], ResourceNameExist: false}
    	} else {
    		resource = simpleResource{Group: rule.APIGroups[0], Resource: rule.Resources[0], ResourceNameExist: true, ResourceName: rule.ResourceNames[0]}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/namedrulewithoperations.go

    // NamedRuleWithOperationsApplyConfiguration represents an declarative configuration of the NamedRuleWithOperations type for use
    // with apply.
    type NamedRuleWithOperationsApplyConfiguration struct {
    	ResourceNames                           []string `json:"resourceNames,omitempty"`
    	v1.RuleWithOperationsApplyConfiguration `json:",inline"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:51:52 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/namedrulewithoperations.go

    // NamedRuleWithOperationsApplyConfiguration represents an declarative configuration of the NamedRuleWithOperations type for use
    // with apply.
    type NamedRuleWithOperationsApplyConfiguration struct {
    	ResourceNames                           []string `json:"resourceNames,omitempty"`
    	v1.RuleWithOperationsApplyConfiguration `json:",inline"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. pkg/apis/rbac/v1/evaluation_helpers.go

    		formatStringParts = append(formatStringParts, "NonResourceURLs:%q")
    		formatArgs = append(formatArgs, r.NonResourceURLs)
    	}
    	if len(r.ResourceNames) > 0 {
    		formatStringParts = append(formatStringParts, "ResourceNames:%q")
    		formatArgs = append(formatArgs, r.ResourceNames)
    	}
    	if len(r.Verbs) > 0 {
    		formatStringParts = append(formatStringParts, "Verbs:%q")
    		formatArgs = append(formatArgs, r.Verbs)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 15:37:57 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/namedrulewithoperations.go

    // NamedRuleWithOperationsApplyConfiguration represents an declarative configuration of the NamedRuleWithOperations type for use
    // with apply.
    type NamedRuleWithOperationsApplyConfiguration struct {
    	ResourceNames                        []string `json:"resourceNames,omitempty"`
    	RuleWithOperationsApplyConfiguration `json:",inline"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/namespace-roles.yaml

        namespace: kube-public
      rules:
      - apiGroups:
        - ""
        resources:
        - configmaps
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - ""
        resourceNames:
        - cluster-info
        resources:
        - configmaps
        verbs:
        - update
      - apiGroups:
        - ""
        - events.k8s.io
        resources:
        - events
        verbs:
        - create
        - patch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 16 01:37:43 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    	result := true
    	resourceNames := []corev1.ResourceName{}
    	for key, value := range b {
    		if other, found := a[key]; found {
    			if other.Cmp(value) > 0 {
    				result = false
    				resourceNames = append(resourceNames, key)
    			}
    		}
    	}
    	return result, resourceNames
    }
    
    // Max returns the result of Max(a, b) for each named resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
  10. cluster/addons/cloud-controller-manager/cloud-node-controller-role.yaml

      resources:
      - events
      verbs:
      - create
      - patch
      - update
    - apiGroups:
      - coordination.k8s.io
      resources:
      - leases
      verbs:
      - create
    - apiGroups:
      - coordination.k8s.io
      resourceNames:
      - cloud-controller-manager
      resources:
      - leases
      verbs:
      - get
      - update
    - apiGroups:
      - ""
      resources:
      - endpoints
      - serviceaccounts
      verbs:
      - create
      - get
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 08 14:40:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top