Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for AppendMapHeader (0.22 sec)

  1. cmd/metrics-v2_gen.go

    	if err != nil {
    		err = msgp.WrapError(err, "Description")
    		return
    	}
    	// string "StaticLabels"
    	o = append(o, 0xac, 0x53, 0x74, 0x61, 0x74, 0x69, 0x63, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73)
    	o = msgp.AppendMapHeader(o, uint32(len(z.StaticLabels)))
    	for za0001, za0002 := range z.StaticLabels {
    		o = msgp.AppendString(o, za0001)
    		o = msgp.AppendString(o, za0002)
    	}
    	// string "Value"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  2. internal/grid/types.go

    func (m *MSS) MarshalMsg(bytes []byte) (o []byte, err error) {
    	if m == nil || *m == nil {
    		return msgp.AppendNil(bytes), nil
    	}
    	o = msgp.AppendMapHeader(bytes, uint32(len(*m)))
    	for za0001, za0002 := range *m {
    		o = msgp.AppendString(o, za0001)
    		o = msgp.AppendString(o, za0002)
    	}
    	return o, nil
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 01 23:42:09 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  3. cmd/bucket-replication-utils_gen.go

    	o = msgp.AppendMapHeader(o, uint32(len(z.PurgeTargets)))
    	for za0003, za0004 := range z.PurgeTargets {
    		o = msgp.AppendString(o, za0003)
    		o = msgp.AppendString(o, string(za0004))
    	}
    	// string "ResetStatusesMap"
    	o = append(o, 0xb0, 0x52, 0x65, 0x73, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x4d, 0x61, 0x70)
    	o = msgp.AppendMapHeader(o, uint32(len(z.ResetStatusesMap)))
    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)
  4. cmd/object-api-datatypes_gen.go

    		if err != nil {
    			err = msgp.WrapError(err, "Parts", za0001)
    			return
    		}
    	}
    	// string "UserDefined"
    	o = append(o, 0xab, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64)
    	o = msgp.AppendMapHeader(o, uint32(len(z.UserDefined)))
    	for za0002, za0003 := range z.UserDefined {
    		o = msgp.AppendString(o, za0002)
    		o = msgp.AppendString(o, za0003)
    	}
    	// string "ChecksumAlgorithm"
    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)
  5. cmd/tier-last-day-stats_gen.go

    			return
    		}
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z DailyAllTierStats) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	o = msgp.AppendMapHeader(o, uint32(len(z)))
    	for zb0007, zb0008 := range z {
    		o = msgp.AppendString(o, zb0007)
    		// map header, size 2
    		// string "Bins"
    		o = append(o, 0x82, 0xa4, 0x42, 0x69, 0x6e, 0x73)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2_gen.go

    	o = msgp.AppendInt64(o, z.ModTime)
    	if (zb0001Mask & 0x4) == 0 { // if not omitted
    		// string "MetaSys"
    		o = append(o, 0xa7, 0x4d, 0x65, 0x74, 0x61, 0x53, 0x79, 0x73)
    		o = msgp.AppendMapHeader(o, uint32(len(z.MetaSys)))
    		for za0002, za0003 := range z.MetaSys {
    			o = msgp.AppendString(o, za0002)
    			o = msgp.AppendBytes(o, za0003)
    		}
    	}
    	return
    }
    
    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)
  7. cmd/xl-storage-meta-inline.go

    		for i := range keys {
    			plSize += len(keys[i]) + len(vals[i]) + msgp.StringPrefixSize + msgp.ArrayHeaderSize
    		}
    	}
    	payload := make([]byte, 1, plSize)
    	payload[0] = xlMetaInlineDataVer
    	payload = msgp.AppendMapHeader(payload, uint32(len(keys)))
    	for i := range keys {
    		payload = msgp.AppendStringFromBytes(payload, keys[i])
    		payload = msgp.AppendBytes(payload, vals[i])
    	}
    	*x = payload
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  8. cmd/local-locker_gen.go

    				return
    			}
    		}
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z localLockMap) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	o = msgp.AppendMapHeader(o, uint32(len(z)))
    	for zb0006, zb0007 := range z {
    		o = msgp.AppendString(o, zb0006)
    		o = msgp.AppendArrayHeader(o, uint32(len(zb0007)))
    		for zb0008 := range zb0007 {
    			o, err = zb0007[zb0008].MarshalMsg(o)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v1_gen.go

    		o = append(o, 0xa5, 0x69, 0x6e, 0x64, 0x65, 0x78)
    		o = msgp.AppendBytes(o, z.Index)
    	}
    	if (zb0001Mask & 0x40) == 0 { // if not omitted
    		// string "crc"
    		o = append(o, 0xa3, 0x63, 0x72, 0x63)
    		o = msgp.AppendMapHeader(o, uint32(len(z.Checksums)))
    		for za0001, za0002 := range z.Checksums {
    			o = msgp.AppendString(o, za0001)
    			o = msgp.AppendString(o, za0002)
    		}
    	}
    	return
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 40.2K bytes
    - Viewed (0)
  10. cmd/data-usage-cache_gen.go

    func (z *allTierStats) MarshalMsg(b []byte) (o []byte, err error) {
    	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)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 100.8K bytes
    - Viewed (0)
Back to top