Lines Matching full:timeout
261 .. method:: set(key, value[, timeout])
264 `timeout` the timeout of the key. If timeout is not provided
265 a default timeout or no timeout should be assumed, if it's
275 is added before the actual cache key and the timeout for the bytecode in
276 the cache system. We recommend a high (or no) timeout.
286 def __init__(self, client, prefix='jinja2/bytecode/', timeout=None,
290 self.timeout = timeout
305 if self.timeout is not None:
306 args += (self.timeout,)