Lines Matching refs:timeout
18 async with asyncio.timeout(0.01) as cm:
53 async with asyncio.timeout(0.01):
64 async with asyncio.timeout(10) as cm:
76 async with asyncio.timeout(None) as cm:
101 async with asyncio.timeout(0) as cm:
113 async with asyncio.timeout(0) as cm:
125 async with asyncio.timeout(-11) as cm:
135 async with asyncio.timeout(0.01) as cm:
146 async with asyncio.timeout(0.01):
151 async with asyncio.timeout(10) as cm:
159 async with asyncio.timeout(0.001):
169 async with asyncio.timeout(0.002):
171 async with asyncio.timeout(0.1):
177 # After the inner timeout is an expensive operation which should
178 # be stopped by the outer timeout.
184 async with asyncio.timeout(0.1): # (1)
186 async with asyncio.timeout(0.01): # (2)
222 async with asyncio.timeout(10) as cm:
227 async with asyncio.timeout(0.01) as cm:
232 async with asyncio.timeout(10) as cm:
238 async with asyncio.timeout(None) as cm:
243 async with asyncio.timeout(0.01):
248 async with asyncio.timeout(0.01):
259 async with asyncio.timeout(0.0):
270 async with asyncio.timeout(1.0):
276 async with asyncio.timeout(0):