simplebench.timeout.enums module🔗

Enums for the simplebench.timeout module.

class simplebench.timeout.enums.TimeoutState(value)[source]🔗

Bases: str, Enum

Enums for the simplebench.timeout module.

CANCELED = 'CANCELED'🔗

The operation was canceled before completion.

FAILED = 'FAILED'🔗

The operation failed due to an exception other than timeout.

FINISHED = 'FINISHED'🔗

The operation completed successfully within the time limit.

INTERRUPTED = 'INTERRUPTED'🔗

The operation was interrupted before completion.

PENDING = 'PENDING'🔗

The operation is pending and has not started yet.

RUNNING = 'RUNNING'🔗

The operation is currently in progress.

TIMED_OUT = 'TIMED_OUT'🔗

The operation exceeded the allowed time limit.