Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for Groups (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    			Authorization: &security.Authorization{
    				Name:      staticStrictPolicyName,
    				Namespace: meshCfg.GetRootNamespace(),
    				Scope:     security.Scope_WORKLOAD_SELECTOR,
    				Action:    security.Action_DENY,
    				Groups: []*security.Group{
    					{
    						Rules: []*security.Rules{
    							{
    								Matches: []*security.Match{
    									{
    										NotPrincipals: []*security.StringMatch{
    											{
    Registered: 2024-06-14 15:00
    - Last Modified: 2024-06-13 16:51
    - 5.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

                        writeSmallInt(nodesById.getValue(group.node))
                        writeNodeGroup(group.delegate, nodesById)
                    }
    
                    is CompositeNodeGroup -> {
                        writeSmallInt(2)
                        writeBoolean(group.isReachableFromEntryPoint)
                        writeNodeGroup(group.ordinalGroup, nodesById)
                        writeCollection(group.finalizerGroups) {
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-06-08 11:29
    - 10.4K bytes
    - Viewed (0)
  6. cmd/iam-etcd-store.go

    	r, err := ies.client.Get(cctx, iamConfigGroupsPrefix, etcd.WithPrefix(), etcd.WithKeysOnly())
    	if err != nil {
    		return err
    	}
    
    	groups := etcdKvsToSet(iamConfigGroupsPrefix, r.Kvs)
    
    	// Reload config for all groups.
    	for _, group := range groups.ToSlice() {
    		if err = ies.loadGroup(ctx, group, m); err != nil && err != errNoSuchGroup {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: 2024-06-16 00:44
    - Last Modified: 2024-06-13 22:26
    - 13.6K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

        # shellcheck disable=SC2068
        for group in ${all_instance_groups[@]:-}; do
          {
            if gcloud compute instance-groups managed describe "${group}" --project "${PROJECT}" --zone "${ZONE}" &>/dev/null; then
              gcloud compute instance-groups managed delete \
                --project "${PROJECT}" \
                --quiet \
                --zone "${ZONE}" \
                "${group}"
            fi
          } &
        done
    Registered: 2024-06-15 01:39
    - Last Modified: 2024-06-12 21:47
    - 161.6K bytes
    - Viewed (0)
  8. 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)
  9. .github/CODEOWNERS

    ## 3. Try to keep paths alphabetically sorted within visual groups.
    ## 4. List individual owners last.
    ##
    
    # bt-unassigned-maintainers must be the first owner
    # All directories that are not explicitly listed below are considered
    # unassigned. This means that the ownership may be unknown, lost or
    # mixed across several groups.
    * @gradle/bt-unassigned-maintainers
    
    # Build infrastructure
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-06-11 09:44
    - 10.1K bytes
    - Viewed (0)
  10. cmd/sts-handlers.go

    	}
    
    	// Set the parent of the temporary access key, this is useful
    	// in obtaining service accounts by this cred.
    	cred.ParentUser = ldapUserDN
    
    	// Set this value to LDAP groups, LDAP user can be part
    	// of large number of groups
    	cred.Groups = groupDistNames
    
    	// Set the newly generated credentials, policyName is empty on purpose
    	// LDAP policies are applied automatically using their ldapUser, ldapGroups
    	// mapping.
    Registered: 2024-06-16 00:44
    - Last Modified: 2024-06-11 03:13
    - 33.9K bytes
    - Viewed (0)
Back to top