Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,706 for groupC (0.14 sec)

  1. pkg/apis/rbac/v1alpha1/helpers.go

    }
    
    func (r *ClusterRoleBindingBuilder) Groups(groups ...string) *ClusterRoleBindingBuilder {
    	for _, group := range groups {
    		r.ClusterRoleBinding.Subjects = append(r.ClusterRoleBinding.Subjects, rbacv1alpha1.Subject{Kind: rbacv1alpha1.GroupKind, Name: group})
    	}
    	return r
    }
    
    func (r *ClusterRoleBindingBuilder) Users(users ...string) *ClusterRoleBindingBuilder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 15:37:57 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. pkg/apis/abac/v0/conversion.go

    	out.Spec.User = in.User
    	out.Spec.Group = in.Group
    	out.Spec.Namespace = in.Namespace
    	out.Spec.Resource = in.Resource
    	out.Spec.Readonly = in.Readonly
    
    	// In v0, unspecified user and group matches all authenticated subjects
    	if len(in.User) == 0 && len(in.Group) == 0 {
    		out.Spec.Group = allAuthenticated
    	}
    	// In v0, user or group of * matches all authenticated subjects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 28 20:14:20 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  3. pkg/registry/admissionregistration/validatingadmissionpolicy/authz_test.go

    			userInfo:  &user.DefaultInfo{Groups: []string{user.SystemPrivilegedGroup}},
    			expectErr: false, // success despite always-denying authorizer
    			auth: func(ctx context.Context, a authorizer.Attributes) (authorized authorizer.Decision, reason string, err error) {
    				return authorizer.DecisionDeny, "", nil
    			},
    		},
    		{
    			name:     "authorized",
    			userInfo: &user.DefaultInfo{Groups: []string{user.AllAuthenticated}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:29:56 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authorization/v1/generated.proto

      // User is the user you're testing for.
      // If you specify "User" but not "Groups", then is it interpreted as "What if User were not a member of any groups
      // +optional
      optional string user = 3;
    
      // Groups is the groups you're testing for.
      // +optional
      // +listType=atomic
      repeated string groups = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. cmd/admin-handlers-idp-ldap.go

    )
    
    // ListLDAPPolicyMappingEntities lists users/groups mapped to given/all policies.
    //
    // GET <admin-prefix>/idp/ldap/policy-entities?[query-params]
    //
    // Query params:
    //
    //	user=... -> repeatable query parameter, specifying users to query for
    //	policy mapping
    //
    //	group=... -> repeatable query parameter, specifying groups to query for
    //	policy mapping
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 19:58:48 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

      }
    
      // Check for too few groups. We wanted exactly four.
      return b == addressOffset + 4
    }
    
    /** Encodes an IPv6 address in canonical form according to RFC 5952. */
    internal fun inet6AddressToAscii(address: ByteArray): String {
      // Go through the address looking for the longest run of 0s. Each group is 2-bytes.
      // A run must be longer than one group (section 4.2.2).
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (2)
  7. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // User is the user you're testing for.
      // If you specify "User" but not "Group", then is it interpreted as "What if User were not a member of any groups
      // +optional
      optional string user = 3;
    
      // Groups is the groups you're testing for.
      // +optional
      repeated string group = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TaskReportModel.java

        String DEFAULT_GROUP = "";
    
        /**
         * Returns the task groups which make up this model, in the order that they should be displayed.
         */
        Set<String> getGroups();
    
        /**
         * Returns the tasks for the given group, in the order that they should be displayed.
         */
        Set<TaskDetails> getTasksForGroup(String group);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 30 23:30:16 UTC 2016
    - 1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/authorization/v1/generated.proto

      // User is the user you're testing for.
      // If you specify "User" but not "Groups", then is it interpreted as "What if User were not a member of any groups
      // +optional
      optional string user = 3;
    
      // Groups is the groups you're testing for.
      // +optional
      repeated string groups = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    		},
    
    		"groups none": {
    			nameHeaders:  []string{"X-Remote-User"},
    			groupHeaders: []string{"X-Remote-Group"},
    			requestHeaders: http.Header{
    				"X-Remote-User": {"Bob"},
    			},
    		},
    		"groups all matches": {
    			nameHeaders:  []string{"X-Remote-User"},
    			groupHeaders: []string{"X-Remote-Group-1", "X-Remote-Group-2"},
    			requestHeaders: http.Header{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top