Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AppendUint32 (0.06 sec)

  1. cmd/xl-storage-format-v1_gen.go

    	o = msgp.AppendString(o, z.Name)
    	// string "Dir"
    	o = append(o, 0xa3, 0x44, 0x69, 0x72)
    	o = msgp.AppendBool(o, z.Dir)
    	// string "Mode"
    	o = append(o, 0xa4, 0x4d, 0x6f, 0x64, 0x65)
    	o = msgp.AppendUint32(o, z.Mode)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *StatInfo) UnmarshalMsg(bts []byte) (o []byte, err error) {
    	var field []byte
    	_ = field
    	var zb0001 uint32
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. cmd/storage-datatypes_gen.go

    	o = msgp.AppendUint64(o, z.Total)
    	o = msgp.AppendUint64(o, z.Free)
    	o = msgp.AppendUint64(o, z.Used)
    	o = msgp.AppendUint64(o, z.UsedInodes)
    	o = msgp.AppendUint64(o, z.FreeInodes)
    	o = msgp.AppendUint32(o, z.Major)
    	o = msgp.AppendUint32(o, z.Minor)
    	o = msgp.AppendUint64(o, z.NRRequests)
    	o = msgp.AppendString(o, z.FSType)
    	o = msgp.AppendBool(o, z.RootDisk)
    	o = msgp.AppendBool(o, z.Healing)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 150.2K bytes
    - Viewed (0)
  3. cmd/data-usage-cache_gen.go

    	// string "Name"
    	o = append(o, 0x84, 0xa4, 0x4e, 0x61, 0x6d, 0x65)
    	o = msgp.AppendString(o, z.Name)
    	// string "NextCycle"
    	o = append(o, 0xa9, 0x4e, 0x65, 0x78, 0x74, 0x43, 0x79, 0x63, 0x6c, 0x65)
    	o = msgp.AppendUint32(o, z.NextCycle)
    	// string "LastUpdate"
    	o = append(o, 0xaa, 0x4c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65)
    	o = msgp.AppendTime(o, z.LastUpdate)
    	// string "SkipHealing"
    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