Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MemString (0.16 sec)

  1. src/testing/benchmark.go

    	case y >= 0.00099995:
    		format = "%17.6f %s"
    	default:
    		format = "%18.7f %s"
    	}
    	fmt.Fprintf(w, format, x, unit)
    }
    
    // MemString returns r.AllocedBytesPerOp and r.AllocsPerOp in the same format as 'go test'.
    func (r BenchmarkResult) MemString() string {
    	return fmt.Sprintf("%8d B/op\t%8d allocs/op",
    		r.AllocedBytesPerOp(), r.AllocsPerOp())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top