Examples using... time.Time

Recent
A Pool is a set of temporary objects that may be individually saved and retrieved.
Package errors implements functions to manipulate errors.
QueryRowContext executes a query that is expected to return at most one row. QueryRowContext always returns a non-nil value. Errors are deferred until Row's Scan method is called. If the query selects no rows, the *Row's Scan will return ErrNoRows. Otherwise, the *Row's Scan scans the first selected...
Multistream controls whether the reader supports multistream files.
Rate limiting is an important mechanism for controlling resource utilization and maintaining quality of service. Go elegantly supports rate limiting with goroutines, channels, and tickers.