Home
last modified time | relevance | path

Searched refs:expression (Results 76 – 100 of 273) sorted by relevance

1234567891011

/plugin/combo/vendor/dragonmantank/cron-expression/
H A DREADME.md4 [![Latest Stable Version](https://poser.pugx.org/mtdowling/cron-expression/v/stable.png)](https://packagist.org/packages/mtdowling/cron-expression) [![Total Downloads](https://poser.pugx.org/mtdowling/cron-expression/downloads.png)](https://packagist.org/packages/mtdowling/cron-expression) [![Build Status](https://secure.travis-ci.org/mtdowling/cron-expression.png)](http://travis-ci.org/mtdowling/cron-expression)
6 The PHP cron expression parser can parse a CRON expression, determine if it is
7 due to run, calculate the next run date of the expression, and calculate the previous
8 run date of the expression
[all...]
H A DCHANGELOG.md35 - Fixes issue [#28](https://github.com/mtdowling/cron-expression/issues/28) where PHP increments of ranges were failing due to PHP casting hyphens to 0
36 - Only set default timezone if the given $currentTime is not a DateTime instance ([#34](https://github.com/mtdowling/cron-expression/issues/34))
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Analytics/
H A DGoalEventDetailsEventConditions.php33 public $expression; variable in Google\\Service\\Analytics\\GoalEventDetailsEventConditions
74 public function setExpression($expression) argument
76 $this->expression = $expression;
83 return $this->expression;
/plugin/jquery-syntax/jquery-syntax/
H A Djquery.syntax.core.js29 container.className+=' ';container.className+=this.expression.klass;}
34 return container;};Syntax.Match.prototype.canContain=function(match){if(match.expression.force){ret…
36 if(match.expression.only){return true;}
37 if(typeof(this.expression.allow)==='undefined'){return false;}
38 if(jQuery.isArray(this.expression.disallow)&&jQuery.inArray(match.expression.klass,this.expression.…
39 if(this.expression.allow==='*'){return true;}
40 if(jQuery.isArray(this.expression.allow)&&jQuery.inArray(match.expression.klass,this.expression.all…
41 …=function(match){var only=match.expression.only;if(only){var cur=this;while(cur!==null){if(jQuery.…
44 …n.splice(i,0,match);match.parent=this;if(!match.expression.owner){match.expression.owner=this.expr…
50 …[];if(this.expression&&this.expression.owner){match.expression=this.expression.owner.getRuleForKla…
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AnalyticsData/
H A DMetricMetadata.php50 public $expression; variable in Google\\Service\\AnalyticsData\\MetricMetadata
147 public function setExpression($expression) argument
149 $this->expression = $expression;
156 return $this->expression;
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DExpressionMetadataTrait.php23 private function parseExpression(string $expression, array $names = []) argument
26 return $expression;
30 …return $this->expressionEvaluator->parse($expression, array_merge(['context', 'property_metadata',…
32 …row new InvalidMetadataException(sprintf('Can not parse the expression "%s"', $expression), 0, $e);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DUriTemplate.php57 * @param string $expression Expression to parse
61 private function parseExpression($expression) argument
65 if (isset(self::$operatorHash[$expression[0]])) {
66 $result['operator'] = $expression[0];
67 $expression = substr($expression, 1);
72 foreach (explode(',', $expression) as $value) {
/plugin/const/
H A Dclass.evalmath.php161 public function evaluate( $expression ) { argument
162 return $this->pfx( $this->nfx( $expression ) );
173 public function assign_and_evaluate( $expression ) { argument
175 $expression = trim( $expression );
176 $expression = rtrim( $expression, ';' );
228 return $this->evaluate( $expression );
270 protected function nfx( $expression ) { argument
274 $expression = trim( strtolower( $expression ) );
291 $op = substr( $expression, $index, 1 );
463 if ( strlen( $expression ) === $index ) {
[all …]
/plugin/findologicxmlexport/vendor/hoa/math/
H A DArithmetic.pp55 expression:
56 primary() ( ::plus:: #addition expression() )?
59 secondary() ( ::minus:: #substraction expression() )?
62 ternary() ( ::times:: #multiplication expression() )?
65 term() ( ::div:: #division expression() )?
68 ( ::bracket_:: expression() ::_bracket:: #group )
86 ( expression() ( ::comma:: expression() )* )?
H A DREADME.md68 expression. Therefore, we will use the classical workflow when manipulating a
82 // 3. Declare the expression.
83 $expression = '1 / 2 / 3 + 4 * (5 * 2 - 6) * PI / avg(7, 8, 9)';
85 // 4. Parse the expression.
86 $ast = $compiler->parse($expression);
98 // Bonus. Print the AST of the expression.
139 $expression = 'rand(ANSWER / 2, ANSWER * 2)'
141 $visitor->visit($compiler->parse($expression))
/plugin/findologicxmlexport/vendor/twig/twig/src/NodeVisitor/
H A DEscaperNodeVisitor.php91 $expression = $node->getNode('expr');
93 if ($this->isSafeFor($type, $expression, $env)) {
100 $this->getEscaperFilter($type, $expression),
124 protected function isSafeFor($type, \Twig_NodeInterface $expression, $env) argument
126 $safe = $this->safeAnalysis->getSafe($expression);
135 $this->traverser->traverse($expression);
136 $safe = $this->safeAnalysis->getSafe($expression);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/
H A Dliteral.test9 2. Conditional expression with only literals
12 3. Conditional expression with a variable
32 2. Conditional expression with only literals
35 3. Conditional expression with a variable
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/
H A DArithmetic.pp54 expression:
55 primary() ( ::plus:: #addition expression() )?
58 secondary() ( ::minus:: #substraction expression() )?
61 ternary() ( ::times:: #multiplication expression() )?
64 term() ( ::div:: #division expression() )?
67 ( ::bracket_:: expression() ::_bracket:: #group )
/plugin/findologicxmlexport/vendor/jms/serializer/src/Expression/
H A DCompilableExpressionEvaluatorInterface.php12 public function parse(string $expression, array $names = []): Expression; argument
17 public function evaluateParsed(Expression $expression, array $data = []); argument
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/Visitor/
H A DArithmetic.php75 ->executeOnFailure(function () use (&$expression) {
76 echo 'Failed expression: ', $expression, '.', "\n";
79 foreach ($sampler as $i=> $expression) {
82 $compiler->parse($expression)
88 eval('$y = (float) ' . $expression . ';');
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DIndicesNamespace.asciidoc91 $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
92 $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open)
124 $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
125 $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open)
160 $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
161 $params['expand_wildcards'] = (enum) Whether to expand wildcard expression to concrete indices that are open, closed or both. (Options = open,closed,hidden,none,all) (Default = open)
219 $params['allow_no_indices'] = (boolean) Ignore if a wildcard expression resolves to no concrete indices (default: false)
296 $params['allow_no_indices'] = (boolean) Ignore if a wildcard expression resolves to no concrete indices (default: false)
315 $params['allow_no_indices'] = (boolean) Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
316 $params['expand_wildcards'] = (enum) Whether to expand wildcard expression t
[all...]
/plugin/combo/grammar/
H A DPageSql.g4196 expression:
198 | functionNames LPAREN expression? ( COMMA expression)* RPAREN
203 (( LESS_THAN | LESS_THAN_OR_EQUAL | GREATER_THAN | GREATER_THAN_OR_EQUAL | NOT_EQUAL | EQUAL) expression)
212 (NOT? BETWEEN expression AND expression)
214 (NOT? IN LPAREN (expression ( COMMA expression)*)? RPAREN)
/plugin/topbarsyntax/
H A Dcsshover3.htc124 // affected elements are given an expression under a fake css property, the classname is used
126 … // selecting the same element. The expression does a callback to CSSHover.patch, rerouted via the
129 …// because the expression is added to the stylesheet, and styles are always applied to html that is
130 … // dynamically added to the dom, the expression will also trigger for those new elements (provided
133 …sheet.addRule(affected, CSSHOVER_PREFIX + className + ':expression(CSSHover(this, "'+pseudo+'", "'…
135 // hash it, so an identical selector/class combo does not duplicate the expression
144 // called via the expression, patches individual nodes
147 // the patch's type is returned to the expression. That way the expression property
149 // The if will fail the first time, since the expression has not yet received a value.
169 // returns a dummy value to the expression
[all …]
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DAttr.IDBlacklistRegexp.txt
/plugin/rrdgraph/inc/
H A Drpncomputer.php82 * @param String $expression RPN expression.
86 public function compute($expression) { argument
89 foreach (explode(",", $expression) as $part) {
/plugin/bpmnio/vendor/dmn-js/dist/assets/
H A Ddmn-js-decision-table.css11 --dmn-expression-language-color: var(--color-white);
321 .dmn-decision-table-container thead .input-expression,
333 .dmn-decision-table-container thead .input-expression:empty::before {
526 .dms-badge.dmn-expression-language {
527 background: var(--dmn-expression-language-background-color);
528 color: var(--dmn-expression-language-color);
544 .dmn-decision-table-container .input-editor .dmn-expression-language {
554 background: var(--dmn-expression-language-hover-background-color);
558 /* cell expression language */
560 .dmn-decision-table-container .cell .dmn-expression-language {
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Accessor/
H A DDefaultAccessorStrategy.php65 …if (($metadata->expression instanceof Expression) && ($this->evaluator instanceof CompilableExpres…
66 return $this->evaluator->evaluateParsed($metadata->expression, $variables);
68 return $this->evaluator->evaluate($metadata->expression, $variables);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Darray.test23 {# elements can be any expression #}
34 {# keys can be any expression #}
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst272 that uses the `symfony expression language`_ to
273 …ophisticated exclusion strategies using ``@Exclude(if="expression")`` and ``@Expose(if="expression
295 …``true`` is just a generic expression, you can use any expression allowed by the Symfony Expressio…
310 .. _symfony expression language: https://github.com/symfony/expression-language
312 …e variables (`object`, `context` and `property_metadata` for use in an expression. This enables yo…
/plugin/findologicxmlexport/vendor/hoa/regex/
H A DREADME.md65 expression, i.e. lex, parse and produce an AST. Second, generate strings based
66 on a regular expression by visiting its AST with an isotropic random approach.
72 and produce an AST of the following regular expression: `ab(c|d){2,4}e?`. Thus:
90 * > #expression
105 We read that the whole expression is composed of a single concatenation of two
129 Strings are generated at random and match the given regular expression.

1234567891011