mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
docs(schedule): document recurring gate exhaustion
This commit is contained in:
@@ -38,7 +38,11 @@ const LOCAL_TIME = /^(?<hour>\d{2}):(?<minute>\d{2}):(?<second>\d{2})(?:\.(?<fra
|
||||
const IANA_ZONE = /^[A-Za-z][A-Za-z0-9_+.-]*(?:\/[A-Za-z0-9_+.-]+)+$/
|
||||
const OFFSET_NAME = /^GMT(?:(?<sign>[+-])(?<hour>\d{2}):(?<minute>\d{2})(?::(?<second>\d{2}))?)?$/
|
||||
|
||||
/** Whether the durable recurring gate has no four-digit-year admission left. */
|
||||
/**
|
||||
* Whether the durable recurring gate has no four-digit-year admission left.
|
||||
* @param lastAcceptedAt - Latest accepted recurring batch, when any.
|
||||
* @returns `true` only when another compliant batch time is unrepresentable.
|
||||
*/
|
||||
export function isRecurringGateExhausted(lastAcceptedAt: string | undefined): boolean {
|
||||
return lastAcceptedAt !== undefined
|
||||
&& Date.parse(lastAcceptedAt) + MIN_RECURRING_INTERVAL_SECONDS * 1_000 > MAX_FOUR_DIGIT_YEAR_MS
|
||||
|
||||
Reference in New Issue
Block a user