Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Hevery (0.17 sec)

  1. internal/config/identity/plugin/config.go

    	case reqTimeMinute.Equal(h.currentMinute.statsTime):
    		entry = &h.currentMinute
    	case reqTimeMinute.Equal(h.lastFullMinute.statsTime):
    		entry = &h.lastFullMinute
    	default:
    		// This request is too old, it should never happen, ignore it as we
    		// cannot return an error.
    		return
    	}
    
    	// Update stats
    	if isSuccess {
    		if entry.maxRttMs < rttMs {
    			entry.maxRttMs = rttMs
    		}
    		entry.rttMsSum += rttMs
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 13.3K bytes
    - Viewed (3)
  2. internal/config/config.go

    			continue
    		}
    
    		r = append(r, KVSrc{
    			Key:   kv.Key,
    			Value: v,
    			Src:   vs,
    		})
    	}
    
    	// Add the comment key as well if non-empty (and comments are never
    	// redacted).
    	v, vs, _ := c.ResolveConfigParam(subSys, target, Comment, redactSecrets)
    	if vs != ValueSourceDef {
    		r = append(r, KVSrc{
    			Key:   Comment,
    			Value: v,
    			Src:   vs,
    		})
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Mar 02 05:11:03 GMT 2024
    - 37.3K bytes
    - Viewed (0)
Back to top