Home
last modified time | relevance | path

Searched refs:values (Results 276 – 300 of 925) sorted by last modified time

1...<<11121314151617181920>>...37

/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js479 function values(collection) { function
9740 values;
10993 var values = [];
10995 values.push(v.id);
23042 var values = [];
23050 values[i] = val;
29615 snapValue = values[idx];
29737 if (isArray$2(values)) {
29738 var i = values.length;
29741 return values[i];
[all …]
H A Dbpmn-modeler.production.min.js34 …nts",(t=i)&&"function"==typeof t.$instanceOf&&t.$instanceOf(n)&&(!i.values||!i.values.length))retu…
/plugin/pureldap/vendor/freedsx/ldap/
H A DREADME.md127 # Search for an entry object to get its current attributes / values
134 # Remove any values an attribute may have
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DEntry.php55 * Add an attribute and its values.
58 * @param string ...$values
61 public function add($attribute, ...$values)
63 $attribute = $attribute instanceof Attribute ? $attribute : new Attribute($attribute, ...$values);
79 * @param mixed|string ...$values
82 public function remove($attribute, ...$values)
84 $attribute = $attribute instanceof Attribute ? $attribute : new Attribute($attribute, ...$values);
97 * Reset an attribute, which removes any values it may have.
122 * @param mixed ...$values
125 public function set($attribute, ...$values)
53 add($attribute, ...$values) global() argument
74 remove($attribute, ...$values) global() argument
117 set($attribute, ...$values) global() argument
[all...]
H A DAttribute.php30 * Represents an entry attribute and any values.
59 protected $values = [];
68 * @param mixed|string ...$values
70 public function __construct(string $attribute, ...$values)
73 $this->values = $values;
77 * Add a value, or values, to the attribute.
79 * @param mixed|string ...$values
82 public function add(...$values): self
84 foreach ($values a
43 protected $values = []; global() variable in FreeDSx\\Ldap\\Entry\\Attribute
54 __construct(string $attribute, ...$values) global() argument
66 add(...$values) global() argument
92 remove(...$values) global() argument
121 set(...$values) global() argument
[all...]
H A DChange.php29 * Delete a value, or values, from an attribute.
51 * @param string ...$values
53 public function __construct(int $modType, $attribute, ...$values)
56 $this->attribute = $attribute instanceof Attribute ? $attribute : new Attribute($attribute, ...$values);
130 * Add the values contained in the attribute, creating the attribute if necessary.
133 * @param string ...$values argument
136 public static function add($attribute, ...$values): Change
138 $attribute = $attribute instanceof Attribute ? $attribute : new Attribute($attribute, ...$values);
144 * Delete values from the attribute. If no values ar
50 __construct(int $modType, $attribute, ...$values) global() argument
148 delete($attribute, ...$values) global() argument
163 replace($attribute, ...$values) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DSearchResultEntry.php75 $values = [];
81 $values[] = $attrValue->getValue();
85 $attributes[] = new Attribute($partialAttribute->getChild(0)->getValue(), ...$values);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DSubstringFilter.php120 * Get the values it should contain.
130 * Set the values it should contain.
132 * @param string ...$values
135 public function setContains(string ...$values)
137 $this->contains = $values;
133 setContains(string...$values) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DFilters.php156 * @param string ...$values
159 public static function contains(string $attribute, string ...$values): SubstringFilter
161 return new SubstringFilter($attribute, null, null, ...$values);
157 contains(string $attribute, string...$values) global() argument
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DModifyRequest.php191 $values = [];
196 $values[] = $attrVal->getValue();
199 return new Attribute($attrType->getValue(), ...$values);
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG.md41 - `HeadingPermalinkProcessor` now throws `InvalidConfigurationException` instead of `RuntimeException` when invalid config values are given.
400 - `Configuration::__construct()` no longer accepts the default configuration values - use `Configuration::merge()` instead
401 - `ConfigurationInterface` now only contains a `get(string $key)`; this method no longer allows arbitrary default values to be returned if the option is missing
408 - `HtmlElement` can now properly handle array (i.e. `class`) and boolean (i.e. `checked`) attribute values
409 - `HtmlElement` automatically flattens any attributes with array values into space-separated strings, removing duplicate entries
H A DCHANGELOG-0.x.md
/plugin/quickstats/db/
H A DdataBaseStructure.txt62 [values] => Array (
/plugin/quickstats/lang/en/
H A Dquery.txt19 … This will accept any whole or part of a page name and will return results for all matching values.
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/
H A DCHANGELOG.md21 * For `uint64` values, the `maxminddb` extension now returns an
/plugin/strata/aggregates/
H A Dunique.php13 function aggregate($values, $hint = null) { argument
14 return array_unique($values);
H A Dmax.php13 function aggregate($values, $hint = null) { argument
14 if($hint == 'strict') $values = array_filter($values, 'is_numeric');
15 if(empty($values)) return array();
16 return array(max($values));
21 'desc'=>'Returns the maximum value. Any item that does not have a clear numeric value (i.e. starts with a number) is counted as 0. If the \'strict\' hint is used, values that are not strictly numeric (i.e. contains only a number) are ignored.',
22 'hint'=>'\'strict\' to ignore non-numeric values',
H A Dsum.php13 function aggregate($values, $hint = null) { argument
15 return array_reduce($values, function(&$state, $item) {
24 return array(array_sum($values));
30 'desc'=>'Sums up all items. Any item that does not have a clear numeric value (i.e. starts with a number) is counted as 0. If the \'strict\' hint is used, values that are not strictly numeric (i.e. contains only a number) are left intact.',
31 'hint'=>'\'strict\' to leave non-numeric values',
H A Dlast.php13 function aggregate($values, $hint = null) { argument
14 $val = end($values);
H A Dmin.php13 function aggregate($values, $hint = null) { argument
14 if($hint == 'strict') $values = array_filter($values, 'is_numeric');
15 if(empty($values)) return array();
16 return array(min($values));
21 'desc'=>'Returns the minimum value. Any item that does not have a clear numeric value (i.e. starts with a number) is counted as 0. If the \'strict\' hint is used, values that are not strictly numeric (i.e. contains only a number) are ignored.',
22 'hint'=>'\'strict\' to ignore non-numeric values',
/plugin/strata/helper/
H A Dtriples.php125 $values[] = $$param;
136 $res = $query->execute($values);
157 $values[] = $$param;
183 $res = $query->execute($values);
225 $values = array($t['subject'],$t['predicate'],$t['object'],$graph);
226 $res = $query->execute($values);
341 * Stores all literal values keyed to their placeholder.
/plugin/strata/
H A Dmanual.txt18 Data entry is done with ''<data>'' tags. The following example is a data block for Jane Doe. The block is meant to add some extra data to the page it is on (we assume it is on the page ''persons:jane_doe''). The example shows you how to add simple values, how to declare a class, and how to use types.
27 **Simple Values**: You add simple values to the data block by adding a line like ''field: value''. The field and value are sometimes called the predicate and object respectively.
44 -- Multiple values
50 **Empty values**: Any field that doesn't have a value is ignored. This way you can quickly write down some fields you want to use, but fill in their values later.
52 **Type hints**: You can change how a [[#types|type]] behaves by adding a type hint. Type hints are added by appending them to the type with ''::''. For example ''[page::places]'' uses the page type, and will try to resolve values without an explicit namespace as if they were in the ''places:'' namespace. For a list of types and their hints, see [[#Types]].
54 **Multiple Values**: You can have multiple values with a field. Do this by either putting a ''*'' after the field (or after the type, if it has any), or by simply adding the field multiple times.
79 **Types**: In a query, you can use [[#types]]. You can use types for fields and values, and you can use them in the opening tag. Types are 'sticky': if you put ''?p Birthday [date]: ?b'' the date type will automatically stick to the ''?b'' variable (you could have achieved the same with ''?p Birthday: ?b [date]'').
81 **Comparisons**: You can use normal operators (e.g, ''<'', ''>'', ''>='', ''%%<=%%'', ''='', ''!='') to compare values. A variable's type will be taken into account for the comparison. See [[#Comparison Operators]] for more information.
116 **Aggregates**: Variables can have multiple values (usuall
[all...]
H A Dscript.js62 // 'normalize' the values we're sorting
89 // 'normalize' the values we're sorting
133 var valueMap1 = jQuery(item1).data('strata-item-values');
134 var valueMap2 = jQuery(item2).data('strata-item-values');
196 var values = [];
201 if (values.indexOf(v.textContent) == -1) {
202 values.push(v.textContent);
205 } else if (values.indexOf('') == -1) {
206 values.push('');
209 values
297 addToItemMap(item, key, id, values) global() argument
[all...]
/plugin/strata/syntax/
H A Dentry.php105 list(, $property, $ptype, $multi, $values) = $parts;
116 // determine values, splitting on commas if necessary
117 $values = ($multi == '*') ? explode(',',$values) : array($values);
119 // generate triples from the values
120 foreach($values as $v) {
136 // - Normalize all values
288 $values = $data['data'][$this->util->getIsaKey()];
290 for($i=0;$i<count($values);
[all...]
H A Dlist.php95 $values = $f['aggregate']->aggregate($row[$f['variable']], $f['aggregateHint']);
96 if(!count($values)) continue;
99 $this->util->renderField($mode, $R, $this->triples, $values, $f['typeName'], $f['hint'], $f['type'], $f['variable']);

1...<<11121314151617181920>>...37