Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for versionsHistogram (0.11 sec)

  1. cmd/data-usage-cache_gen_test.go

    	}
    }
    
    func BenchmarkMarshalMsgversionsHistogram(b *testing.B) {
    	v := versionsHistogram{}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		v.MarshalMsg(nil)
    	}
    }
    
    func BenchmarkAppendMsgversionsHistogram(b *testing.B) {
    	v := versionsHistogram{}
    	bts := make([]byte, 0, v.Msgsize())
    	bts, _ = v.MarshalMsg(bts[0:0])
    	b.SetBytes(int64(len(bts)))
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 04 22:23:33 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. cmd/data-usage-cache.go

    // 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 {
    	Children dataUsageHashMap `msg:"ch"`
    	// These fields do no include any children.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  3. cmd/data-usage-cache_gen.go

    // MarshalMsg implements msgp.Marshaler
    func (z *versionsHistogram) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	o = msgp.AppendArrayHeader(o, uint32(dataUsageVersionLen))
    	for za0001 := range z {
    		o = msgp.AppendUint64(o, z[za0001])
    	}
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *versionsHistogram) UnmarshalMsg(bts []byte) (o []byte, err error) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 75K bytes
    - Viewed (0)
Back to top