Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 191 for ResourceNames (0.19 sec)

  1. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    			i--
    			dAtA[i] = 0x32
    		}
    	}
    	if len(m.ResourceNames) > 0 {
    		for iNdEx := len(m.ResourceNames) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.ResourceNames[iNdEx])
    			copy(dAtA[i:], m.ResourceNames[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.ResourceNames[iNdEx])))
    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	if len(m.Resources) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	if len(m.ResourceNames) > 0 {
    		for iNdEx := len(m.ResourceNames) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.ResourceNames[iNdEx])
    			copy(dAtA[i:], m.ResourceNames[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.ResourceNames[iNdEx])))
    			i--
    			dAtA[i] = 0x22
    		}
    	}
    	if len(m.Resources) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    			criteria: &v1.MatchResources{
    				NamespaceSelector: &metav1.LabelSelector{},
    				ObjectSelector:    &metav1.LabelSelector{},
    				ResourceRules: []v1.NamedRuleWithOperations{{
    					ResourceNames: []string{"name"},
    					RuleWithOperations: v1.RuleWithOperations{
    						Operations: []v1.OperationType{"*"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    // +structType=atomic
    type NamedRuleWithOperations struct {
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
    	// +listType=atomic
    	// +optional
    	ResourceNames []string `json:"resourceNames,omitempty" protobuf:"bytes,1,rep,name=resourceNames"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated string resources = 2;
    
      // ResourceNames is a list of resource instance names that the policy matches.
      // Using this field requires Resources to be specified.
      // An empty list implies that every instance of the resource is matched.
      // +optional
      // +listType=atomic
      repeated string resourceNames = 3;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/v1alpha1/zz_generated.conversion.go

    	out.ResourceNames = *(*[]string)(unsafe.Pointer(&in.ResourceNames))
    	if err := admissionregistrationv1.Convert_v1_RuleWithOperations_To_admissionregistration_RuleWithOperations(&in.RuleWithOperations, &out.RuleWithOperations, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/bootstraptoken/clusterinfo/clusterinfo_test.go

    			Namespace: metav1.NamespacePublic,
    		},
    		Rules: []rbac.PolicyRule{
    			{
    				Verbs:         []string{"get"},
    				APIGroups:     []string{""},
    				Resources:     []string{"Secret"},
    				ResourceNames: []string{bootstrapapi.ConfigMapClusterInfo},
    			},
    		},
    	}, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("error creating role: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/authorization/v1/generated.proto

      // +optional
      repeated string resources = 3;
    
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  "*" means all.
      // +optional
      repeated string resourceNames = 4;
    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

      // +optional
      // +listType=atomic
      repeated string resources = 3;
    
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  "*" means all.
      // +optional
      // +listType=atomic
      repeated string resourceNames = 4;
    }
    
    // SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation.go

    	var allErrors field.ErrorList
    	resourceNames := sets.NewString()
    	for i, rName := range n.ResourceNames {
    		for _, msg := range path.ValidatePathSegmentName(rName, false) {
    			allErrors = append(allErrors, field.Invalid(fldPath.Child("resourceNames").Index(i), rName, msg))
    		}
    		if resourceNames.Has(rName) {
    			allErrors = append(allErrors, field.Duplicate(fldPath.Child("resourceNames").Index(i), rName))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top