- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for sizeHistogramV1 (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/data-usage-cache_gen_test.go
} } func BenchmarkMarshalMsgsizeHistogramV1(b *testing.B) { v := sizeHistogramV1{} b.ReportAllocs() b.ResetTimer() for i := 0; i < b.N; i++ { v.MarshalMsg(nil) } } func BenchmarkAppendMsgsizeHistogramV1(b *testing.B) { v := sizeHistogramV1{} bts := make([]byte, 0, v.Msgsize()) bts, _ = v.MarshalMsg(bts[0:0]) b.SetBytes(int64(len(bts)))
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 19K bytes - Click Count (0) -
cmd/data-usage-cache.go
) //msgp:clearomitted //go:generate msgp -file $GOFILE -unexported // dataUsageHash is the hash type used. type dataUsageHash string // sizeHistogramV1 is size histogram V1, which has fewer intervals esp. between // 1024B and 1MiB. type sizeHistogramV1 [dataUsageBucketLenV1]uint64 // sizeHistogram is a size histogram. type sizeHistogram [dataUsageBucketLen]uint64
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 34.7K bytes - Click Count (0)