Lines Matching refs:current_section
34 current_section: Optional[GitlabSection] = None
43 section_is_created = bool(self.current_section)
45 self.current_section and self.current_section.has_started
55 self.current_section.type
56 if self.current_section
71 if not self.current_section:
75 self.current_section.type, self.fallback_timeout
78 if self.current_section.delta_time() > timeout_duration:
80 f"Gitlab Section {self.current_section} has timed out",
85 if self.current_section and not self.current_section.has_finished:
86 self._buffer.append(self.current_section.end())
87 self.current_section = None
92 if self.current_section and self.current_section.id == new_section.id:
95 self.current_section = new_section