(self)
| 348 | return re.compile(r'\s*Total time:\s*([0-9.]*) s') |
| 349 | |
| 350 | def get_coding_time_pattern(self) -> re.Pattern: |
| 351 | return re.compile(r'\s*Coding time:\s*([0-9.]*) s') |
| 352 | |
| 353 | def get_coding_rate_pattern(self) -> re.Pattern: |
| 354 | return re.compile(r'\s*Coding rate:\s*([0-9.]*) MT/s') |
nothing calls this directly
no outgoing calls
no test coverage detected