- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ExpectedExpiryTime (0.17 sec)
-
internal/bucket/lifecycle/noncurrentversion.go
} // Days == 0 indicates immediate tiering, i.e object is eligible for tiering since it became noncurrent. if n.NoncurrentDays == 0 { return obj.SuccessorModTime, true } return ExpectedExpiryTime(obj.SuccessorModTime, int(n.NoncurrentDays)), true
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Dec 14 17:41:44 UTC 2021 - 5.3K bytes - Viewed (0) -
internal/bucket/lifecycle/delmarker-expiration.go
// applicable, returns false otherwise. func (de DelMarkerExpiration) NextDue(obj ObjectOpts) (time.Time, bool) { if !obj.IsLatest || !obj.DeleteMarker { return time.Time{}, false } return ExpectedExpiryTime(obj.ModTime, de.Days), true
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 01 01:11:10 UTC 2024 - 2.3K bytes - Viewed (0) -
internal/bucket/lifecycle/transition.go
return t.Date.Time, true } // Days == 0 indicates immediate tiering, i.e object is eligible for tiering since its creation. if t.Days == 0 { return obj.ModTime, true } return ExpectedExpiryTime(obj.ModTime, int(t.Days)), true
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jan 10 17:07:49 UTC 2022 - 5.1K bytes - Viewed (0)