Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for _build (0.17 sec)

  1. cmd/sts-handlers_test.go

    		// Built-in user should be imported without errors even if LDAP is
    		// enabled.
    		allUsersFile: `{
      "foo": {
        "secretKey": "foobar123",
        "status": "enabled"
      }
    }
    `,
    		// Built-in groups should be imported without errors even if LDAP is
    		// enabled.
    		allGroupsFile: `{
      "mygroup": {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 85.7K bytes
    - Viewed (0)
  2. cmd/iam.go

    	updatedAt, err = sys.store.SetGroupStatus(ctx, group, enabled)
    	if err != nil {
    		return updatedAt, err
    	}
    
    	sys.notifyForGroup(ctx, group)
    	return updatedAt, nil
    }
    
    // GetGroupDescription - builds up group description
    func (sys *IAMSys) GetGroupDescription(group string) (gd madmin.GroupDesc, err error) {
    	if !sys.Initialized() {
    		return gd, errServerNotInitialized
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 71.1K bytes
    - Viewed (1)
  3. cmd/iam-store.go

    		iamGroupsMap:            map[string]GroupInfo{},
    		iamUserGroupMemberships: map[string]set.StringSet{},
    		iamGroupPolicyMap:       xsync.NewMapOf[string, MappedPolicy](),
    	}
    }
    
    // buildUserGroupMemberships - builds the memberships map. IMPORTANT:
    // Assumes that c.Lock is held by caller.
    func (c *iamCache) buildUserGroupMemberships() {
    	for group, gi := range c.iamGroupsMap {
    		c.updateGroupMembershipsMap(group, &gi)
    	}
    }
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
Back to top