Home
last modified time | relevance | path

Searched refs:val (Results 1 – 25 of 1084) sorted by relevance

12345678910>>...44

/plugin/diagramsnet/lib/shapes/
DmxGCP2.js81 enumList: [{val: 'standard', dispName: 'Standard'}, property
82 {val: 'dynamic', dispName: 'Dynamic'}, property
83 {val: 'multiple', dispName: 'Multiple'}, property
84 {val: 'shared', dispName: 'Shared'}, property
85 {val: 'replica', dispName: 'Replica'}, property
86 {val: 'dynamic2', dispName: 'Dynamic 2'}, property
87 {val: 'dynamic3', dispName: 'Dynamic 3'}, property
88 {val: 'highmem', dispName: 'High-Mem'}, property
89 {val: 'highcomp', dispName: 'High-Comp'}, property
90 {val: 'backend', dispName: 'Backend'}, property
[all …]
DmxKubernetes.js31 enumList: [{val: 'c_c_m', dispName: 'C-C-M'}, property
32 {val: 'c_m', dispName: 'C-M'}, property
33 {val: 'c_role', dispName: 'C-Role'}, property
34 {val: 'cm', dispName: 'CM'}, property
35 {val: 'crb', dispName: 'CRB'}, property
36 {val: 'crd', dispName: 'CRD'}, property
37 {val: 'cronjob', dispName: 'Cronjob'}, property
38 {val: 'deploy', dispName: 'Deploy'}, property
39 {val: 'ds', dispName: 'DS'}, property
40 {val: 'ep', dispName: 'EP'}, property
[all …]
/plugin/struct/_test/
H A DValueTest.php31 $val = new Value($col, ['one', 'two']);
32 $this->assertSame($col, $val->getColumn());
33 $this->assertEquals(['one', 'two'], $val->getValue());
35 $val->setValue(['one', '', 'two', '']);
36 $this->assertEquals(['one', 'two'], $val->getValue());
38 $val->setValue(['one', '0', 'two']);
39 $this->assertEquals(['one', '0', 'two'], $val->getValue());
41 $val->setValue(['', null, false, " \n"]);
42 $this->assertEquals([], $val->getValue());
44 $val->setValue('');
[all …]
/plugin/asciidocjs/node_modules/pug-runtime/
Dindex.js63 function pug_classes_array(val, escaping) { argument
65 for (var i = 0; i < val.length; i++) {
66 className = pug_classes(val[i]);
74 function pug_classes_object(val) { argument
76 for (var key in val) {
77 if (key && val[key] && pug_has_own_property.call(val, key)) {
84 function pug_classes(val, escaping) { argument
85 if (Array.isArray(val)) {
86 return pug_classes_array(val, escaping);
87 } else if (val && typeof val === 'object') {
[all …]
/plugin/asciidocjs/node_modules/kind-of/
Dindex.js11 module.exports = function kindOf(val) { argument
13 if (typeof val === 'undefined') {
16 if (val === null) {
19 if (val === true || val === false || val instanceof Boolean) {
22 if (typeof val === 'string' || val instanceof String) {
25 if (typeof val === 'number' || val instanceof Number) {
30 if (typeof val === 'function' || val instanceof Function) {
35 if (typeof Array.isArray !== 'undefined' && Array.isArray(val)) {
40 if (val instanceof RegExp) {
43 if (val instanceof Date) {
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/Property/
DText.php95 * @param string $val
98 public function setRawMimeDirValue($val) { argument
100 $this->setValue(MimeDir::unescapeValue($val, $this->delimiter));
107 * @param string $val
110 public function setQuotedPrintableValue($val) { argument
112 $val = quoted_printable_decode($val);
121 $matches = preg_split($regex, $val);
133 $val = $this->getParts();
136 $val = array_pad($val, $this->minimumPropertyValues[$this->name], '');
139 foreach($val as &$item) {
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/
DText.php95 * @param string $val
98 public function setRawMimeDirValue($val) { argument
100 $this->setValue(MimeDir::unescapeValue($val, $this->delimiter));
107 * @param string $val
110 public function setQuotedPrintableValue($val) { argument
112 $val = quoted_printable_decode($val);
121 $matches = preg_split($regex, $val);
133 $val = $this->getParts();
136 $val = array_pad($val, $this->minimumPropertyValues[$this->name], '');
139 foreach($val as &$item) {
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/Property/
H A DText.php95 * @param string $val
98 public function setRawMimeDirValue($val) { argument
100 $this->setValue(MimeDir::unescapeValue($val, $this->delimiter));
107 * @param string $val
110 public function setQuotedPrintableValue($val) { argument
112 $val = quoted_printable_decode($val);
121 $matches = preg_split($regex, $val);
133 $val = $this->getParts();
136 $val = array_pad($val, $this->minimumPropertyValues[$this->name], '');
139 foreach($val as &$item) {
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/Property/
DText.php93 * @param string $val
95 public function setRawMimeDirValue($val) argument
97 $this->setValue(MimeDir::unescapeValue($val, $this->delimiter));
103 * @param string $val
105 public function setQuotedPrintableValue($val) argument
107 $val = quoted_printable_decode($val);
116 $matches = preg_split($regex, $val);
127 $val = $this->getParts();
130 $val = array_pad($val, $this->minimumPropertyValues[$this->name], '');
133 foreach ($val as &$item) {
[all …]
/plugin/struct/meta/
H A DConfigParser.php50 [$key, $val] = $this->splitLine($line);
59 … $this->config['schemas'] = array_merge($this->config['schemas'], $this->parseSchema($val));
65 $this->config['cols'] = $this->parseValues($val);
68 $this->config['sepbyheaders'] = (bool)$val;
73 $this->config['headers'] = $this->parseValues($val);
76 $this->config['align'] = $this->parseAlignments($val);
80 $this->config['widths'] = $this->parseWidths($val);
83 $this->config['min'] = abs((int)$val);
87 $this->config['limit'] = abs((int)$val);
91 $sorts = $this->parseValues($val);
[all …]
/plugin/datatemplate/syntax/
Dentry.php180 foreach($data['data'] as $key => $val){
181 if($val == '' || !count($val)) continue;
185 if(is_array($val)){
186 $cnt = count($val);
190 $ret .= $this->_formatData($data['cols'][$key], $val[$i]);
191 $ret_raw .= $val[$i];
200 $replacers['vals'][] = $this->_formatData($data['cols'][$key], $val);
201 $replacers['raw_vals'][] = $val;
227 foreach($vals as $val){
228 $val = trim($val);
[all …]
/plugin/asciidocjs/node_modules/nunjucks/src/
Druntime.js20 _proto.set = function set(name, val, resolveUp) { argument
28 frame.set(name, val);
39 obj[parts[parts.length - 1]] = val;
42 var val = this.variables[name];
43 if (val !== undefined) {
44 return val;
50 var val = this.variables[name];
51 if (val !== undefined) {
52 return val;
58 var val = this.variables[name];
[all …]
/plugin/asciidocjs/node_modules/promise/setimmediate/
Des6-extensions.js55 function res(i, val) { argument
56 if (val && (typeof val === 'object' || typeof val === 'function')) {
57 if (val instanceof Promise && val.then === Promise.prototype.then) {
58 while (val._65 === 3) {
59 val = val._55;
61 if (val._65 === 1) return res(i, val._55);
62 if (val._65 === 2) reject(val._55);
63 val.then(function (val) { argument
64 res(i, val);
68 var then = val.then;
[all …]
/plugin/asciidocjs/node_modules/promise/domains/
Des6-extensions.js55 function res(i, val) { argument
56 if (val && (typeof val === 'object' || typeof val === 'function')) {
57 if (val instanceof Promise && val.then === Promise.prototype.then) {
58 while (val._65 === 3) {
59 val = val._55;
61 if (val._65 === 1) return res(i, val._55);
62 if (val._65 === 2) reject(val._55);
63 val.then(function (val) { argument
64 res(i, val);
68 var then = val.then;
[all …]
/plugin/asciidocjs/node_modules/promise/src/
Des6-extensions.js55 function res(i, val) { argument
56 if (val && (typeof val === 'object' || typeof val === 'function')) {
57 if (val instanceof Promise && val.then === Promise.prototype.then) {
58 while (val._state === 3) {
59 val = val._value;
61 if (val._state === 1) return res(i, val._value);
62 if (val._state === 2) reject(val._value);
63 val.then(function (val) { argument
64 res(i, val);
68 var then = val.then;
[all …]
/plugin/asciidocjs/node_modules/promise/lib/
Des6-extensions.js55 function res(i, val) { argument
56 if (val && (typeof val === 'object' || typeof val === 'function')) {
57 if (val instanceof Promise && val.then === Promise.prototype.then) {
58 while (val._65 === 3) {
59 val = val._55;
61 if (val._65 === 1) return res(i, val._55);
62 if (val._65 === 2) reject(val._55);
63 val.then(function (val) { argument
64 res(i, val);
68 var then = val.then;
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
DText.php96 * @param string $val
100 function setRawMimeDirValue($val) { argument
102 $this->setValue(MimeDir::unescapeValue($val, $this->delimiter));
109 * @param string $val
113 function setQuotedPrintableValue($val) { argument
115 $val = quoted_printable_decode($val);
124 $matches = preg_split($regex, $val);
136 $val = $this->getParts();
139 $val = array_pad($val, $this->minimumPropertyValues[$this->name], '');
142 foreach ($val as &$item) {
[all …]
/plugin/asciidocjs/node_modules/pug-attrs/
Dindex.js28 (typeof attr.val === 'string' || typeof attr.val === 'boolean') &&
46 function addAttribute(key, val, mustEscape, buf) { argument
47 if (isConstant(val)) {
49 var str = stringify(runtime.attr(key, toConstant(val), mustEscape, options.terse));
57 val = toConstant(val);
59 val = runtime.escape(val);
61 buf.push(stringify(key) + ': ' + stringify(val));
65 …buf.push(options.runtime('attr') + '("' + key + '", ' + val + ', ' + stringify(mustEscape) + ', ' …
68 val = options.runtime('escape') + '(' + val + ')';
70 buf.push(stringify(key) + ': ' + val);
[all …]
/plugin/mantis/lib/
Dclass.nusoap_base.php345 $val = str_replace("'", '&apos;', $val);
346 $val = str_replace('"', '&quot;', $val);
451 if (is_null($val)) {
472 if (is_bool($val)) {
474 $val = $val ? 'true' : 'false';
475 } elseif (! $val) {
476 $val = 0;
478 } else if (is_string($val)) {
479 $val = $this->expandEntities($val);
482 $xml = "<$name$xmlns$atts>$val</$name>";
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Processor/
DPsrLogMessageProcessor.php53 foreach ($record['context'] as $key => $val) {
59 … if (is_null($val) || is_scalar($val) || (is_object($val) && method_exists($val, "__toString"))) {
60 $replacements[$placeholder] = $val;
61 } elseif ($val instanceof \DateTimeInterface) {
62 if (!$this->dateFormat && $val instanceof \Monolog\DateTimeImmutable) {
65 $replacements[$placeholder] = (string) $val;
67 … $replacements[$placeholder] = $val->format($this->dateFormat ?: static::SIMPLE_DATE);
69 } elseif (is_object($val)) {
70 $replacements[$placeholder] = '[object '.Utils::getClass($val).']';
71 } elseif (is_array($val)) {
[all …]
/plugin/acmenu/
Dsyntax.php326 foreach ($pieces as $key => $val) {
383 foreach ($tree as $key => $val) {
384 if ($val["type"] == "pg") {
385 $renderer->doc .= "<li class='level" . $val["level"]."'>";
387 $renderer->internallink($val["id"], $val["heading"]);
390 } elseif ($val["type"] == "ext_ns") {
391 $renderer->doc .= "<li class='level" . $val["level"]." divert'>";
393 $renderer->internallink($val["id"], $val["heading"]);
396 } elseif ($val["type"] == "ns") {
397 if (in_array(substr($val["id"], 0, -strlen(":" . $conf["start"])), $sub_ns)
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
DGelfMessageFormatter.php128 foreach ($extra as $key => $val) {
129 $val = is_scalar($val) || null === $val ? $val : $this->toJson($val);
130 $len = strlen($this->extraPrefix . $key . $val);
132 …$message->setAdditional($this->extraPrefix . $key, Utils::substr((string) $val, 0, $this->maxLengt…
136 $message->setAdditional($this->extraPrefix . $key, $val);
139 foreach ($context as $key => $val) {
140 $val = is_scalar($val) || null === $val ? $val : $this->toJson($val);
141 $len = strlen($this->contextPrefix . $key . $val);
143 …$message->setAdditional($this->contextPrefix . $key, Utils::substr((string) $val, 0, $this->maxLen…
147 $message->setAdditional($this->contextPrefix . $key, $val);
/plugin/struct/helper/
H A Dconfig.php17 * @param string $val
21 public function parseSort($val) argument
23 if (str_starts_with($val, '^')) {
24 return [substr($val, 1), false];
26 return [$val, true];
35 public function parseFilterLine($logic, $val) argument
37 $flt = $this->parseFilter($val);
48 * @param string $val
53 protected function parseFilter($val) argument
62 if (!preg_match('/^(.*?)(' . $comps . ')(.*)$/', $val, $match)) {
[all …]
/plugin/authgoogle/google/external/
DURITemplateParser.php124 $val = '';
133 $val = self::val_from_var($var, $exp);
139 $val = $var->default;
142 $part .= $val;
152 $val = '';
156 $val .= $var->name . '=';
166 $val .= $var->name . '.';
169 $val .= $ek . '=';
171 $val .= $ek . $del;
178 $val .= $var->name . '=';
[all …]
/plugin/asciidocjs/node_modules/core-js/modules/
D_redefine.js13 (module.exports = function (O, key, val, safe) { argument
14 var isFunction = typeof val == 'function';
15 if (isFunction) has(val, 'name') || hide(val, 'name', key);
16 if (O[key] === val) return;
17 if (isFunction) has(val, SRC) || hide(val, SRC, O[key] ? '' + O[key] : TPL.join(String(key)));
19 O[key] = val;
22 hide(O, key, val);
24 O[key] = val;
26 hide(O, key, val);

12345678910>>...44