MCPcopy Create free account
hub / github.com/FastLED/FastLED / add_process

Method add_process

ci/util/running_process_group.py:139–146  ·  view source on GitHub ↗

Add a process to the group. Args: process: RunningProcess instance to add

(self, process: RunningProcess)

Source from the content-addressed store, hash-verified

137 self._status_monitoring_active: bool = False
138
139 def add_process(self, process: RunningProcess) -> None:
140 """Add a process to the group.
141
142 Args:
143 process: RunningProcess instance to add
144 """
145 if process not in self.processes:
146 self.processes.append(process)
147
148 def add_dependency(
149 self, process: RunningProcess, depends_on: RunningProcess

Callers 3

mainFunction · 0.95
add_dependencyMethod · 0.95
add_sequential_chainMethod · 0.95

Calls 1

appendMethod · 0.45

Tested by 1

mainFunction · 0.76