MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / child_thread

Method child_thread

tensorflow/python/debug/cli/curses_ui_test.py:320–324  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

318 def testCursesUiInChildThreadStartsWithoutException(self):
319 result = queue.Queue()
320 def child_thread():
321 try:
322 MockCursesUI(40, 80)
323 except ValueError as e:
324 result.put(e)
325 t = threading.Thread(target=child_thread)
326 t.start()
327 t.join()

Callers

nothing calls this directly

Calls 2

MockCursesUIClass · 0.85
putMethod · 0.45

Tested by

no test coverage detected