- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 123 for Groups (0.11 sec)
-
cmd/admin-handlers-users.go
} else { // Check if group already exists if _, gerr := globalIAMSys.GetGroupDescription(updReq.Group); gerr != nil { // If group does not exist, then check if the group has beginning and end space characters // we will reject such group names. if errors.Is(gerr, errNoSuchGroup) && hasSpaceBE(updReq.Group) {
Registered: 2024-06-16 00:44 - Last Modified: 2024-05-28 17:19 - 78.6K bytes - Viewed (0) -
staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go
Registered: 2024-06-15 01:39 - Last Modified: 2024-05-10 22:07 - 87.2K bytes - Viewed (0) -
cmd/iam-store.go
} groups.Remove(group) c.iamUserGroupMemberships[member] = groups } } // policyDBGet - lower-level helper; does not take locks. // // If a group is passed, it returns policies associated with the group. // // If a user is passed, it returns policies of the user along with any groups // that the server knows the user is a member of. // // In LDAP users mode, the server does not store any group membership
Registered: 2024-06-16 00:44 - Last Modified: 2024-06-13 22:26 - 75.8K bytes - Viewed (0) -
cmd/iam.go
updatedAt, err = sys.store.AddUsersToGroup(ctx, group, members) if err != nil { return updatedAt, err } sys.notifyForGroup(ctx, group) return updatedAt, nil } // RemoveUsersFromGroup - remove users from group. If no users are // given, and the group is empty, deletes the group as well.
Registered: 2024-06-16 00:44 - Last Modified: 2024-06-13 22:26 - 71.9K bytes - Viewed (0) -
cmd/sts-handlers_test.go
} // Set policy via group and validate policy assignment. actualGroupDN := mustNormalizeDN("cn=project.c,ou=groups,ou=swengg,dc=min,dc=io") groupDNWithUnicodeDot := "cn=project﹒c,ou=groups,ou=swengg,dc=min,dc=io" if err = s.adm.SetPolicy(ctx, policy, groupDNWithUnicodeDot, true); err != nil { c.Fatalf("Unable to attach group policy: %v", err) } value, err = ldapID.Retrieve()
Registered: 2024-06-16 00:44 - Last Modified: 2024-06-10 18:45 - 90K bytes - Viewed (0) -
staging/src/k8s.io/api/certificates/v1/generated.pb.go
i = encodeVarintGenerated(dAtA, i, uint64(len(m.Usages[iNdEx]))) i-- dAtA[i] = 0x2a } } if len(m.Groups) > 0 { for iNdEx := len(m.Groups) - 1; iNdEx >= 0; iNdEx-- { i -= len(m.Groups[iNdEx]) copy(dAtA[i:], m.Groups[iNdEx]) i = encodeVarintGenerated(dAtA, i, uint64(len(m.Groups[iNdEx]))) i-- dAtA[i] = 0x22 } } i -= len(m.UID) copy(dAtA[i:], m.UID)
Registered: 2024-06-15 01:39 - Last Modified: 2024-03-01 06:06 - 53.7K bytes - Viewed (0) -
staging/src/k8s.io/api/certificates/v1beta1/generated.pb.go
i = encodeVarintGenerated(dAtA, i, uint64(len(m.Usages[iNdEx]))) i-- dAtA[i] = 0x2a } } if len(m.Groups) > 0 { for iNdEx := len(m.Groups) - 1; iNdEx >= 0; iNdEx-- { i -= len(m.Groups[iNdEx]) copy(dAtA[i:], m.Groups[iNdEx]) i = encodeVarintGenerated(dAtA, i, uint64(len(m.Groups[iNdEx]))) i-- dAtA[i] = 0x22 } } i -= len(m.UID) copy(dAtA[i:], m.UID)
Registered: 2024-06-15 01:39 - Last Modified: 2024-03-01 06:06 - 53.8K bytes - Viewed (0) -
cmd/bucket-handlers.go
// https://github.com/golang/go/wiki/SliceTricks#filter-in-place for _, bucketInfo := range bucketsInfo { if globalIAMSys.IsAllowed(policy.Args{ AccountName: cred.AccessKey, Groups: cred.Groups, Action: policy.ListBucketAction, BucketName: bucketInfo.Name, ConditionValues: getConditionValues(r, "", cred), IsOwner: owner, ObjectName: "",
Registered: 2024-06-16 00:44 - Last Modified: 2024-06-14 13:28 - 61.2K bytes - Viewed (0) -
staging/src/k8s.io/api/authentication/v1/generated.pb.go
dAtA[i] = 0xa i = encodeVarintGenerated(dAtA, i, uint64(baseI-i)) i-- dAtA[i] = 0x22 } } if len(m.Groups) > 0 { for iNdEx := len(m.Groups) - 1; iNdEx >= 0; iNdEx-- { i -= len(m.Groups[iNdEx]) copy(dAtA[i:], m.Groups[iNdEx]) i = encodeVarintGenerated(dAtA, i, uint64(len(m.Groups[iNdEx]))) i-- dAtA[i] = 0x1a } } i -= len(m.UID) copy(dAtA[i:], m.UID)
Registered: 2024-06-15 01:39 - Last Modified: 2024-03-01 06:06 - 72K bytes - Viewed (0) -
src/cmd/vendor/golang.org/x/sys/windows/security_windows.go
} // Group returns the security descriptor group and whether it was defaulted. func (sd *SECURITY_DESCRIPTOR) Group() (group *SID, defaulted bool, err error) { err = getSecurityDescriptorGroup(sd, &group, &defaulted) return } // SetGroup sets the absolute security descriptor owner. func (absoluteSD *SECURITY_DESCRIPTOR) SetGroup(group *SID, defaulted bool) error {
Registered: 2024-06-12 16:32 - Last Modified: 2024-06-04 16:19 - 52.5K bytes - Viewed (0)