Home
last modified time | relevance | path

Searched refs:env (Results 26 – 50 of 434) sorted by relevance

12345678910>>...18

/plugin/combo/vendor/symfony/process/
H A DProcess.php58 private $env = []; variable in Symfony\\Component\\Process\\Process
137 * @param array|null $env The environment variables or null to use the same environment as the current PHP process
143 public function __construct(array $command, string $cwd = null, array $env = null, $input = null, ?float $timeout = 60) argument
159 if (null !== $env) {
160 $this->setEnv($env);
184 * @param array|null $env The environment variables or null to use the same environment as the current PHP process
192 public static function fromShellCommandline(string $command, string $cwd = null, array $env = null, $input = null, ?float $timeout = 60) argument
194 $process = new static([], $cwd, $env, $input, $timeout);
250 public function run(callable $callback = null, array $env = []): int argument
252 $this->start($callback, $env);
269 mustRun(callable $callback = null, array $env = []) global() argument
297 start(callable $callback = null, array $env = []) global() argument
388 restart(callable $callback = null, array $env = []) global() argument
1148 setEnv(array $env) global() argument
1542 prepareWindowsCommandLine(string $cmd, array& $env) global() argument
1634 replacePlaceholders(string $commandline, array $env) global() argument
[all...]
H A DPhpProcess.php31 * @param array|null $env The environment variables or null to use the same environment as the current PHP process
35 public function __construct(string $script, string $cwd = null, array $env = null, int $timeout = 60, array $php = null) argument
50 parent::__construct($php, $cwd, $env, $script, $timeout);
56 public static function fromShellCommandline(string $command, string $cwd = null, array $env = null, $input = null, ?float $timeout = 60) argument
64 public function start(callable $callback = null, array $env = []) argument
70 parent::start($callback, $env);
/plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/Extension/
H A DDateTest.php20 private $env; variable in Twig_Tests_Extension_DateTest
24 $this->env = new Twig_Environment($this->getMockBuilder('Twig_LoaderInterface')->getMock());
33 $this->assertEquals($expected, $extension->diff($this->env, $date, $now));
39 …/^[0-9]+ (second|minute|hour|day|month|year)s* ago$/', $extension->diff($this->env, '24-07-2014'));
48 …$this->assertEquals($expected, $extension->diff($this->env, new DateTime($date), new DateTime($now…
54 …-9]+ (second|minute|hour|day|month|year)s* ago$/', $extension->diff($this->env, new DateTime('24-0…
69 $extension->diff($this->env, $date, $now);
H A DIntlTest.php21 $env = $this->getMockBuilder('Twig_Environment')->disableOriginalConstructor()->getMock();
22 …$date = twig_localized_date_filter($env, new DateTime('2015-01-01T00:00:00', new DateTimeZone('UTC…
33 $env = $this->getMockBuilder('Twig_Environment')->disableOriginalConstructor()->getMock();
34 …$date = twig_localized_date_filter($env, new DateTime('2017-11-19T00:00:00Z'), 'short', 'long', 'f…
H A DTextTest.php17 private $env; variable in Twig_Tests_Extension_TextTest
21 … $this->env = $this->getMockBuilder('Twig_Environment')->disableOriginalConstructor()->getMock();
22 $this->env
34 $output = twig_truncate_filter($this->env, $input, $length, $preserve, $separator);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudBuild/
H A DSecretManagerSecret.php25 public $env; variable in Google\\Service\\CloudBuild\\SecretManagerSecret
34 public function setEnv($env) argument
36 $this->env = $env;
43 return $this->env;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AIPlatformNotebooks/
H A DVertexAIParameters.php25 public $env; variable in Google\\Service\\AIPlatformNotebooks\\VertexAIParameters
34 public function setEnv($env) argument
36 $this->env = $env;
43 return $this->env;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
H A DContaineranalysisGoogleDevtoolsCloudbuildV1SecretManagerSecret.php25 public $env; variable in Google\\Service\\ContainerAnalysis\\ContaineranalysisGoogleDevtoolsCloudbuildV1SecretManagerSecret
34 public function setEnv($env) argument
36 $this->env = $env;
43 return $this->env;
H A DCommand.php34 public $env; variable in Google\\Service\\ContainerAnalysis\\Command
79 public function setEnv($env) argument
81 $this->env = $env;
88 return $this->env;
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php369 if (null !== $charset = $env->getCharset()) {
438 $date = twig_date_converter($env, $date, false);
699 function twig_first(Environment $env, $item) argument
701 $elements = twig_slice($env, $item, 0, 1, false);
713 function twig_last(Environment $env, $item) argument
886 if (null !== $charset = $env->getCharset()) {
1021 $charset = $env->getCharset();
1332 if (null !== $charset = $env->getCharset()) {
1348 if (null !== $charset = $env->getCharset()) {
1364 if (null !== $charset = $env->getCharset()) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1CanaryEvaluationMetricLabels.php28 public $env; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1CanaryEvaluationMetricLabels
41 public function setEnv($env) argument
43 $this->env = $env;
50 return $this->env;
/plugin/jplayer/vendor/symfony/process/
H A DProcess.php55 private $env; variable in Symfony\\Component\\Process\\Process
160 if (null !== $env) {
274 $env = null;
293 if (null === $env) {
294 $env = $this->env;
297 $env += $this->env;
1117 return $this->env;
1138 $env = array_filter($env, function ($value) {
1142 $this->env = $env;
1730 $env = [];
[all …]
H A DPhpProcess.php30 …* @param array|null $env The environment variables or null to use the same environment as the…
34 …public function __construct($script, $cwd = null, array $env = null, $timeout = 60, array $options… argument
53 parent::__construct($php, $cwd, $env, $script, $timeout, $options);
72 $env = 1 < \func_num_args() ? func_get_arg(1) : null;
74 parent::start($callback, $env);
/plugin/diagramsnet/lib/math/extensions/TeX/
H A Dboldsymbol.js19env.boldsymbol){var e=f.Get("mathvariant");if(e==null){f.mathvariant=a.VARIANT.BOLD}else{f.mathvar…
H A DAMScd.js19env.CD_minw||a.harrowsize,minh:this.stack.env.CD_minh||a.varrowsize})},CD_arrow:function(g){var l=…
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DNodeTraverser.php27 protected $env; variable in Twig\\NodeTraverser
33 public function __construct(Environment $env, array $visitors = []) argument
35 $this->env = $env;
69 $node = $visitor->enterNode($node, $this->env);
81 return $visitor->leaveNode($node, $this->env);
H A DTemplateWrapper.php21 private $env; variable in Twig\\TemplateWrapper
30 public function __construct(Environment $env, Template $template) argument
32 $this->env = $env;
97 $context = $this->env->mergeGlobals($context);
127 $this->template->displayBlock($name, $this->env->mergeGlobals($context));
H A DTemplate.php39 protected $env; variable in Twig\\Template
44 public function __construct(Environment $env) argument
46 $this->env = $env;
105 return $this->env;
347 return $this->env->resolveTemplate($template);
360 return $this->env->loadClass($class, $template, $index);
363 return $this->env->loadTemplate($template, $index);
477 if ($ignoreStrictCheck || !$this->env->isStrictVariables()) {
559 if ($ignoreStrictCheck || !$this->env->isStrictVariables()) {
652 if ($ignoreStrictCheck || !$this->env->isStrictVariables()) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OnDemandScanning/
H A DCommand.php34 public $env; variable in Google\\Service\\OnDemandScanning\\Command
79 public function setEnv($env) argument
81 $this->env = $env;
88 return $this->env;
/plugin/latexit/syntax/
H A Dmathjax.php86 foreach (self::$ENVIRONMENTS as $env) {
87 …$this->Lexer->addEntryPattern('\\\\begin{' . $env . '}(?=.*?\\\\end{' . $env . '})', $mode, 'plugi…
95 foreach (self::$ENVIRONMENTS as $env) {
96 $this->Lexer->addExitPattern('\\\\end{' . $env . '}', 'plugin_latexit_mathjax');
/plugin/combo/.travis/
H A D.travis.yml11 # https://docs.travis-ci.com/user/build-matrix/#excluding-jobs-with-env-value
19 env: DOKUWIKI=stable # the last version of dokuwiki (master = dev, old-stable = previous)
23 env: DOKUWIKI=stable # the last version of dokuwiki (master = dev, old-stable = previous)
27 env: DOKUWIKI=stable # the last version of dokuwiki (master = dev, old-stable = previous)
30 # env: DOKUWIKI=stable # the last version of dokuwiki (master = dev, old-stable = previous)
33 # env: DOKUWIKI=stable # the last version of dokuwiki (master = dev, old-stable = previous)
38 # - set | grep TRAVIS # env variable
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudMachineLearningEngine/
H A DGoogleCloudMlV1ContainerSpec.php71 public function setEnv($env) argument
73 $this->env = $env;
80 return $this->env;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/PHP53/
H A DFilterInclude.php3 $env = new \Twig\Environment(new \Twig\Loader\ArrayLoader([])); variable
4 $env->addFilter(new \Twig\TwigFilter('anonymous', function () {}));
6 return $env;
H A DFunctionInclude.php3 $env = new \Twig\Environment(new \Twig\Loader\ArrayLoader([])); variable
4 $env->addFunction(new \Twig\TwigFunction('anonymous', function () {}));
6 return $env;
H A DTestInclude.php3 $env = new \Twig\Environment(new \Twig\Loader\ArrayLoader([])); variable
4 $env->addTest(new \Twig\TwigTest('anonymous', function () {}));
6 return $env;

12345678910>>...18