MCPcopy Create free account
hub / github.com/ycm-core/YouCompleteMe / Executor

Method Executor

python/ycm/client/base_request.py:207–213  ·  view source on GitHub ↗
( cls )

Source from the content-addressed store, hash-verified

205 # reducing loading time since this module is slow to import.
206 @classmethod
207 def Executor( cls ):
208 try:
209 return cls.executor
210 except AttributeError:
211 from ycm.unsafe_thread_pool_executor import UnsafeThreadPoolExecutor
212 cls.executor = UnsafeThreadPoolExecutor( max_workers = 30 )
213 return cls.executor
214
215
216 server_location = ''

Callers 1

_TalkToHandlerAsyncMethod · 0.80

Calls 1

Tested by

no test coverage detected