( cls )
| 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 = '' |
no test coverage detected