mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-19 15:06:25 +01:00
5b7e8d1309
* lib/backup/s3remote: update AWS SDK to v2 * Update lib/backup/s3remote/s3.go Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com> * lib/backup/s3remote: refactor error handling Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com>
14 lines
350 B
Go
14 lines
350 B
Go
package timeconv
|
|
|
|
import "time"
|
|
|
|
// FloatSecondsDur converts a fractional seconds to duration.
|
|
func FloatSecondsDur(v float64) time.Duration {
|
|
return time.Duration(v * float64(time.Second))
|
|
}
|
|
|
|
// DurSecondsFloat converts a duration into fractional seconds.
|
|
func DurSecondsFloat(d time.Duration) float64 {
|
|
return float64(d) / float64(time.Second)
|
|
}
|