Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for qsub (0.17 sec)

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

    	var avg float64
    	if l.successRequestCount > 0 {
    		avg = l.rttMsSum / float64(l.successRequestCount)
    	}
    	now := time.Now().UTC()
    	return Metrics{
    		LastReachableSecs:   now.Sub(o.serviceMetrics.LastCheckSuccess).Seconds(),
    		LastUnreachableSecs: now.Sub(o.serviceMetrics.LastCheckFailure).Seconds(),
    		TotalRequests:       l.failedRequestCount + l.successRequestCount,
    		FailedRequests:      l.failedRequestCount,
    		AvgSuccRTTMs:        avg,
    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. src/cmd/asm/internal/asm/operand_test.go

    		tests []operandTest
    	}
    	for _, sub := range []subtest{
    		{"amd64", amd64OperandTests},
    		{"386", x86OperandTests},
    		{"arm", armOperandTests},
    		{"arm64", arm64OperandTests},
    		{"ppc64", ppc64OperandTests},
    		{"mips", mipsOperandTests},
    		{"mips64", mips64OperandTests},
    		{"loong64", loong64OperandTests},
    		{"s390x", s390xOperandTests},
    	} {
    		t.Run(sub.arch, func(t *testing.T) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
Back to top