- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for BenchmarkAppendMsgBucketBandwidthReport (1.13 sec)
-
internal/bucket/bandwidth/monitor_gen_test.go
func BenchmarkMarshalMsgBucketBandwidthReport(b *testing.B) { v := BucketBandwidthReport{} b.ReportAllocs() b.ResetTimer() for i := 0; i < b.N; i++ { v.MarshalMsg(nil) } } func BenchmarkAppendMsgBucketBandwidthReport(b *testing.B) { v := BucketBandwidthReport{} bts := make([]byte, 0, v.Msgsize()) bts, _ = v.MarshalMsg(bts[0:0]) b.SetBytes(int64(len(bts))) b.ReportAllocs() b.ResetTimer()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Feb 19 22:54:46 UTC 2024 - 4.5K bytes - Viewed (0)