Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Duerr (0.15 sec)

  1. internal/logger/logonce.go

    const unwrapErrsDepth = 3
    
    // unwrapErrs upto the point where errors.Unwrap(err) returns nil
    func unwrapErrs(err error) (leafErr error) {
    	uerr := errors.Unwrap(err)
    	depth := 1
    	for uerr != nil {
    		// Save the current `uerr`
    		leafErr = uerr
    		// continue to look for leaf errors underneath
    		uerr = errors.Unwrap(leafErr)
    		depth++
    		if depth == unwrapErrsDepth {
    			// If we have reached enough depth we
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    				info.UserInfoMap[opts.EntityValue] = ui
    			}
    		} else {
    			userAccounts := make(map[string]UserIdentity)
    			uerr := globalIAMSys.store.loadUsers(ctx, regUser, userAccounts)
    			if uerr != nil {
    				return info, errSRBackendIssue(uerr)
    			}
    
    			serr := globalIAMSys.store.loadUsers(ctx, svcUser, userAccounts)
    			if serr != nil {
    				return info, errSRBackendIssue(serr)
    			}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 182.7K bytes
    - Viewed (1)
Back to top