Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Pe (0.26 sec)

  1. internal/s3select/sql/utils.go

    // String - returns the JSONPath representation
    func (e *JSONPath) String() string {
    	if len(e.pathString) == 0 {
    		parts := make([]string, len(e.PathExpr)+1)
    		parts[0] = e.BaseKey.String()
    		for i, pe := range e.PathExpr {
    			parts[i+1] = pe.String()
    		}
    		e.pathString = strings.Join(parts, "")
    	}
    	return e.pathString
    }
    
    // StripTableAlias removes a table alias from the path. The result is also
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Nov 10 16:12:50 GMT 2021
    - 3.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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