time.Time.AppendFormat (method)

10 uses

	time (current package)
		format.go#L597: 	b = t.AppendFormat(b, layout)
		format.go#L603: func (t Time) AppendFormat(b []byte, layout string) []byte {
		time.go#L1291: 	b = t.AppendFormat(b, RFC3339Nano)
		time.go#L1317: 	return t.AppendFormat(b, RFC3339Nano), nil

	database/sql
		convert.go#L288: 			*d = s.AppendFormat((*d)[:0], time.RFC3339Nano)

	github.com/go-pg/pg/v10/types
		time.go#L51: 	b = tm.UTC().AppendFormat(b, timestamptzFormat)

	go.pact.im/x/zapjournal
		encoder.go#L204: 	e.buf = value.AppendFormat(e.buf, time.RFC3339Nano)
		json.go#L179: 	e.setBuf(v.AppendFormat(e.buf(), time.RFC3339Nano))

	go.uber.org/zap/buffer
		buffer.go#L57: 	b.bs = t.AppendFormat(b.bs, layout)

	net/http
		cookie.go#L214: 		b.Write(c.Expires.UTC().AppendFormat(buf[:0], TimeFormat))