Home
last modified time | relevance | path

Searched refs:timeoutType (Results 1 – 3 of 3) sorted by relevance

/plugin/jplayer/vendor/symfony/process/Exception/
H A DProcessTimedOutException.php27 private $timeoutType; variable in Symfony\\Component\\Process\\Exception\\ProcessTimedOutException
29 public function __construct(Process $process, $timeoutType) argument
32 $this->timeoutType = $timeoutType;
48 return self::TYPE_GENERAL === $this->timeoutType;
53 return self::TYPE_IDLE === $this->timeoutType;
58 switch ($this->timeoutType) {
66 … throw new \LogicException(sprintf('Unknown timeout type "%d".', $this->timeoutType));
/plugin/combo/vendor/symfony/process/Exception/
H A DProcessTimedOutException.php27 private $timeoutType; variable in Symfony\\Component\\Process\\Exception\\ProcessTimedOutException
29 public function __construct(Process $process, int $timeoutType) argument
32 $this->timeoutType = $timeoutType;
48 return self::TYPE_GENERAL === $this->timeoutType;
53 return self::TYPE_IDLE === $this->timeoutType;
58 switch ($this->timeoutType) {
66 throw new \LogicException(sprintf('Unknown timeout type "%d".', $this->timeoutType));
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DHttpRouteAction.php33 protected $timeoutType = Duration::class; variable in Google\\Service\\Compute\\HttpRouteAction