Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for o2k2 (0.03 sec)

  1. cmd/storage-datatypes.go

    }
    
    // Equals checks if fi(FileInfo) matches ofi(FileInfo)
    func (fi FileInfo) Equals(ofi FileInfo) (ok bool) {
    	typ1, ok1 := crypto.IsEncrypted(fi.Metadata)
    	typ2, ok2 := crypto.IsEncrypted(ofi.Metadata)
    	if ok1 != ok2 {
    		return false
    	}
    	if typ1 != typ2 {
    		return false
    	}
    	if fi.IsCompressed() != ofi.IsCompressed() {
    		return false
    	}
    	if !fi.TransitionInfoEquals(ofi) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/types.go

    		}
    		return false
    	}
    
    	// If ip isn't 0.0.0.0, only check IP and 0.0.0.0's (protocol, port) pair
    	for _, key := range []string{DefaultBindAllHostIP, ip} {
    		if m, ok := h[key]; ok {
    			if _, ok2 := m[*pp]; ok2 {
    				return true
    			}
    		}
    	}
    
    	return false
    }
    
    // sanitize the parameters
    func (h HostPortInfo) sanitize(ip, protocol *string) {
    	if len(*ip) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    			subFromToken, ok := v.(string)
    			if ok {
    				subClaimValue = subFromToken
    			}
    		}
    
    		roleArn := openid.DummyRoleARN.String()
    		s, ok := claims[roleArnClaim]
    		val, ok2 := s.(string)
    		if ok && ok2 {
    			roleArn = val
    		}
    		v, ok := res[cred.ParentUser]
    		if ok {
    			res[cred.ParentUser] = ParentUserInfo{
    				subClaimValue: subClaimValue,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top