Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 0x0a5 (0.02 sec)

  1. cmd/bucket-stats_gen.go

    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z *BucketReplicationStats) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 11
    	// write "Stats"
    	err = en.Append(0x8b, 0xa5, 0x53, 0x74, 0x61, 0x74, 0x73)
    	if err != nil {
    		return
    	}
    	err = en.WriteMapHeader(uint32(len(z.Stats)))
    	if err != nil {
    		err = msgp.WrapError(err, "Stats")
    		return
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2_gen.go

    		// string "V1Obj"
    		o = append(o, 0xa5, 0x56, 0x31, 0x4f, 0x62, 0x6a)
    		if z.ObjectV1 == nil {
    			o = msgp.AppendNil(o)
    		} else {
    			o, err = z.ObjectV1.MarshalMsg(o)
    			if err != nil {
    				err = msgp.WrapError(err, "ObjectV1")
    				return
    			}
    		}
    	}
    	if (zb0001Mask & 0x4) == 0 { // if not omitted
    		// string "V2Obj"
    		o = append(o, 0xa5, 0x56, 0x32, 0x4f, 0x62, 0x6a)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 22 15:30:50 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. cmd/object-api-datatypes_gen.go

    // MarshalMsg implements msgp.Marshaler
    func (z *CompleteMultipartUpload) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 1
    	// string "Parts"
    	o = append(o, 0x81, 0xa5, 0x50, 0x61, 0x72, 0x74, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.Parts)))
    	for za0001 := range z.Parts {
    		o, err = z.Parts[za0001].MarshalMsg(o)
    		if err != nil {
    			err = msgp.WrapError(err, "Parts", za0001)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  4. cmd/data-usage-cache_gen.go

    	if err != nil {
    		return
    	}
    	err = z.Info.EncodeMsg(en)
    	if err != nil {
    		err = msgp.WrapError(err, "Info")
    		return
    	}
    	// write "Cache"
    	err = en.Append(0xa5, 0x43, 0x61, 0x63, 0x68, 0x65)
    	if err != nil {
    		return
    	}
    	err = en.WriteMapHeader(uint32(len(z.Cache)))
    	if err != nil {
    		err = msgp.WrapError(err, "Cache")
    		return
    	}
    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