const time.RFC3339Nano
17 uses
time (current package)
format.go#L83: RFC3339Nano = "2006-01-02T15:04:05.999999999Z07:00"
time.go#L1247: b := make([]byte, 0, len(RFC3339Nano)+2)
time.go#L1249: b = t.AppendFormat(b, RFC3339Nano)
time.go#L1274: b := make([]byte, 0, len(RFC3339Nano))
time.go#L1275: return t.AppendFormat(b, RFC3339Nano), nil
database/sql
convert.go#L276: *d = s.Format(time.RFC3339Nano)
convert.go#L282: *d = []byte(s.Format(time.RFC3339Nano))
convert.go#L288: *d = s.AppendFormat((*d)[:0], time.RFC3339Nano)
github.com/go-redis/redis/v8
command.go#L725: return time.Parse(time.RFC3339Nano, cmd.Val())
github.com/go-redis/redis/v8/internal
arg.go#L48: return v.AppendFormat(b, time.RFC3339Nano)
github.com/go-redis/redis/v8/internal/proto
writer.go#L99: w.numBuf = v.AppendFormat(w.numBuf[:0], time.RFC3339Nano)
github.com/golang/protobuf/ptypes
timestamp.go#L77: return t.Format(time.RFC3339Nano)
github.com/jackc/pgtype
timestamptz.go#L256: s = src.Time.Format(time.RFC3339Nano)
timestamptz.go#L285: tim, err := time.Parse(time.RFC3339Nano, *s)
google.golang.org/protobuf/encoding/protojson
well_known_types.go#L813: t, err := time.Parse(time.RFC3339Nano, tok.ParsedString())
gopkg.in/yaml.v2
encode.go#L359: s := t.Format(time.RFC3339Nano)
net/http
transport.go#L2669: logf(time.Now().Format(time.RFC3339Nano)+": "+format, args...)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |