Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 0xdba5 (0.37 sec)

  1. 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 Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Jan 20 14:49:07 UTC 2025
    - 71.9K bytes
    - Viewed (0)
  2. 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 Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/archive/zip/reader_test.go

    	}
    	r.Close()
    }
    
    // Verify we do not treat non-zip64 archives as zip64
    func TestIssue12449(t *testing.T) {
    	data := []byte{
    		0x50, 0x4b, 0x03, 0x04, 0x14, 0x00, 0x08, 0x00,
    		0x00, 0x00, 0x6b, 0xb4, 0xba, 0x46, 0x00, 0x00,
    		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    		0x00, 0x00, 0x03, 0x00, 0x18, 0x00, 0xca, 0x64,
    		0x55, 0x75, 0x78, 0x0b, 0x00, 0x50, 0x4b, 0x05,
    		0x06, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01,
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Mar 11 22:19:38 UTC 2025
    - 56.6K bytes
    - Viewed (0)
  4. 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 Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Dec 15 22:50:12 UTC 2024
    - 56K bytes
    - Viewed (0)
  5. cmd/bucket-replication-utils_gen.go

    	}
    	err = en.WriteString(z.ReplicationStatusInternal)
    	if err != nil {
    		err = msgp.WrapError(err, "ReplicationStatusInternal")
    		return
    	}
    	// write "VersionPurgeStatusInternal"
    	err = en.Append(0xba, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x75, 0x72, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c)
    	if err != nil {
    		return
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Apr 03 06:45:06 UTC 2025
    - 59.8K bytes
    - Viewed (0)
  6. 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 Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Dec 15 22:50:12 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top