- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for sizeHistogram (0.07 sec)
-
cmd/data-usage_test.go
flatten bool oSizes sizeHistogram }{ { path: "/", size: 1322310, flatten: true, objs: 8, oSizes: sizeHistogram{0: 2, 1: 3, 2: 2, 4: 1}, }, { path: "/", size: 20000, objs: 2, oSizes: sizeHistogram{1: 2}, }, { path: "/dir1", size: 1302010, objs: 5, oSizes: sizeHistogram{0: 1, 1: 1, 2: 2, 4: 1}, }, {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 14.6K bytes - Viewed (0) -
cmd/data-usage-cache.go
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 // versionsHistogram is a histogram of number of versions in an object. type versionsHistogram [dataUsageVersionLen]uint64 type dataUsageEntry struct {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 34.7K bytes - Viewed (0) -
cmd/data-usage-cache_gen_test.go
} } func BenchmarkMarshalMsgsizeHistogram(b *testing.B) { v := sizeHistogram{} b.ReportAllocs() b.ResetTimer() for i := 0; i < b.N; i++ { v.MarshalMsg(nil) } } func BenchmarkAppendMsgsizeHistogram(b *testing.B) { v := sizeHistogram{} bts := make([]byte, 0, v.Msgsize()) bts, _ = v.MarshalMsg(bts[0:0]) b.SetBytes(int64(len(bts))) b.ReportAllocs()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Oct 04 22:23:33 UTC 2024 - 19K bytes - Viewed (0) -
cmd/data-usage-cache_gen.go
} // MarshalMsg implements msgp.Marshaler func (z *sizeHistogram) MarshalMsg(b []byte) (o []byte, err error) { o = msgp.Require(b, z.Msgsize()) o = msgp.AppendArrayHeader(o, uint32(dataUsageBucketLen)) for za0001 := range z { o = msgp.AppendUint64(o, z[za0001]) } return } // UnmarshalMsg implements msgp.Unmarshaler func (z *sizeHistogram) UnmarshalMsg(bts []byte) (o []byte, err error) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Dec 15 22:50:12 UTC 2024 - 86.4K bytes - Viewed (0)