Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AppendFloat64 (0.17 sec)

  1. cmd/bucket-replication-metrics_gen.go

    	o = msgp.AppendFloat64(o, z.Curr.Count)
    	// string "Bytes"
    	o = append(o, 0xa5, 0x42, 0x79, 0x74, 0x65, 0x73)
    	o = msgp.AppendFloat64(o, z.Curr.Bytes)
    	// string "aq"
    	o = append(o, 0xa2, 0x61, 0x71)
    	// map header, size 2
    	// string "Count"
    	o = append(o, 0x82, 0xa5, 0x43, 0x6f, 0x75, 0x6e, 0x74)
    	o = msgp.AppendFloat64(o, z.Avg.Count)
    	// string "Bytes"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. internal/bucket/bandwidth/monitor_gen.go

    	o = append(o, 0xd9, 0x20, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x42, 0x61, 0x6e, 0x64, 0x77, 0x69, 0x64, 0x74, 0x68, 0x49, 0x6e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x50, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64)
    	o = msgp.AppendFloat64(o, z.CurrentBandwidthInBytesPerSecond)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *Details) UnmarshalMsg(bts []byte) (o []byte, err error) {
    	var field []byte
    	_ = field
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. cmd/metrics-v2_gen.go

    	for za0001, za0002 := range z.StaticLabels {
    		o = msgp.AppendString(o, za0001)
    		o = msgp.AppendString(o, za0002)
    	}
    	// string "Value"
    	o = append(o, 0xa5, 0x56, 0x61, 0x6c, 0x75, 0x65)
    	o = msgp.AppendFloat64(o, z.Value)
    	// string "VariableLabels"
    	o = append(o, 0xae, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73)
    	o = msgp.AppendMapHeader(o, uint32(len(z.VariableLabels)))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool-rebalance_gen.go

    	o = msgp.AppendTime(o, z.StoppedAt)
    	// string "id"
    	o = append(o, 0xa2, 0x69, 0x64)
    	o = msgp.AppendString(o, z.ID)
    	// string "pf"
    	o = append(o, 0xa2, 0x70, 0x66)
    	o = msgp.AppendFloat64(o, z.PercentFreeGoal)
    	// string "rss"
    	o = append(o, 0xa3, 0x72, 0x73, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.PoolStats)))
    	for za0001 := range z.PoolStats {
    		if z.PoolStats[za0001] == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. cmd/bucket-stats_gen.go

    	o = append(o, 0xd9, 0x20, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x42, 0x61, 0x6e, 0x64, 0x77, 0x69, 0x64, 0x74, 0x68, 0x49, 0x6e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x50, 0x65, 0x72, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64)
    	o = msgp.AppendFloat64(o, z.CurrentBandwidthInBytesPerSecond)
    	// string "lt"
    	o = append(o, 0xa2, 0x6c, 0x74)
    	if z.XferRateLrg == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o, err = z.XferRateLrg.MarshalMsg(o)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top