Home | History | Annotate | Download | only in python2.7

Lines Matching refs:timeout

192     - timeout
204 timeout = None
225 self.timeout. If you need to do periodic tasks, do them in
267 Respects self.timeout.
270 # handle_request before self.timeout was available.
271 timeout = self.socket.gettimeout()
272 if timeout is None:
273 timeout = self.timeout
274 elif self.timeout is not None:
275 timeout = min(timeout, self.timeout)
276 fd_sets = _eintr_retry(select.select, [self], [], [], timeout)
301 """Called if no new request arrives within self.timeout.
391 - timeout
510 timeout = 300
547 """Wait for zombies after self.timeout seconds of inactivity.
685 # A timeout to apply to the request socket, if not None.
686 timeout = None
694 if self.timeout is not None:
695 self.connection.settimeout(self.timeout)