Home
last modified time | relevance | path

Searched refs:env (Results 1 – 25 of 431) sorted by relevance

12345678910>>...18

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
DExpressionParserTest.php28 …$env = new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(), ['cache' …
29 $parser = new Parser($env);
31 $parser->parse($env->tokenize(new Source($template, 'index')));
57 …$env = new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(), ['cache' …
58 $stream = $env->tokenize(new Source($template, ''));
59 $parser = new Parser($env);
70 …$env = new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(), ['cache' …
71 $parser = new Parser($env);
73 $parser->parse($env->tokenize(new Source($template, 'index')));
165 …$env = new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(), ['cache' …
[all …]
DescapingTest.php150 protected $env; variable in Twig_Test_EscapingTest
154 …$this->env = new \Twig\Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(…
160 …$this->assertEquals($value, twig_escape_filter($this->env, $key, 'html'), 'Failed to escape: '.$ke…
167 …$this->assertEquals($value, twig_escape_filter($this->env, $key, 'html_attr'), 'Failed to escape: …
174 …$this->assertEquals($value, twig_escape_filter($this->env, $key, 'js'), 'Failed to escape: '.$key);
180 $this->assertEquals('', twig_escape_filter($this->env, '', 'js'));
185 $this->assertEquals('123', twig_escape_filter($this->env, '123', 'js'));
191 …$this->assertEquals($value, twig_escape_filter($this->env, $key, 'css'), 'Failed to escape: '.$key…
197 $this->assertEquals('', twig_escape_filter($this->env, '', 'css'));
202 $this->assertEquals('123', twig_escape_filter($this->env, '123', 'css'));
[all …]
DFileCachingTest.php19 private $env; variable in Twig_Tests_FileCachingTest
33 …$this->env = new Environment(new ArrayLoader(['index' => 'index', 'index2' => 'index2']), ['cache'…
47 $this->env->load($name);
48 $cacheFileName = $this->env->getCacheFilename($name);
59 $this->env->load($name);
60 $cacheFileName = $this->env->getCacheFilename($name);
63 $this->env->clearCacheFiles();
/plugin/asciidocjs/node_modules/supports-color/
Dindex.js6 const {env} = process; constant
21 if ('FORCE_COLOR' in env) {
22 if (env.FORCE_COLOR === 'true') {
24 } else if (env.FORCE_COLOR === 'false') {
27 forceColor = env.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(env.FORCE_COLOR, 10), 3);
65 if (env.TERM === 'dumb') {
83 if ('CI' in env) {
84 …YOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE'].some(sign => sign in env) || env.CI_NAME === 'co…
91 if ('TEAMCITY_VERSION' in env) {
92 return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/.ci/
Drun-elasticsearch.sh33 --env node.name=$es_node_name
34 --env cluster.name=$cluster_name
35 --env cluster.initial_master_nodes=$master_node_name
36 --env discovery.seed_hosts=$master_node_name
37 --env cluster.routing.allocation.disk.threshold_enabled=false
38 --env bootstrap.memory_lock=true
39 --env node.attr.testattr=test
40 --env path.repo=/tmp
41 --env repositories.url.allowed_urls=http://snapshot.test*
42 --env ingest.geoip.downloader.enabled=false
[all …]
/plugin/findologicxmlexport/vendor/sebastian/environment/tests/
DRuntimeTest.php20 private $env; variable in SebastianBergmann\\Environment\\RuntimeTest
24 $this->env = new Runtime;
36 $this->assertInternalType('boolean', $this->env->canCollectCodeCoverage());
46 $this->assertInternalType('string', $this->env->getBinary());
54 $this->assertInternalType('boolean', $this->env->isHHVM());
64 $this->assertInternalType('boolean', $this->env->isPHP());
75 $this->assertInternalType('boolean', $this->env->hasXdebug());
88 $this->assertInternalType('string', $this->env->getNameWithVersion());
98 $this->assertInternalType('string', $this->env->getName());
108 $this->assertInternalType('string', $this->env->getVersion());
[all …]
/plugin/diagramsnet/lib/math/extensions/TeX/
Dtext-macros.js19env=MathJax.Hub.Insert({},e);this.stack={env:this.env};this.string=f;this.i=0;this.mml=[];this.tex… property
/plugin/findologicxmlexport/vendor/twig/twig/src/NodeVisitor/
DEscaperNodeVisitor.php45 protected function doEnterNode(Node $node, Environment $env) argument
48 …if ($env->hasExtension('\Twig\Extension\EscaperExtension') && $defaultStrategy = $env->getExtensio…
56 …e->getAttribute('name')]) ? $this->blocks[$node->getAttribute('name')] : $this->needEscaping($env);
64 protected function doLeaveNode(Node $node, Environment $env) argument
71 return $this->preEscapeFilterNode($node, $env);
73 return $this->escapePrintNode($node, $env, $this->needEscaping($env));
79 $this->blocks[$node->getAttribute('name')] = $this->needEscaping($env);
85 protected function escapePrintNode(PrintNode $node, Environment $env, $type) argument
93 if ($this->isSafeFor($type, $expression, $env)) {
105 protected function preEscapeFilterNode(FilterExpression $filter, Environment $env) argument
[all …]
DOptimizerNodeVisitor.php70 protected function doEnterNode(Node $node, Environment $env) argument
73 $this->enterOptimizeFor($node, $env);
76 …SS === (self::OPTIMIZE_VAR_ACCESS & $this->optimizers) && !$env->isStrictVariables() && !$env->has…
83 $node = $this->optimizeVariables($node, $env);
93 protected function doLeaveNode(Node $node, Environment $env) argument
98 $this->leaveOptimizeFor($node, $env);
102 $node = $this->optimizeRawFilter($node, $env);
105 $node = $this->optimizePrintNode($node, $env);
107 …SS === (self::OPTIMIZE_VAR_ACCESS & $this->optimizers) && !$env->isStrictVariables() && !$env->has…
126 protected function optimizeVariables(\Twig_NodeInterface $node, Environment $env) argument
[all …]
DAbstractNodeVisitor.php24 final public function enterNode(\Twig_NodeInterface $node, Environment $env) argument
30 return $this->doEnterNode($node, $env);
33 final public function leaveNode(\Twig_NodeInterface $node, Environment $env) argument
39 return $this->doLeaveNode($node, $env);
47 abstract protected function doEnterNode(Node $node, Environment $env); argument
54 abstract protected function doLeaveNode(Node $node, Environment $env); argument
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Extension/
DText.php38 …function twig_truncate_filter(Twig_Environment $env, $value, $length = 30, $preserve = false, $sep… argument
40 if (mb_strlen($value, $env->getCharset()) > $length) {
43 if (false === ($breakpoint = mb_strpos($value, ' ', $length, $env->getCharset()))) {
50 return rtrim(mb_substr($value, 0, $length, $env->getCharset())).$separator;
56 …function twig_wordwrap_filter(Twig_Environment $env, $value, $length = 80, $separator = "\n", $pre… argument
61 mb_regex_encoding($env->getCharset());
67 while (!$preserve && mb_strlen($piece, $env->getCharset()) > $length) {
68 $sentences[] = mb_substr($piece, 0, $length, $env->getCharset());
69 $piece = mb_substr($piece, $length, 2048, $env->getCharset());
78 …function twig_truncate_filter(Twig_Environment $env, $value, $length = 30, $preserve = false, $sep… argument
[all …]
/plugin/asciidocjs/node_modules/resolve/lib/
Dhomedir.js8 var home = process.env.HOME;
9 var user = process.env.LOGNAME || process.env.USER || process.env.LNAME || process.env.USERNAME;
12 … return process.env.USERPROFILE || process.env.HOMEDRIVE + process.env.HOMEPATH || home || null;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/NodeVisitor/
DOptimizerTest.php20 …$env = new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(), ['cache' …
22 $stream = $env->parse($env->tokenize(new Source('{{ block("foo") }}', 'index')));
32 …$env = new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(), ['cache' …
34 …$stream = $env->parse($env->tokenize(new Source('{% extends "foo" %}{% block content %}{{ parent()…
48 …$env = new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(), ['cache' …
49 $stream = $env->parse($env->tokenize(new Source('{{ block(name|lower) }}', 'index')));
62 …$env = new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(), ['cache' …
64 $stream = $env->parse($env->tokenize(new Source($template, 'index')));
/plugin/asciidocjs/node_modules/nunjucks/src/
Dprecompile.js22 var env = opts.env || new Environment([]);
27 return wrapper([_precompile(str, opts.name, env)], opts);
45 var env = opts.env || new Environment([]);
69 precompiled.push(_precompile(fs.readFileSync(input, 'utf-8'), opts.name || input, env));
75 precompiled.push(_precompile(fs.readFileSync(templates[i], 'utf-8'), name, env));
89 function _precompile(str, name, env) { argument
90 env = env || new Environment([]);
91 var asyncFilters = env.asyncFilters;
92 var extensions = env.extensionsList;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/PHP/
DDefault.php76 $env = null;
77 if ($this->env) {
78 $env = isset($_SERVER) ? $_SERVER : [];
79 unset($env['argv'], $env['argc']);
80 $env = array_merge($env, $this->env);
82 foreach ($env as $envKey => $envVar) {
84 unset($env[$envKey]);
99 $env
/plugin/asciidocjs/node_modules/core-js/
Dpostinstall.js5 var env = process.env; variable
7 var ADBLOCK = is(env.ADBLOCK);
8 var COLOR = is(env.npm_config_color);
9 var DISABLE_OPENCOLLECTIVE = is(env.DISABLE_OPENCOLLECTIVE);
10 var SILENT = ['silent', 'error', 'warn'].indexOf(env.npm_config_loglevel) !== -1;
11 var OPEN_SOURCE_CONTRIBUTOR = is(env.OPEN_SOURCE_CONTRIBUTOR);
21 ].some(function (it) { return is(env[it]); });
/plugin/ckgdoku/ckeditor/plugins/clipboard/dialogs/
Dpaste.js5 …nsfer(a);f?a!=f&&(f=e.initPasteDataTransfer()):f=a});if(CKEDITOR.env.ie&&8>CKEDITOR.env.version)b.…
6 …ransfer()})},null,null,1E3);return{title:h.title,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?370:
7env.quirks?250:245,onShow:function(){this.parts.dialog.$.offsetHeight;this.setupContent();this.par…
9 …ript\x3e\x3c/body\x3e\x3c/html\x3e",g=CKEDITOR.env.air?"javascript:void(0)":CKEDITOR.env.ie&&!CKED…
10 …a=d.getFrameDocument();a.write(b);c.focusManager.add(a.getBody());CKEDITOR.env.air&&k.call(this,a.…
11env.ie&&!CKEDITOR.env.edge){var e=CKEDITOR.dom.element.createFromHtml('\x3cspan tabindex\x3d"-1" s…
/plugin/ckgedit/ckeditor/plugins/clipboard/dialogs/
Dpaste.js5 …nsfer(a);f?a!=f&&(f=e.initPasteDataTransfer()):f=a});if(CKEDITOR.env.ie&&8>CKEDITOR.env.version)b.…
6 …ransfer()})},null,null,1E3);return{title:h.paste,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?370:
7env.quirks?250:245,onShow:function(){this.parts.dialog.$.offsetHeight;this.setupContent();this._.c…
9 …ript\x3e\x3c/body\x3e\x3c/html\x3e",g=CKEDITOR.env.air?"javascript:void(0)":CKEDITOR.env.ie&&!CKED…
10 …R.env.air&&k.call(this,a.getWindow().$)},a);d.setCustomData("dialog",a);a=this.getElement();a.setH…
11 …s();this.fire("focus")}}this.getInputElement=function(){return d};CKEDITOR.env.ie&&(a.setStyle("di…
/plugin/combo/vendor/symfony/process/
H A DProcess.php58 private $env = []; variable in Symfony\\Component\\Process\\Process
138 …* @param array|null $env The environment variables or null to use the same environment as …
144 …public function __construct(array $command, ?string $cwd = null, ?array $env = null, $input = null… argument
160 if (null !== $env) {
161 $this->setEnv($env);
185 …* @param array|null $env The environment variables or null to use the same environment as …
193 …public static function fromShellCommandline(string $command, ?string $cwd = null, ?array $env = nu… argument
195 $process = new static([], $cwd, $env, $input, $timeout);
251 public function run(?callable $callback = null, array $env = []): int argument
253 $this->start($callback, $env);
[all …]
/plugin/findologicxmlexport/vendor/twig/extensions/test/Twig/Tests/Extension/
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);
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
DCoreExtension.php342 function twig_random(Environment $env, $values = null, $max = null) argument
369 if (null !== $charset = $env->getCharset()) {
412 function twig_date_format_filter(Environment $env, $date, $format = null, $timezone = null) argument
415 $formats = $env->getExtension('\Twig\Extension\CoreExtension')->getDateFormat();
423 return twig_date_converter($env, $date, $timezone)->format($format);
436 function twig_date_modify_filter(Environment $env, $date, $modifier) argument
438 $date = twig_date_converter($env, $date, false);
459 function twig_date_converter(Environment $env, $date = null, $timezone = null) argument
464 $timezone = $env->getExtension('\Twig\Extension\CoreExtension')->getTimezone();
485 …return new \DateTime($date, false !== $timezone ? $timezone : $env->getExtension('\Twig\Extension\…
[all …]
/plugin/jplayer/vendor/symfony/process/
DProcess.php55 private $env; variable in Symfony\\Component\\Process\\Process
137 …* @param array|null $env The environment variables or null to use the same environment…
144 …public function __construct($commandline, $cwd = null, array $env = null, $input = null, $timeout … argument
160 if (null !== $env) {
161 $this->setEnv($env);
208 $env = 1 < \func_num_args() ? func_get_arg(1) : null;
209 $this->start($callback, $env);
232 $env = 1 < \func_num_args() ? func_get_arg(1) : null;
234 if (0 !== $this->run($callback, $env)) {
266 $env = func_get_arg(1);
[all …]
/plugin/asciidocjs/node_modules/yargs-parser/build/lib/
Dindex.js17 const minNodeVersion = (process && process.env && process.env.YARGS_MIN_NODE_VERSION)
18 ? Number(process.env.YARGS_MIN_NODE_VERSION)
28 const env = process ? process.env : {}; constant
31 env: () => { method
32 return env;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
DContaineranalysisGoogleDevtoolsCloudbuildV1SecretManagerSecret.php25 public $env; variable in Google\\Service\\ContainerAnalysis\\ContaineranalysisGoogleDevtoolsCloudbuildV1SecretManagerSecret
34 public function setEnv($env) argument
36 $this->env = $env;
43 return $this->env;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AIPlatformNotebooks/
DVertexAIParameters.php25 public $env; variable in Google\\Service\\AIPlatformNotebooks\\VertexAIParameters
34 public function setEnv($env) argument
36 $this->env = $env;
43 return $this->env;

12345678910>>...18