![]() |
Qucs-S S-parameter Viewer & RF Synthesis Tools
|

Public Member Functions | |
| float | get_time (self) |
| bool | started (self) |
| Optional[float] | remaining (self) |
| Optional[float] | elapsed (self) |
| bool | finished (self) |
| float | percentage (self) |
| Optional[float] | speed (self) |
| Optional[float] | time_remaining (self) |
Public Attributes | |
| finished_time | |
| finished_speed | |
Protected Member Functions | |
| None | _reset (self) |
Static Protected Attributes | |
| GetTimeCallable | _get_time |
| Deque | _progress |
| RLock | _lock = field(repr=False, default_factory=RLock) |
Information regarding a progress task. This object should be considered read-only outside of the :class:`~Progress` class.
|
protected |
Reset progress.
| Optional[float] pip._vendor.rich.progress.Task.elapsed | ( | self | ) |
Optional[float]: Time elapsed since task was started, or ``None`` if the task hasn't started.
| bool pip._vendor.rich.progress.Task.finished | ( | self | ) |
Check if the task has finished.
| float pip._vendor.rich.progress.Task.get_time | ( | self | ) |
float: Get the current time, in seconds.
| float pip._vendor.rich.progress.Task.percentage | ( | self | ) |
float: Get progress of task as a percentage. If a None total was set, returns 0
| Optional[float] pip._vendor.rich.progress.Task.remaining | ( | self | ) |
Optional[float]: Get the number of steps remaining, if a non-None total was set.
| Optional[float] pip._vendor.rich.progress.Task.speed | ( | self | ) |
Optional[float]: Get the estimated speed in steps per second.
| bool pip._vendor.rich.progress.Task.started | ( | self | ) |
bool: Check if the task as started.
| Optional[float] pip._vendor.rich.progress.Task.time_remaining | ( | self | ) |
Optional[float]: Get estimated time to completion, or ``None`` if no data.
|
staticprotected |