MCPcopy Index your code
hub / github.com/NVIDIA/TensorRT-LLM / start

Method start

tests/unittest/executor/test_base_worker.py:69–74  ·  view source on GitHub ↗

Override start to mark as started - no background threads needed for test.

(self)

Source from the content-addressed store, hash-verified

67 self._started = False
68
69 def start(self):
70 """Override start to mark as started - no background threads needed for test."""
71 if not self._started:
72 self._started = True
73 # For testing, we don't need background threads
74 # The engine's await_responses will handle the mock responses
75
76 def shutdown(self):
77 self._started = False

Calls

no outgoing calls

Tested by

no test coverage detected