Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AppendString (0.07 sec)

  1. cmd/storage-datatypes_gen.go

    	o = append(o, 0xdc, 0x0, 0x1c)
    	o = msgp.AppendString(o, z.Volume)
    	o = msgp.AppendString(o, z.Name)
    	o = msgp.AppendString(o, z.VersionID)
    	o = msgp.AppendBool(o, z.IsLatest)
    	o = msgp.AppendBool(o, z.Deleted)
    	o = msgp.AppendString(o, z.TransitionStatus)
    	o = msgp.AppendString(o, z.TransitionedObjName)
    	o = msgp.AppendString(o, z.TransitionTier)
    	o = msgp.AppendString(o, z.TransitionVersionID)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 150.2K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v1_gen.go

    		o = msgp.AppendMapHeader(o, uint32(len(z.Checksums)))
    		for za0001, za0002 := range z.Checksums {
    			o = msgp.AppendString(o, za0001)
    			o = msgp.AppendString(o, za0002)
    		}
    	}
    	if (zb0001Mask & 0x80) == 0 { // if not omitted
    		// string "err"
    		o = append(o, 0xa3, 0x65, 0x72, 0x72)
    		o = msgp.AppendString(o, z.Error)
    	}
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2_gen.go

    	} else {
    		o = msgp.AppendMapHeader(o, uint32(len(z.MetaUser)))
    		for za0011, za0012 := range z.MetaUser {
    			o = msgp.AppendString(o, za0011)
    			o = msgp.AppendString(o, za0012)
    		}
    	}
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *xlMetaV2Object) 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
    - 55.5K bytes
    - Viewed (0)
  4. cmd/data-usage-cache_gen.go

    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 1
    	// string "ts"
    	o = append(o, 0x81, 0xa2, 0x74, 0x73)
    	o = msgp.AppendMapHeader(o, uint32(len(z.Tiers)))
    	for za0001, za0002 := range z.Tiers {
    		o = msgp.AppendString(o, za0001)
    		// map header, size 3
    		// string "ts"
    		o = append(o, 0x83, 0xa2, 0x74, 0x73)
    		o = msgp.AppendUint64(o, za0002.TotalSize)
    		// string "nv"
    		o = append(o, 0xa2, 0x6e, 0x76)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 75K bytes
    - Viewed (0)
  5. cmd/data-usage-cache.go

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