Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for appendString (0.25 sec)

  1. cmd/batch-expire_gen.go

    	o = append(o, 0x86, 0xaa, 0x41, 0x50, 0x49, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e)
    	o = msgp.AppendString(o, z.APIVersion)
    	// string "Bucket"
    	o = append(o, 0xa6, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74)
    	o = msgp.AppendString(o, z.Bucket)
    	// string "Prefix"
    	o = append(o, 0xa6, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78)
    	o = msgp.AppendString(o, z.Prefix)
    	// string "NotificationCfg"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  2. cmd/site-replication-utils_gen.go

    		return
    	}
    	// string "did"
    	o = append(o, 0xa3, 0x64, 0x69, 0x64)
    	o = msgp.AppendString(o, z.DeplID)
    	// string "bkts"
    	o = append(o, 0xa4, 0x62, 0x6b, 0x74, 0x73)
    	o = msgp.AppendMapHeader(o, uint32(len(z.BucketStatuses)))
    	for za0001, za0002 := range z.BucketStatuses {
    		o = msgp.AppendString(o, za0001)
    		o, err = za0002.MarshalMsg(o)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 14 15:16:40 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. cmd/batch-job-common-types_gen.go

    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 2
    	// string "Key"
    	o = append(o, 0x82, 0xa3, 0x4b, 0x65, 0x79)
    	o = msgp.AppendString(o, z.Key)
    	// string "Value"
    	o = append(o, 0xa5, 0x56, 0x61, 0x6c, 0x75, 0x65)
    	o = msgp.AppendString(o, z.Value)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *BatchJobKV) UnmarshalMsg(bts []byte) (o []byte, err error) {
    	var field []byte
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  4. internal/grid/msg_gen.go

    	// map header, size 2
    	// string "ID"
    	o = append(o, 0x82, 0xa2, 0x49, 0x44)
    	o = msgp.AppendBytes(o, (z.ID)[:])
    	// string "Host"
    	o = append(o, 0xa4, 0x48, 0x6f, 0x73, 0x74)
    	o = msgp.AppendString(o, z.Host)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *connectReq) UnmarshalMsg(bts []byte) (o []byte, err error) {
    	var field []byte
    	_ = field
    	var zb0001 uint32
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  5. internal/grid/types.go

    	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
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message.
    func (m *MSS) Msgsize() int {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 01 23:42:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool-rebalance_gen.go

    	for za0001 := range z.Buckets {
    		o = msgp.AppendString(o, z.Buckets[za0001])
    	}
    	// string "rbs"
    	o = append(o, 0xa3, 0x72, 0x62, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.RebalancedBuckets)))
    	for za0002 := range z.RebalancedBuckets {
    		o = msgp.AppendString(o, z.RebalancedBuckets[za0002])
    	}
    	// string "bu"
    	o = append(o, 0xa2, 0x62, 0x75)
    	o = msgp.AppendString(o, z.Bucket)
    	// string "ob"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. cmd/object-api-interface_gen.go

    	o = append(o, 0x84, 0xa6, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x72)
    	o = msgp.AppendString(o, z.Marker)
    	// string "LatestOnly"
    	o = append(o, 0xaa, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x4f, 0x6e, 0x6c, 0x79)
    	o = msgp.AppendBool(o, z.LatestOnly)
    	// string "AskDisks"
    	o = append(o, 0xa8, 0x41, 0x73, 0x6b, 0x44, 0x69, 0x73, 0x6b, 0x73)
    	o = msgp.AppendString(o, z.AskDisks)
    	// string "VersionsSort"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/log/slog/json_handler.go

    	}
    	s.buf.WriteByte('"')
    	*s.buf = t.AppendFormat(*s.buf, time.RFC3339Nano)
    	s.buf.WriteByte('"')
    }
    
    func appendJSONValue(s *handleState, v Value) error {
    	switch v.Kind() {
    	case KindString:
    		s.appendString(v.str())
    	case KindInt64:
    		*s.buf = strconv.AppendInt(*s.buf, v.Int64(), 10)
    	case KindUint64:
    		*s.buf = strconv.AppendUint(*s.buf, v.Uint64(), 10)
    	case KindFloat64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. src/encoding/json/encode.go

    		b = append(b, numStr...)
    		b = mayAppendQuote(b, opts.quoted)
    		e.Write(b)
    		return
    	}
    	if opts.quoted {
    		b := appendString(nil, v.String(), opts.escapeHTML)
    		e.Write(appendString(e.AvailableBuffer(), b, false)) // no need to escape again since it is already escaped
    	} else {
    		e.Write(appendString(e.AvailableBuffer(), v.String(), opts.escapeHTML))
    	}
    }
    
    // isValidNumber reports whether s is a valid JSON number literal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  10. cmd/tier_gen.go

    	// map header, size 1
    	// string "Tiers"
    	o = append(o, 0x81, 0xa5, 0x54, 0x69, 0x65, 0x72, 0x73)
    	o = msgp.AppendMapHeader(o, uint32(len(z.Tiers)))
    	for za0001, za0002 := range z.Tiers {
    		o = msgp.AppendString(o, za0001)
    		o, err = za0002.MarshalMsg(o)
    		if err != nil {
    			err = msgp.WrapError(err, "Tiers", za0001)
    			return
    		}
    	}
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 20 00:53:08 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top