type time.Time
401 uses
time (current package)
format.go#L546: func (t Time) String() string {
format.go#L577: func (t Time) GoString() string {
format.go#L639: func (t Time) Format(layout string) string {
format.go#L655: func (t Time) AppendFormat(b []byte, layout string) []byte {
format.go#L667: func (t Time) appendFormat(b []byte, layout string) []byte {
format.go#L1023: func Parse(layout, value string) (Time, error) {
format.go#L1038: func ParseInLocation(layout, value string, loc *Location) (Time, error) {
format.go#L1048: func parse(layout, value string, defaultLocation, local *Location) (Time, error) {
format.go#L1076: return Time{}, newParseError(alayout, avalue, prefix, value, "")
format.go#L1080: return Time{}, newParseError(alayout, avalue, "", value, ": extra text: "+quote(value))
format.go#L1328: return Time{}, newParseError(alayout, avalue, stdstr, value, ": "+rangeErrString+" out of range")
format.go#L1331: return Time{}, newParseError(alayout, avalue, stdstr, hold, "")
format.go#L1353: return Time{}, newParseError(alayout, avalue, "", value, ": day-of-year out of range")
format.go#L1365: return Time{}, newParseError(alayout, avalue, "", value, ": day-of-year does not match month")
format.go#L1369: return Time{}, newParseError(alayout, avalue, "", value, ": day-of-year does not match day")
format.go#L1383: return Time{}, newParseError(alayout, avalue, "", value, ": day out of range")
format_rfc3339.go#L18: func (t Time) appendFormatRFC3339(b []byte, nanos bool) []byte {
format_rfc3339.go#L62: func (t Time) appendStrictRFC3339(b []byte) ([]byte, error) {
format_rfc3339.go#L82: func parseRFC3339[bytes []byte | string](s bytes, local *Location) (Time, bool) {
format_rfc3339.go#L105: return Time{}, false
format_rfc3339.go#L114: return Time{}, false
format_rfc3339.go#L132: return Time{}, false
format_rfc3339.go#L137: return Time{}, false
format_rfc3339.go#L155: func parseStrictRFC3339(b []byte) (Time, error) {
format_rfc3339.go#L160: return Time{}, err
format_rfc3339.go#L173: return Time{}, &ParseError{RFC3339, string(b), "15", string(b[len("2006-01-02T"):][:1]), ""}
format_rfc3339.go#L175: return Time{}, &ParseError{RFC3339, string(b), ".", ",", ""}
format_rfc3339.go#L179: return Time{}, &ParseError{RFC3339, string(b), "Z07:00", string(b[len(b)-len("Z07:00"):]), ": timezone hour out of range"}
format_rfc3339.go#L181: return Time{}, &ParseError{RFC3339, string(b), "Z07:00", string(b[len(b)-len("Z07:00"):]), ": timezone minute out of range"}
format_rfc3339.go#L184: return Time{}, &ParseError{RFC3339, string(b), RFC3339, string(b), ""}
sleep.go#L22: func syncTimer(c chan Time) unsafe.Pointer {
sleep.go#L90: C <-chan Time
sleep.go#L144: c := make(chan Time, 1)
sleep.go#L187: case c.(chan Time) <- Now().Add(Duration(-delta)):
sleep.go#L202: func After(d Duration) <-chan Time {
tick.go#L17: C <-chan Time // The channel on which the ticks are delivered.
tick.go#L43: c := make(chan Time, 1)
tick.go#L86: func Tick(d Duration) <-chan Time {
time.go#L140: type Time struct {
time.go#L176: func (t *Time) nsec() int32 {
time.go#L181: func (t *Time) sec() int64 {
time.go#L189: func (t *Time) unixSec() int64 { return t.sec() + internalToUnix }
time.go#L192: func (t *Time) addSec(d int64) {
time.go#L217: func (t *Time) setLoc(loc *Location) {
time.go#L226: func (t *Time) stripMono() {
time.go#L237: func (t *Time) setMono(m int64) {
time.go#L253: func (t *Time) mono() int64 {
time.go#L262: func (t Time) IsZero() bool {
time.go#L271: func (t Time) After(u Time) bool {
time.go#L281: func (t Time) Before(u Time) bool {
time.go#L292: func (t Time) Compare(u Time) int {
time.go#L316: func (t Time) Equal(u Time) bool {
time.go#L769: func (t Time) absSec() absSeconds {
time.go#L789: func (t Time) locabs() (name string, offset int, abs absSeconds) {
time.go#L812: func (t Time) Date() (year int, month Month, day int) {
time.go#L817: func (t Time) Year() int {
time.go#L824: func (t Time) Month() Month {
time.go#L831: func (t Time) Day() int {
time.go#L838: func (t Time) Weekday() Weekday {
time.go#L852: func (t Time) ISOWeek() (year, week int) {
time.go#L870: func (t Time) Clock() (hour, min, sec int) {
time.go#L885: func (t Time) Hour() int {
time.go#L890: func (t Time) Minute() int {
time.go#L895: func (t Time) Second() int {
time.go#L901: func (t Time) Nanosecond() int {
time.go#L907: func (t Time) YearDay() int {
time.go#L1170: func (t Time) Add(d Duration) Time {
time.go#L1198: func (t Time) Sub(u Time) Duration {
time.go#L1227: func Since(t Time) Duration {
time.go#L1237: func Until(t Time) Duration {
time.go#L1262: func (t Time) AddDate(years int, months int, days int) Time {
time.go#L1347: func Now() Time {
time.go#L1350: return Time{uint64(nsec), sec + unixToInternal, Local}
time.go#L1358: return Time{uint64(nsec), sec + minWall, Local}
time.go#L1360: return Time{hasMonotonic | uint64(sec)<<nsecShift | uint64(nsec), mono, Local}
time.go#L1363: func unixTime(sec int64, nsec int32) Time {
time.go#L1364: return Time{uint64(nsec), sec + unixToInternal, Local}
time.go#L1368: func (t Time) UTC() Time {
time.go#L1374: func (t Time) Local() Time {
time.go#L1384: func (t Time) In(loc *Location) Time {
time.go#L1393: func (t Time) Location() *Location {
time.go#L1403: func (t Time) Zone() (name string, offset int) {
time.go#L1413: func (t Time) ZoneBounds() (start, end Time) {
time.go#L1432: func (t Time) Unix() int64 {
time.go#L1441: func (t Time) UnixMilli() int64 {
time.go#L1450: func (t Time) UnixMicro() int64 {
time.go#L1460: func (t Time) UnixNano() int64 {
time.go#L1470: func (t Time) AppendBinary(b []byte) ([]byte, error) {
time.go#L1517: func (t Time) MarshalBinary() ([]byte, error) {
time.go#L1526: func (t *Time) UnmarshalBinary(data []byte) error {
time.go#L1558: *t = Time{}
time.go#L1578: func (t Time) GobEncode() ([]byte, error) {
time.go#L1583: func (t *Time) GobDecode(data []byte) error {
time.go#L1591: func (t Time) MarshalJSON() ([]byte, error) {
time.go#L1604: func (t *Time) UnmarshalJSON(data []byte) error {
time.go#L1618: func (t Time) appendTo(b []byte, errPrefix string) ([]byte, error) {
time.go#L1630: func (t Time) AppendText(b []byte) ([]byte, error) {
time.go#L1638: func (t Time) MarshalText() ([]byte, error) {
time.go#L1644: func (t *Time) UnmarshalText(data []byte) error {
time.go#L1655: func Unix(sec int64, nsec int64) Time {
time.go#L1670: func UnixMilli(msec int64) Time {
time.go#L1676: func UnixMicro(usec int64) Time {
time.go#L1681: func (t Time) IsDST() bool {
time.go#L1734: func Date(year int, month Month, day, hour, min, sec, nsec int, loc *Location) Time {
time.go#L1782: func (t Time) Truncate(d Duration) Time {
time.go#L1799: func (t Time) Round(d Duration) Time {
time.go#L1814: func div(t Time, d Duration) (qmod2 int, r Duration) {
time.go#L1931: func legacyTimeTimeAbs(t Time) uint64 {
compress/gzip
gunzip.go#L55: ModTime time.Time // modification time
context
context.go#L75: Deadline() (deadline time.Time, ok bool)
context.go#L183: func (emptyCtx) Deadline() (deadline time.Time, ok bool) {
context.go#L596: func (withoutCancelCtx) Deadline() (deadline time.Time, ok bool) {
context.go#L625: func WithDeadline(parent Context, d time.Time) (Context, CancelFunc) {
context.go#L632: func WithDeadlineCause(parent Context, d time.Time, cause error) (Context, CancelFunc) {
context.go#L666: deadline time.Time
context.go#L669: func (c *timerCtx) Deadline() (deadline time.Time, ok bool) {
crypto/tls
common.go#L575: Time func() time.Time
common.go#L965: created time.Time
common.go#L1175: func (c *Config) time() time.Time {
conn.go#L143: func (c *Conn) SetDeadline(t time.Time) error {
conn.go#L149: func (c *Conn) SetReadDeadline(t time.Time) error {
conn.go#L156: func (c *Conn) SetWriteDeadline(t time.Time) error {
crypto/x509
parser.go#L201: func parseTime(der *cryptobyte.String) (time.Time, error) {
parser.go#L202: var t time.Time
parser.go#L218: func parseValidity(der cryptobyte.String) (time.Time, time.Time, error) {
parser.go#L221: return time.Time{}, time.Time{}, err
parser.go#L225: return time.Time{}, time.Time{}, err
verify.go#L207: CurrentTime time.Time
x509.go#L199: NotBefore, NotAfter time.Time
x509.go#L721: NotBefore, NotAfter time.Time // Validity bounds.
x509.go#L1855: func (c *Certificate) CreateCRL(rand io.Reader, priv any, revokedCerts []pkix.RevokedCertificate, now, expiry time.Time) (crlBytes []byte, err error) {
x509.go#L2296: RevocationTime time.Time
x509.go#L2366: ThisUpdate time.Time
x509.go#L2370: NextUpdate time.Time
x509.go#L2398: ThisUpdate time.Time
x509.go#L2399: NextUpdate time.Time `asn1:"optional"`
crypto/x509/pkix
pkix.go#L295: func (certList *CertificateList) HasExpired(now time.Time) bool {
pkix.go#L308: ThisUpdate time.Time
pkix.go#L309: NextUpdate time.Time `asn1:"optional"`
pkix.go#L318: RevocationTime time.Time
embed
embed.go#L221: func (f *file) ModTime() time.Time { return time.Time{} }
encoding/asn1
asn1.go#L335: func parseUTCTime(bytes []byte) (ret time.Time, err error) {
asn1.go#L363: func parseGeneralizedTime(bytes []byte) (ret time.Time, err error) {
asn1.go#L694: timeType = reflect.TypeFor[time.Time]()
asn1.go#L909: case *time.Time:
marshal.go#L363: func outsideUTCRange(t time.Time) bool {
marshal.go#L368: func makeUTCTime(t time.Time) (e encoder, err error) {
marshal.go#L379: func makeGeneralizedTime(t time.Time) (e encoder, err error) {
marshal.go#L390: func appendUTCTime(dst []byte, t time.Time) (ret []byte, err error) {
marshal.go#L405: func appendGeneralizedTime(dst []byte, t time.Time) (ret []byte, err error) {
marshal.go#L416: func appendTimeCommon(dst []byte, t time.Time) []byte {
marshal.go#L463: t, _ := reflect.TypeAssert[time.Time](value)
marshal.go#L656: t, _ := reflect.TypeAssert[time.Time](v)
github.com/cenkalti/backoff/v4
exponential.go#L66: startTime time.Time
exponential.go#L71: Now() time.Time
exponential.go#L155: func (t systemClock) Now() time.Time {
ticker.go#L14: C <-chan time.Time
ticker.go#L15: c chan time.Time
ticker.go#L39: c := make(chan time.Time)
ticker.go#L82: func (t *Ticker) send(tick time.Time) <-chan time.Time {
timer.go#L8: C() <-chan time.Time
timer.go#L17: func (t *defaultTimer) C() <-chan time.Time {
github.com/coder/websocket
netconn.go#L201: func (nc *netConn) SetDeadline(t time.Time) error {
netconn.go#L207: func (nc *netConn) SetWriteDeadline(t time.Time) error {
netconn.go#L221: func (nc *netConn) SetReadDeadline(t time.Time) error {
github.com/gotd/log
attr.go#L64: func (v Value) Time() time.Time {
attr.go#L65: t, _ := v.a.(time.Time)
attr.go#L177: func Time(key string, value time.Time) Attr {
github.com/gotd/neo
moment.go#L6: when time.Time
moment.go#L7: do func(time time.Time)
moment.go#L12: func (m moments) do(t time.Time) {
net.go#L120: func simpleDeadline(t time.Time) notifier {
net.go#L131: func (c *PacketConn) SetDeadline(t time.Time) error {
net.go#L141: func (c *PacketConn) SetReadDeadline(t time.Time) error {
net.go#L151: func (c *PacketConn) SetWriteDeadline(t time.Time) error {
ticker.go#L9: ch chan time.Time
ticker.go#L14: func (t *ticker) C() <-chan time.Time {
ticker.go#L29: func (t *ticker) do(now time.Time) {
time.go#L11: C() <-chan time.Time
time.go#L18: C() <-chan time.Time
time.go#L24: func NewTime(now time.Time) *Time {
time.go#L38: now time.Time
time.go#L48: ch: make(chan time.Time, 1),
time.go#L57: ch: make(chan time.Time, 1),
time.go#L64: func (t *Time) planUnlocked(when time.Time, do func(now time.Time)) int {
time.go#L75: func (t *Time) plan(when time.Time, do func(now time.Time)) int {
time.go#L96: func (t *Time) reset(d time.Duration, id int, do func(now time.Time), durp *time.Duration) {
time.go#L103: func (t *Time) resetUnlocked(d time.Duration, id int, do func(now time.Time), durp *time.Duration) {
time.go#L134: func (t *Time) Now() time.Time {
time.go#L143: func (t *Time) Set(now time.Time) {
time.go#L152: func (t *Time) Travel(d time.Duration) time.Time {
time.go#L163: func (t *Time) TravelDate(years, months, days int) time.Time {
time.go#L173: func (t *Time) setUnlocked(now time.Time) {
time.go#L182: func (t *Time) When(d time.Duration) time.Time {
time.go#L188: func (t *Time) After(d time.Duration) <-chan time.Time {
time.go#L189: done := make(chan time.Time, 1)
time.go#L190: t.plan(t.When(d), func(now time.Time) {
timer.go#L7: ch chan time.Time
timer.go#L11: func (t *timer) C() <-chan time.Time {
timer.go#L25: func (t *timer) do(now time.Time) {
github.com/gotd/td/clock
clock.go#L12: Now() time.Time
system.go#L9: func (s systemTimer) C() <-chan time.Time {
system.go#L25: func (s systemTicker) C() <-chan time.Time {
system.go#L47: func (systemClock) Now() time.Time { return time.Now() }
github.com/gotd/td/mtproto
read.go#L30: func checkMessageID(now time.Time, rawID int64) error {
github.com/gotd/td/mtproto/salts
salts.go#L20: func (s *Salts) Get(deadline time.Time) (int64, bool) {
github.com/gotd/td/proto
message_id.go#L83: func (id MessageID) Time() time.Time {
message_id.go#L104: func NewMessageID(now time.Time, typ MessageType) MessageID {
message_id.go#L132: now func() time.Time
message_id.go#L164: func NewMessageIDGen(now func() time.Time) *MessageIDGen {
github.com/gotd/td/telegram/auth
password.go#L154: func (c *Client) ResetPassword(ctx context.Context) (time.Time, error) {
password.go#L157: return time.Time{}, errors.Wrap(err, "reset password")
password.go#L161: return time.Time{}, &ResetFailedWaitError{Result: *v}
password.go#L165: return time.Time{}, nil
password.go#L167: return time.Time{}, errors.Errorf("unexpected type %T", v)
github.com/gotd/td/telegram/auth/qrlogin
token.go#L16: expires time.Time
token.go#L53: func (t Token) Expires() time.Time {
github.com/gotd/td/telegram/internal/manager
conn.go#L77: latest time.Time
github.com/gotd/td/transport
connection.go#L38: if err := c.conn.SetWriteDeadline(time.Time{}); err != nil {
connection.go#L60: if err := c.conn.SetReadDeadline(time.Time{}); err != nil {
github.com/klauspost/compress/gzip
gunzip.go#L56: ModTime time.Time // modification time
github.com/refraction-networking/utls
common.go#L560: Time func() time.Time
common.go#L952: created time.Time
common.go#L1160: func (c *Config) time() time.Time {
conn.go#L146: func (c *Conn) SetDeadline(t time.Time) error {
conn.go#L152: func (c *Conn) SetReadDeadline(t time.Time) error {
conn.go#L159: func (c *Conn) SetWriteDeadline(t time.Time) error {
u_public.go#L816: Created time.Time
u_roller.go#L89: client.SetDeadline(time.Time{}) // unset timeout
go.opentelemetry.io/otel/trace
auto.go#L522: func (s *autoSpan) addEvent(name string, tStamp time.Time, attrs []attribute.KeyValue) {
config.go#L67: timestamp time.Time
config.go#L80: func (cfg *SpanConfig) Timestamp() time.Time {
config.go#L157: timestamp time.Time
config.go#L167: func (cfg *EventConfig) Timestamp() time.Time {
config.go#L250: type timestampOption time.Time
config.go#L253: c.timestamp = time.Time(o)
config.go#L259: c.timestamp = time.Time(o)
config.go#L267: func WithTimestamp(t time.Time) SpanEventOption {
go.opentelemetry.io/otel/trace/internal/telemetry
span.go#L85: StartTime time.Time `json:"startTimeUnixNano,omitempty"`
span.go#L92: EndTime time.Time `json:"endTimeUnixNano,omitempty"`
span.go#L303: Time time.Time `json:"timeUnixNano,omitempty"`
go.uber.org/atomic
time.go#L36: var _zeroTime time.Time
time.go#L39: func NewTime(val time.Time) *Time {
time.go#L48: func (x *Time) Load() time.Time {
time.go#L53: func (x *Time) Store(val time.Time) {
time_ext.go#L27: func packTime(t time.Time) interface{} {
time_ext.go#L31: func unpackTime(v interface{}) time.Time {
time_ext.go#L32: if t, ok := v.(time.Time); ok {
time_ext.go#L35: return time.Time{}
golang.org/x/crypto/cryptobyte
asn1.go#L110: func (b *Builder) AddASN1GeneralizedTime(t time.Time) {
asn1.go#L121: func (b *Builder) AddASN1UTCTime(t time.Time) {
asn1.go#L492: func (s *String) ReadASN1GeneralizedTime(out *time.Time) bool {
asn1.go#L513: func (s *String) ReadASN1UTCTime(out *time.Time) bool {
golang.org/x/net/internal/socks
client.go#L17: noDeadline = time.Time{}
internal/poll
fd_poll_runtime.go#L132: func (fd *FD) SetDeadline(t time.Time) error {
fd_poll_runtime.go#L137: func (fd *FD) SetReadDeadline(t time.Time) error {
fd_poll_runtime.go#L142: func (fd *FD) SetWriteDeadline(t time.Time) error {
fd_poll_runtime.go#L146: func setDeadlineImpl(fd *FD, t time.Time, mode int) error {
io/fs
fs.go#L172: ModTime() time.Time // modification time
log
log.go#L114: func formatHeader(buf *[]byte, t time.Time, prefix string, flag int, file string, line int) {
net
dial.go#L145: Deadline time.Time
dial.go#L235: func minNonzeroTime(a, b time.Time) time.Time {
dial.go#L251: func (d *Dialer) deadline(ctx context.Context, now time.Time) (earliest time.Time) {
dial.go#L270: func partialDeadline(now, deadline time.Time, addrsRemaining int) (time.Time, error) {
dial.go#L276: return time.Time{}, errTimeout
dnsclient_unix.go#L361: lastChecked time.Time // last time resolv.conf was checked
dnsclient_unix.go#L415: var mtime time.Time
dnsconfig.go#L40: mtime time.Time // time of resolv.conf modification
fd_posix.go#L150: func (fd *netFD) SetDeadline(t time.Time) error {
fd_posix.go#L154: func (fd *netFD) SetReadDeadline(t time.Time) error {
fd_posix.go#L158: func (fd *netFD) SetWriteDeadline(t time.Time) error {
hosts.go#L46: expire time.Time
hosts.go#L48: mtime time.Time
interface.go#L184: lastFetched time.Time // last time routing information was fetched
net.go#L168: SetDeadline(t time.Time) error
net.go#L173: SetReadDeadline(t time.Time) error
net.go#L180: SetWriteDeadline(t time.Time) error
net.go#L248: func (c *conn) SetDeadline(t time.Time) error {
net.go#L259: func (c *conn) SetReadDeadline(t time.Time) error {
net.go#L270: func (c *conn) SetWriteDeadline(t time.Time) error {
net.go#L371: SetDeadline(t time.Time) error
net.go#L376: SetReadDeadline(t time.Time) error
net.go#L383: SetWriteDeadline(t time.Time) error
net.go#L531: noDeadline = time.Time{}
nss.go#L27: lastChecked time.Time // last time nsswitch.conf was checked
nss.go#L64: var mtime time.Time
nss.go#L97: mtime time.Time // time of nsswitch.conf modification
parse.go#L67: func (f *file) stat() (mtime time.Time, size int64, err error) {
parse.go#L70: return time.Time{}, 0, err
parse.go#L83: func stat(name string) (mtime time.Time, size int64, err error) {
parse.go#L86: return time.Time{}, 0, err
pipe.go#L31: func (d *pipeDeadline) set(t time.Time) {
pipe.go#L210: func (p *pipe) SetDeadline(t time.Time) error {
pipe.go#L219: func (p *pipe) SetReadDeadline(t time.Time) error {
pipe.go#L227: func (p *pipe) SetWriteDeadline(t time.Time) error {
tcpsock.go#L413: func (l *TCPListener) SetDeadline(t time.Time) error {
unixsock.go#L293: func (l *UnixListener) SetDeadline(t time.Time) error {
net/http
client.go#L174: func (c *Client) send(req *Request, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {
client.go#L197: func (c *Client) deadline() time.Time {
client.go#L201: return time.Time{}
client.go#L216: func send(ireq *Request, rt RoundTripper, deadline time.Time) (resp *Response, didTimeout func() bool, err error) {
client.go#L312: func timeBeforeContextDeadline(t time.Time, ctx context.Context) bool {
client.go#L356: func setRequestCancel(req *Request, rt RoundTripper, deadline time.Time) (stopTimer func(), didTimeout func() bool) {
cookie.go#L33: Expires time.Time // optional
cookie.go#L204: c.Expires = time.Time{}
cookie.go#L429: func validCookieExpires(t time.Time) bool {
fs.go#L245: func ServeContent(w ResponseWriter, req *Request, name string, modtime time.Time, content io.ReadSeeker) {
fs.go#L274: func serveContent(w ResponseWriter, r *Request, name string, modtime time.Time, sizeFunc func() (int64, error), content io.ReadSeeker) {
fs.go#L513: func checkIfUnmodifiedSince(r *Request, modtime time.Time) condResult {
fs.go#L562: func checkIfModifiedSince(r *Request, modtime time.Time) condResult {
fs.go#L583: func checkIfRange(w ResponseWriter, r *Request, modtime time.Time) condResult {
fs.go#L617: func isZeroTime(t time.Time) bool {
fs.go#L621: func setLastModified(w ResponseWriter, modtime time.Time) {
fs.go#L645: func checkPreconditions(w ResponseWriter, r *Request, modtime time.Time) (done bool, rangeHeader string) {
h2_bundle.go#L3780: conn.SetWriteDeadline(time.Time{})
h2_bundle.go#L4454: sc.conn.SetWriteDeadline(time.Time{})
h2_bundle.go#L5050: func (sc *http2serverConn) handlePingTimer(lastFrameReadTime time.Time) {
h2_bundle.go#L6100: sc.conn.SetReadDeadline(time.Time{})
h2_bundle.go#L6121: sc.conn.SetReadDeadline(time.Time{})
h2_bundle.go#L6804: func (w *http2responseWriter) SetReadDeadline(deadline time.Time) error {
h2_bundle.go#L6830: func (w *http2responseWriter) SetWriteDeadline(deadline time.Time) error {
h2_bundle.go#L7637: lastActive time.Time
h2_bundle.go#L7638: lastIdle time.Time // time last idle
h2_bundle.go#L8287: LastIdle time.Time
h2_bundle.go#L8845: var respHeaderTimer <-chan time.Time
h2_bundle.go#L9052: cc.lastIdle = time.Time{}
header.go#L129: func ParseTime(text string) (t time.Time, err error) {
responsecontroller.go#L85: func (c *ResponseController) SetReadDeadline(deadline time.Time) error {
responsecontroller.go#L89: case interface{ SetReadDeadline(time.Time) error }:
responsecontroller.go#L105: func (c *ResponseController) SetWriteDeadline(deadline time.Time) error {
responsecontroller.go#L109: case interface{ SetWriteDeadline(time.Time) error }:
server.go#L325: rwc.SetDeadline(time.Time{})
server.go#L499: func (c *response) SetReadDeadline(deadline time.Time) error {
server.go#L503: func (c *response) SetWriteDeadline(deadline time.Time) error {
server.go#L697: cr.rwc.SetReadDeadline(time.Time{})
server.go#L752: cr.rwc.SetReadDeadline(time.Time{})
server.go#L982: wholeReqDeadline time.Time // or zero if none
server.go#L983: hdrDeadline time.Time // or zero if none
server.go#L1948: c.rwc.SetReadDeadline(time.Time{})
server.go#L1949: c.rwc.SetWriteDeadline(time.Time{})
server.go#L2081: c.rwc.SetWriteDeadline(time.Time{})
server.go#L2102: c.rwc.SetReadDeadline(time.Time{})
server.go#L2113: c.rwc.SetReadDeadline(time.Time{})
socks_bundle.go#L23: socksnoDeadline = time.Time{}
transport.go#L1109: if w.tryDeliver(pconn, nil, time.Time{}) {
transport.go#L1121: w.tryDeliver(pconn, nil, time.Time{})
transport.go#L1194: var oldTime time.Time
transport.go#L1349: idleAt time.Time
transport.go#L1369: func (w *wantConn) tryDeliver(pc *persistConn, err error, idleAt time.Time) bool {
transport.go#L1649: delivered := w.tryDeliver(pc, err, time.Time{})
transport.go#L2145: idleAt time.Time // time it last become idle
transport.go#L2906: var respHeaderTimer <-chan time.Time
os
file.go#L674: func (f *File) SetDeadline(t time.Time) error {
file.go#L682: func (f *File) SetReadDeadline(t time.Time) error {
file.go#L692: func (f *File) SetWriteDeadline(t time.Time) error {
file_posix.go#L179: func Chtimes(name string, atime time.Time, mtime time.Time) error {
file_posix.go#L187: func chtimesUtimes(atime, mtime time.Time) [2]syscall.Timespec {
file_posix.go#L189: set := func(i int, t time.Time) {
file_posix.go#L215: func (f *File) setDeadline(t time.Time) error {
file_posix.go#L223: func (f *File) setReadDeadline(t time.Time) error {
file_posix.go#L231: func (f *File) setWriteDeadline(t time.Time) error {
root.go#L182: func (r *Root) Chtimes(name string, atime time.Time, mtime time.Time) error {
root_openat.go#L98: func rootChtimes(r *Root, name string, atime time.Time, mtime time.Time) error {
root_unix.go#L199: func chtimesat(parent int, name string, atime time.Time, mtime time.Time) error {
stat_linux.go#L46: func atime(fi FileInfo) time.Time {
types_unix.go#L19: modTime time.Time
types_unix.go#L25: func (fs *fileStat) ModTime() time.Time { return fs.modTime }
runtime/debug
garbage.go#L15: LastGC time.Time // time of last collection
garbage.go#L19: PauseEnd []time.Time // pause end times history, most recent first
garbage.go#L57: stats.PauseEnd = make([]time.Time, 0, maxPause)
vendor/golang.org/x/crypto/cryptobyte
asn1.go#L110: func (b *Builder) AddASN1GeneralizedTime(t time.Time) {
asn1.go#L121: func (b *Builder) AddASN1UTCTime(t time.Time) {
asn1.go#L492: func (s *String) ReadASN1GeneralizedTime(out *time.Time) bool {
asn1.go#L513: func (s *String) ReadASN1UTCTime(out *time.Time) bool {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux 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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |