Home
last modified time | relevance | path

Searched refs:server_thread (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/runtime/tools/
H A Ddemoserver.py83 server_thread = threading.Thread(target=server.serve_forever) variable
86 server_thread.daemon = True
87 server_thread.start()
88 print("Server loop running in thread: ", server_thread.name)
/vim-8.2.3635/src/testdir/
H A Dtest_netbeans.py192 server_thread = threading.Thread(target=server.serve_forever) variable
193 server_thread.start()
202 while server_thread.isAlive():
203 server_thread.join(1)
H A Dtest_channel.py267 server_thread = threading.Thread(target=server.serve_forever)
268 server_thread.start()
277 while server_thread.is_alive():
278 server_thread.join(1)