Home
last modified time | relevance | path

Searched refs:res (Results 151 – 175 of 309) sorted by path

12345678910>>...13

/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/da/
H A Dda.txt
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/fr/
H A Dfr.txt
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/la/
H A Dla.txt157 Cuius DECLARATIONIS nulla res ita potest putari ut quoddam ius exercendae operae vel faciendi facinoris detur cuivis civitati, a (…)
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/nb/
H A Dnb.txt
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/wa/
H A Dwa.txt
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DGuzzle.php76 $res = $client->send($req, $options);
82 $responseBody = (string) $res->getBody();
83 $response = new Response($responseBody, $res->getStatusCode());
92 'http_code' => $res->getStatusCode(),
/plugin/eventum/
H A Dsyntax.php117 $res = array();
121 $res[$value] = $data[$key];
126 $res[$value] = $data[$value];
130 return $res;
/plugin/extendpage/meta/
H A DAssignments.php61 $res = $this->sqlite->query($sql);
62 $this->patterns = $this->sqlite->res2arr($res);
63 $this->sqlite->res_close($res);
80 $res = $this->sqlite->query($sql);
107 $res = $this->sqlite->query($sql, $id);
108 $pagerows = $this->sqlite->res2arr($res);
109 $this->sqlite->res_close($res);
215 $list = $this->sqlite->res2arr($res);
216 $this->sqlite->res_close($res);
281 $pagerows = $this->sqlite->res2arr($res);
[all …]
/plugin/farmer/admin/
H A Dconfig.php111 $res = [];
114 $res[] = '';
115 $res[] = "[$key]";
117 $res[] = "$skey = " . (is_numeric($sval) ? $sval : '"' . $sval . '"');
120 $res[] = "$key = " . (is_numeric($val) ? $val : '"' . $val . '"');
123 $res[] = '';
124 return implode("\n", $res);
/plugin/farmer/lang/fr/
H A Dtab_plugins_help.txt
/plugin/fetchmedia/action/
H A Dajax.php131 $res = fopen($link, 'rb');
132 if ($res === false) {
140 $realSize = stream_copy_to_stream($res, $target);
142 fclose($res);
/plugin/fetchmedia/script/
H A Dmain.js11 function decorateLiWithResult(page, link, res) { argument
16 if (res.status === STATUS_OK) {
19 td.innerHTML = `<span class="result error"> ${res.status}: ${res.status_text} ❌</span>`;
47 .then((res) => {
48 decorateLiWithResult(page, link, res);
51 .catch((res) => {
52 console.error(res);
/plugin/filelisting/
H A Dhelper.php289 $res = media_delete($DEL, $INFO['perm']);
290 if ($res & DOKU_MEDIA_DELETED) {
293 } elseif ($res & DOKU_MEDIA_INUSE) {
/plugin/filterrss/
H A Dsyntax.php107 preg_match('/(.*?)(>|<|=|>=|<=)+(.*)/', $cond, $res);
108 if(in_array($res[1], $known_fileds))
110 $name = $res[1];
111 $value = $res[3];
112 $sign = $res[2];
113 } elseif(in_array($res[3], $known_fileds))
115 $name = $res[3];
116 $value = $res[1];
117 $sign = $opposite_signs[$res[2]];
/plugin/findologicxmlexport/vendor/twig/twig/ext/twig/
H A Dtwig.c248 int res; in TWIG_CALL_BOOLEAN() local
251 res = Z_LVAL_P(ret); in TWIG_CALL_BOOLEAN()
253 return res; in TWIG_CALL_BOOLEAN()
/plugin/fksnewsfeed/
H A Dhelper.php96 $res = $this->sqlite->query('SELECT * FROM dependence WHERE parent=?', $streamId);
97 foreach ($this->sqlite->res2arr($res) as $row) {
/plugin/fksnewsfeed/inc/ORM/
H A DAbstractService.php27 …$res = $this->sqlite->query('SELECT * FROM ' . $this->table . ' WHERE ' . $this->table . '_id = ?'…
28 if ($res) {
29 return ($this->modelClassName)::createFromArray($this->sqlite, $res);
55 $res = $this->sqlite->query('SELECT max(' . $this->table . '_id) FROM ?', $this->table);
56 return (int)$this->sqlite->res2single($res);
61 $res = $this->sqlite->query('SELECT * FROM ?', $this->table);
62 foreach ($this->sqlite->res2arr($res) as $row) {
H A DModelPriority.php33 …$res = $this->sqlite->query('DELETE FROM priority WHERE stream_id=? AND news_id =?', $this->stream…
34 return $this->sqlite->res2arr($res);
H A DModelStream.php23 …$res = $this->sqlite->query('SELECT * FROM priority o JOIN news n ON o.news_id=n.news_id WHERE str…
25 $ars = $this->sqlite->res2arr($res);
57 $res = $this->sqlite->query('SELECT * FROM dependence WHERE parent=?', $this->streamId);
59 foreach ($this->sqlite->res2arr($res) as $row) {
70 $res = $this->sqlite->query('SELECT * FROM dependence WHERE child=?', $this->streamId);
72 foreach ($this->sqlite->res2arr($res) as $row) {
H A DServicePriority.php21 …$res = $this->sqlite->query('SELECT * FROM ? WHERE stream_id=? AND news_id =?', $this->table, $str…
22 return $res ? ($this->modelClassName)::createFromArray($this->sqlite, $res) : null;
H A DServiceStream.php18 $res = $this->sqlite->query('SELECT * FROM ' . $this->table . ' WHERE name=?', $name);
19 return ($this->modelClassName)::createFromArray($this->sqlite, $res->fetch());
/plugin/flowplayer/
H A Dsyntax.php37 if (preg_match('/(\d+),(\d+)/', $param, $res)) {
38 $width = intval($res[1]);
39 $height = intval($res[2]);
41 else if (preg_match('/([^:]+):(.*)$/', $param, $res))
42 $params[strtolower(substr($res[1], 0, 1)).substr($res[1], 1)] = '"'.$res[2].'"';
43 else if (preg_match('/no(\w+)/', $param, $res))
44 $params[strtolower(substr($res[1], 0, 1)).substr($res[1], 1)] = 'false';
45 else if (preg_match('/(\w+)/', $param, $res))
46 $params[strtolower(substr($res[1], 0, 1)).substr($res[1], 1)] = 'true';
/plugin/freechat/phpfreechat/data/public/js/
H A Dmyprototype.js11 var res = Array();
14 if (array[i] != value) res.push(array[i]);
16 return res;
H A Dpfcclient.js25 this.res = new pfcResource();
1330 img.alt = this.res.getLabel('Close');
1569 var smileys = this.res.getSmileyHash();
1862 btn.src = this.res.getFileUrl('images/maximize.gif');
1863 btn.alt = this.res.getLabel('Magnify');
1869 btn.src = this.res.getFileUrl('images/minimize.gif');
1870 btn.alt = this.res.getLabel('Cut down');
2067 btn.alt = this.res.getLabel('Hide smiley box');
2076 btn.alt = this.res.getLabel('Show smiley box');
2120 btn.alt = this.res.getLabel('Hide online users box');
[all …]
H A Dpfcgui.js244 img.setAttribute('src', pfc.res.getFileUrl('images/ch.gif'));
246 img.setAttribute('src', pfc.res.getFileUrl('images/pv.gif'));
262 var res = confirm(pfc.res.getLabel(msg));
263 if (res == true)
267 a2.alt = pfc.res.getLabel('Close this tab');
349 img.src = pfc.res.getFileUrl('images/ch-active.gif');
351 img.src = pfc.res.getFileUrl('images/pv-active.gif');
386 img.src = pfc.res.getFileUrl('images/ch.gif');
388 img.src = pfc.res.getFileUrl('images/pv.gif');
403 var smileys = pfc.res.getSmileyReverseHash();//getSmileyHash();
[all …]

12345678910>>...13