diff options
author | zeripath <art27@cantab.net> | 2021-08-23 23:07:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 18:07:40 -0400 |
commit | 1cd4a3b963946d27620c48eb968dc81e5af432af (patch) | |
tree | f8744b95a3b96e29f6fc0ac711288f39e4760cbd /vendor/go.uber.org/atomic/duration.go | |
parent | f31e7a67cfc9662af2ae2dab3f4687457545f60c (diff) | |
download | gitea-1cd4a3b963946d27620c48eb968dc81e5af432af.tar.gz gitea-1cd4a3b963946d27620c48eb968dc81e5af432af.zip |
Update caddyserver/certmagic (#16789)
Fixes issue with windows users & letsencrypt
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'vendor/go.uber.org/atomic/duration.go')
-rw-r--r-- | vendor/go.uber.org/atomic/duration.go | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/vendor/go.uber.org/atomic/duration.go b/vendor/go.uber.org/atomic/duration.go index 2bad9c010f..207594f5e8 100644 --- a/vendor/go.uber.org/atomic/duration.go +++ b/vendor/go.uber.org/atomic/duration.go @@ -37,10 +37,10 @@ type Duration struct { var _zeroDuration time.Duration // NewDuration creates a new Duration. -func NewDuration(v time.Duration) *Duration { +func NewDuration(val time.Duration) *Duration { x := &Duration{} - if v != _zeroDuration { - x.Store(v) + if val != _zeroDuration { + x.Store(val) } return x } @@ -51,19 +51,19 @@ func (x *Duration) Load() time.Duration { } // Store atomically stores the passed time.Duration. -func (x *Duration) Store(v time.Duration) { - x.v.Store(int64(v)) +func (x *Duration) Store(val time.Duration) { + x.v.Store(int64(val)) } // CAS is an atomic compare-and-swap for time.Duration values. -func (x *Duration) CAS(o, n time.Duration) bool { - return x.v.CAS(int64(o), int64(n)) +func (x *Duration) CAS(old, new time.Duration) (swapped bool) { + return x.v.CAS(int64(old), int64(new)) } // Swap atomically stores the given time.Duration and returns the old // value. -func (x *Duration) Swap(o time.Duration) time.Duration { - return time.Duration(x.v.Swap(int64(o))) +func (x *Duration) Swap(val time.Duration) (old time.Duration) { + return time.Duration(x.v.Swap(int64(val))) } // MarshalJSON encodes the wrapped time.Duration into JSON. |