Lines Matching refs:timeout
266 .. method:: set(key, value[, timeout])
269 `timeout` the timeout of the key. If timeout is not provided
270 a default timeout or no timeout should be assumed, if it's
280 is added before the actual cache key and the timeout for the bytecode in
281 the cache system. We recommend a high (or no) timeout.
287 def __init__(self, client, prefix='jinja2/bytecode/', timeout=None):
290 self.timeout = timeout
299 if self.timeout is not None:
300 args += (self.timeout,)