Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for appendList (0.17 sec)

  1. cmd/object-api-datatypes_gen.go

    	o = msgp.AppendInt(o, z.PartNumberMarker)
    	// string "NextPartNumberMarker"
    	o = append(o, 0xb4, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x72, 0x74, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x72)
    	o = msgp.AppendInt(o, z.NextPartNumberMarker)
    	// string "MaxParts"
    	o = append(o, 0xa8, 0x4d, 0x61, 0x78, 0x50, 0x61, 0x72, 0x74, 0x73)
    	o = msgp.AppendInt(o, z.MaxParts)
    	// string "IsTruncated"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 19:08:18 GMT 2024
    - 69.8K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils_gen.go

    		// string "o"
    		o = append(o, 0xa1, 0x6f)
    		o = msgp.AppendString(o, za0002.Object)
    		// string "rc"
    		o = append(o, 0xa2, 0x72, 0x63)
    		o = msgp.AppendInt(o, za0002.RetryCount)
    	}
    	// string "v"
    	o = append(o, 0xa1, 0x76)
    	o = msgp.AppendInt(o, z.Version)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *MRFReplicateEntries) UnmarshalMsg(bts []byte) (o []byte, err error) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 61.1K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2_gen.go

    	o = msgp.AppendUint8(o, uint8(z.ErasureAlgorithm))
    	// string "EcM"
    	o = append(o, 0xa3, 0x45, 0x63, 0x4d)
    	o = msgp.AppendInt(o, z.ErasureM)
    	// string "EcN"
    	o = append(o, 0xa3, 0x45, 0x63, 0x4e)
    	o = msgp.AppendInt(o, z.ErasureN)
    	// string "EcBSize"
    	o = append(o, 0xa7, 0x45, 0x63, 0x42, 0x53, 0x69, 0x7a, 0x65)
    	o = msgp.AppendInt64(o, z.ErasureBlockSize)
    	// string "EcIndex"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 19 16:43:43 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    	// We will fill out the correct size when we know it.
    	dst = append(dst, 0xc6, 0, 0, 0, 0)
    	dataOffset := len(dst)
    
    	dst = msgp.AppendUint(dst, xlHeaderVersion)
    	dst = msgp.AppendUint(dst, xlMetaVersion)
    	dst = msgp.AppendInt(dst, len(x.versions))
    
    	tmp := metaDataPoolGet()
    	defer metaDataPoolPut(tmp)
    	for _, ver := range x.versions {
    		var err error
    
    		// Add header
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
Back to top