Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for AppendMapHeader (0.28 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/site-replication-metrics_gen.go

    	if err != nil {
    		err = msgp.WrapError(err, "LastMinute")
    		return
    	}
    	// string "ErrCounts"
    	o = append(o, 0xa9, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x73)
    	o = msgp.AppendMapHeader(o, uint32(len(z.ErrCounts)))
    	for za0001, za0002 := range z.ErrCounts {
    		o = msgp.AppendString(o, za0001)
    		o = msgp.AppendInt(o, za0002)
    	}
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 40.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. internal/config/cache/remote_gen.go

    	o = append(o, 0xa7, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73)
    	o = msgp.AppendString(o, z.Expires)
    	// string "Metadata"
    	o = append(o, 0xa8, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61)
    	o = msgp.AppendMapHeader(o, uint32(len(z.Metadata)))
    	for za0001, za0002 := range z.Metadata {
    		o = msgp.AppendString(o, za0001)
    		o = msgp.AppendString(o, za0002)
    	}
    	// string "Range"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Nov 22 21:46:17 GMT 2023
    - 18.9K bytes
    - Viewed (0)
Back to top