golang.org/x/net/internal/timeseries.tsLevel.end (field)
16 uses
golang.org/x/net/internal/timeseries (current package)
timeseries.go#L91: end time.Time // end timestamp for this level
timeseries.go#L100: l.end = time.Time{}
timeseries.go#L185: ts.pendingTime = ts.levels[0].end
timeseries.go#L202: index := (ts.numBuckets - 1) - int(level.end.Sub(t)/level.size)
timeseries.go#L226: if !t.After(ts.levels[0].end) {
timeseries.go#L231: if !level.end.Before(t) {
timeseries.go#L237: if !t.Before(level.end.Add(level.size * time.Duration(ts.numBuckets))) {
timeseries.go#L241: level.end = time.Unix(0, (t.UnixNano()/level.size.Nanoseconds())*level.size.Nanoseconds())
timeseries.go#L244: for t.After(level.end) {
timeseries.go#L245: level.end = level.end.Add(level.size)
timeseries.go#L251: t = level.end
timeseries.go#L258: if ts.levels[0].end.Before(now) {
timeseries.go#L294: if ts.levels[0].end.Before(now) {
timeseries.go#L368: if !start.Before(l.end.Add(-l.size * time.Duration(ts.numBuckets))) {
timeseries.go#L400: srcStart := l.end.Add(-srcInterval * time.Duration(ts.numBuckets))
![]() |
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. |