Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Pe (0.18 sec)

  1. cmd/iam.go

    	}
    
    	if !sys.LDAPConfig.Enabled() {
    		return nil, errIAMActionNotAllowed
    	}
    
    	select {
    	case <-sys.configLoaded:
    		pe := sys.store.ListPolicyMappings(q, sys.LDAPConfig.IsLDAPUserDN, sys.LDAPConfig.IsLDAPGroupDN)
    		pe.Timestamp = UTCNow()
    		return &pe, nil
    	case <-ctx.Done():
    		return nil, ctx.Err()
    	}
    }
    
    // IsTempUser - returns if given key is a temporary user and parent user.
    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)
  2. cmd/iam-store.go

    			Groups: s,
    		}
    	}
    	for policy, users := range policyToUsersMap {
    		s := users.ToSlice()
    		sort.Strings(s)
    
    		// Update existing value in map
    		pe := m[policy]
    		pe.Policy = policy
    		pe.Users = s
    		m[policy] = pe
    	}
    
    	policyEntities := make([]madmin.PolicyEntities, 0, len(m))
    	for _, v := range m {
    		policyEntities = append(policyEntities, v)
    	}
    
    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/erasure-server-pool.go

    	// where the read quorum issue is from metadata inconsistency.
    	var wg sync.WaitGroup
    	for idx, pe := range poolIndices {
    		if v, ok := pe.Err.(InsufficientReadQuorum); ok && v.Type != RQInconsistentMeta {
    			derrs[idx] = InsufficientWriteQuorum{}
    			continue
    		}
    		wg.Add(1)
    		pool := z.serverPools[pe.Index]
    		go func(idx int, pool *erasureSets) {
    			defer wg.Done()
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 80.1K bytes
    - Viewed (0)
Back to top