time.Duration.Seconds (method)

11 uses

	time (current package)
		time.go#L753: func (d Duration) Seconds() float64 {

	golang.org/x/net/internal/timeseries
		timeseries.go#L437: 					fraction := overlapEnd.Sub(overlapStart).Seconds() / base.Seconds()

	golang.org/x/net/trace
		events.go#L360: 	return fmt.Sprintf("%.6f", elapsed.Seconds())
		trace.go#L664: func (m minCond) String() string      { return fmt.Sprintf("≥%gs", time.Duration(m).Seconds()) }
		trace.go#L900: 	return fmt.Sprintf("%.6f", t.Seconds())
		trace.go#L935: 	b := []byte(fmt.Sprintf("%.6f", d.Seconds()))

	google.golang.org/grpc/internal/transport
		bdp_estimator.go#L111: 	rttSample := time.Since(b.sentAt).Seconds()

	net/http/pprof
		pprof.go#L106: 	return ok && srv.WriteTimeout != 0 && seconds >= srv.WriteTimeout.Seconds()

	testing
		benchmark.go#L390: 	return (float64(r.Bytes) * float64(r.N) / 1e6) / r.T.Seconds()
		testing.go#L739: 	return fmt.Sprintf("%.2fs", d.Seconds())