Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gd (0.15 sec)

  1. cmd/site-replication.go

    	if cntReplicated > 0 && cntReplicated != total {
    		return false
    	}
    	// check if policies match between sites
    	var prev madmin.GroupDesc
    	for i, gd := range gds {
    		if i == 0 {
    			prev = gd
    			continue
    		}
    		if !isGroupDescEqual(prev, gd) {
    			return false
    		}
    	}
    	return true
    }
    
    func isBktQuotaCfgReplicated(total int, quotaCfgs []*madmin.BucketQuota) bool {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
  2. cmd/iam-store.go

    }
    
    // GetGroupDescription - builds up group description
    func (store *IAMStoreSys) GetGroupDescription(group string) (gd madmin.GroupDesc, err error) {
    	cache := store.rlock()
    	defer store.runlock()
    
    	ps, updatedAt, err := cache.policyDBGet(store, group, true)
    	if err != nil {
    		return gd, err
    	}
    
    	policy := strings.Join(ps, ",")
    
    	if store.getUsersSysType() != MinIOUsersSysType {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  3. cmd/iam.go

    	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
    	}
    
    	return sys.store.GetGroupDescription(group)
    }
    
    // ListGroups - lists groups.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 71.1K bytes
    - Viewed (1)
Back to top