Lines Matching full:timeout
30 private $timeout = 60; variable in Symfony\\Component\\Process\\ProcessBuilder
184 * Sets the process timeout.
186 * To disable the timeout, set this value to null.
188 * @param float|null $timeout
194 public function setTimeout($timeout) argument
196 if (null === $timeout) {
197 $this->timeout = null;
202 $timeout = (float) $timeout;
204 if ($timeout < 0) {
205 …throw new InvalidArgumentException('The timeout value must be a valid positive integer or float nu…
208 $this->timeout = $timeout;
266 …$process = new Process($arguments, $this->cwd, $this->env, $this->input, $this->timeout, $this->op…