Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,706 for groupC (0.23 sec)

  1. src/main/java/jcifs/SidResolver.java

         * target server where keys are SIDs representing an account and each value
         * is an ArrayList of SIDs represents the local groups that the account is
         * a member of.
         * <p/>
         * This method is designed to assist with computing access control for a
         * given user when the target object's ACL has local groups. Local groups
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  2. pkg/apis/rbac/v1/helpers.go

    				Name:     roleName,
    			},
    		},
    	}
    }
    
    // Groups adds the specified groups as the subjects of the RoleBinding.
    func (r *RoleBindingBuilder) Groups(groups ...string) *RoleBindingBuilder {
    	for _, group := range groups {
    		r.RoleBinding.Subjects = append(r.RoleBinding.Subjects, rbacv1.Subject{Kind: rbacv1.GroupKind, APIGroup: GroupName, Name: group})
    	}
    	return r
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 15:37:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/ExcludeRuleNotationConverterTest.groovy

            d.module == 'aModule'
            !d.group
        }
    
        def "with group and module"() {
            when:
            ExcludeRule d = parser.parseNotation([group: 'aGroup', module: 'aModule']);
            then:
            d != null;
            d instanceof DefaultExcludeRule
            d.group == 'aGroup'
            d.module == 'aModule'
        }
    
        def "with no group and no module InvalidUserDataException is thrown"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  4. pkg/apis/abac/v1beta1/types.go

    	// User is the username this rule applies to.
    	// Either user or group is required to match the request.
    	// "*" matches all users.
    	// +optional
    	User string `json:"user,omitempty"`
    
    	// Group is the group this rule applies to.
    	// Either user or group is required to match the request.
    	// "*" matches all groups.
    	// +optional
    	Group string `json:"group,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 18 16:05:04 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/trace/goroutines.go

    		}
    		// Accumulate groups by Name.
    		groupsByName := make(map[string]goroutineGroup)
    		for _, summary := range summaries {
    			group := groupsByName[summary.Name]
    			group.Name = summary.Name
    			group.N++
    			group.ExecTime += summary.ExecTime
    			groupsByName[summary.Name] = group
    		}
    		var groups []goroutineGroup
    		for _, group := range groupsByName {
    			groups = append(groups, group)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/group/authenticated_group_adder.go

    	if err != nil || !ok {
    		return nil, ok, err
    	}
    
    	if r.User.GetName() == user.Anonymous {
    		return r, true, nil
    	}
    	for _, group := range r.User.GetGroups() {
    		if group == user.AllAuthenticated || group == user.AllUnauthenticated {
    			return r, true, nil
    		}
    	}
    
    	newGroups := make([]string, 0, len(r.User.GetGroups())+1)
    	newGroups = append(newGroups, r.User.GetGroups()...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 20:04:50 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. pkg/apis/abac/types.go

    type PolicySpec struct {
    
    	// User is the username this rule applies to.
    	// Either user or group is required to match the request.
    	// "*" matches all users.
    	User string
    
    	// Group is the group this rule applies to.
    	// Either user or group is required to match the request.
    	// "*" matches all groups.
    	Group string
    
    	// Readonly matches readonly requests when true, and all requests when false
    	Readonly bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  8. src/go/ast/commentmap.go

    	// })
    
    	return list
    }
    
    // A commentListReader helps iterating through a list of comment groups.
    type commentListReader struct {
    	fset     *token.FileSet
    	list     []*CommentGroup
    	index    int
    	comment  *CommentGroup  // comment group at current index
    	pos, end token.Position // source interval of comment group at current index
    }
    
    func (r *commentListReader) eol() bool {
    	return r.index >= len(r.list)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/EquivalenceTester.java

    import java.util.List;
    
    /**
     * Tester for {@link Equivalence} relationships between groups of objects.
     *
     * <p>To use, create a new {@link EquivalenceTester} and add equivalence groups where each group
     * contains objects that are supposed to be equal to each other. Objects of different groups are
     * expected to be unequal. For example:
     *
     * <pre>{@code
     * EquivalenceTester.of(someStringEquivalence)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/EquivalenceTester.java

    import java.util.List;
    
    /**
     * Tester for {@link Equivalence} relationships between groups of objects.
     *
     * <p>To use, create a new {@link EquivalenceTester} and add equivalence groups where each group
     * contains objects that are supposed to be equal to each other. Objects of different groups are
     * expected to be unequal. For example:
     *
     * <pre>{@code
     * EquivalenceTester.of(someStringEquivalence)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top