Mark the start of the build process.
(self)
| 29 | _start_time: Optional[float] = None |
| 30 | |
| 31 | def start(self) -> None: |
| 32 | """Mark the start of the build process.""" |
| 33 | self._start_time = time.time() |
| 34 | self._checkpoints["start"] = self._start_time |
| 35 | |
| 36 | def checkpoint(self, name: str) -> None: |
| 37 | """Record a timing checkpoint.""" |