Home
last modified time | relevance | path

Searched refs:result (Results 576 – 600 of 1997) sorted by relevance

1...<<21222324252627282930>>...80

/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
H A DFreeBusyGeneratorTest.php345 $result = $gen->getResult();
349 $freebusy = $result->VFREEBUSY->select('FREEBUSY');
361 …hat were not found in the output: ' . "\n" . print_r($expected,true) . "\n" . $result->serialize()
375 $result = $gen->getResult();
377 $this->assertEquals('PUBLISH', $result->METHOD->getValue());
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DFreeBusyGeneratorTest.php345 $result = $gen->getResult();
349 $freebusy = $result->VFREEBUSY->select('FREEBUSY');
361 …hat were not found in the output: ' . "\n" . print_r($expected,true) . "\n" . $result->serialize()
375 $result = $gen->getResult();
377 $this->assertEquals('PUBLISH', $result->METHOD->getValue());
/plugin/combo/resources/snippet/js/
H A Dcache.js59 let result = formatResults[formatResult];
67 let hit = result["result"];
73 let mtime = combo.Date.createFromIso(result["mtime"]).toSqlTimestampString();
74 let file = result["file"];
82 let dependency = result["dependency"];
/plugin/randomtables/table-roller/src/Generator/
H A DBaseGenerator.php47 $result = $table->rollOnce();
50 $result = $fn($result);
53 return $result;
/plugin/struct/action/
H A Dajax.php43 $result = $this->executeTypeAjax();
45 $result = [
49 $result['stacktrace'] = $e->getTraceAsString();
54 echo json_encode($result, JSON_THROW_ON_ERROR);
/plugin/nspages/
H A DnamespaceFinder.php21 $result = '';
26 $result = getNS($ID);
30 $result .= ':'.$wantedNS.':';
31 return $result;
/plugin/davcard/vendor/sabre/vobject/lib/Component/
H A DVAvailability.php86 $result = parent::validate($options);
89 $result[] = array(
96 return $result;
/plugin/webdavclient/vendor/sabre/vobject/lib/Component/
H A DVAvailability.php86 $result = parent::validate($options);
89 $result[] = array(
96 return $result;
/plugin/davcal/vendor/sabre/vobject/lib/Component/
H A DVAvailability.php86 $result = parent::validate($options);
89 $result[] = array(
96 return $result;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestCase.php215 private $result; variable in PHPUnit_Framework_TestCase
752 if ($result === null) {
868 $result->run($this);
875 $this->result = null;
877 return $result;
1313 * @param mixed $result
1315 public function setResult($result) argument
1317 $this->testResult = $result;
1339 return $this->result;
1347 $this->result = $result;
[all …]
/plugin/fedauth/Auth/Yadis/
H A DMisc.php47 $result = "";
49 $result .= "%".sprintf("%X", ord($c[$i]));
51 return $result;
/plugin/openid/Auth/Yadis/
H A DMisc.php47 $result = "";
49 $result .= "%" . sprintf("%X", ord($c[$i]));
51 return $result;
/plugin/yuml/
H A Dusecase.php73 $result = array();
74 preg_match($this->handle_pattern, $match, $result);
76 $style = $result[1];
77 $match = $result[2];
/plugin/farmsync/meta/
H A DStructUpdates.php12 $result = $this->farm_util->updateAnimalStructSchema($target, $schemaName, $json);
13 if (is_a($result, 'dokuwiki\plugin\farmsync\meta\StructConflict')) {
14 $this->results[$target]['failed'][] = $result;
16 $this->results[$target]['passed'][] = $result;
/plugin/move/script/
H A Drename.js45 function (result) {
46 if (result.error) {
47 $dialog.html(result.error.msg);
49 window.location.href = result.redirect_url;
33 AnonymousFunction70bfe16a0200(result) global() argument
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DAbstractTest.php16 $result = $propPatch->commit();
18 $this->assertFalse($result);
69 $result = $abstract->getMultipleCalendarObjects(1, [
89 $this->assertEquals($expected, $result);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Xml/Property/
H A DSupportedCalendarComponentSetTest.php69 $result = $this->parse(
76 $result['value']
95 $result = $this->parse(
102 $result['value']
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/
H A DMultiGetTest.php42 $result = $client->parseMultiStatus($response->body);
51 ), $result);
85 $result = $client->parseMultiStatus($response->body);
96 ), $result);
/plugin/elasticsearch/vendor/patrickschur/language-detection/src/LanguageDetection/
H A DLanguage.php72 $result = [];
94 $result[$lang] = 1 - ($sum / ($this->maxNgrams * $index));
97 \arsort($result, SORT_NUMERIC);
100 return new LanguageResult($result);
/plugin/webdav/vendor/sabre/xml/lib/
H A DWriter.php129 $result = $this->startElementNS(
139 $result = $this->startElement($localName);
145 … $result = $this->startElementNS($this->adhocNamespaces[$namespace], $localName, $namespace);
150 $result = parent::startElement($name);
162 return $result;
/plugin/icalevents/vendor/sabre/xml/lib/
H A DWriter.php129 $result = $this->startElementNS(
139 $result = $this->startElement($localName);
145 … $result = $this->startElementNS($this->adhocNamespaces[$namespace], $localName, $namespace);
150 $result = parent::startElement($name);
162 return $result;
/plugin/preregister/
H A Dadmin.php86 …$result = "<table cellspacing='2'><th>login</th><th>email</th><th>name</th><th>save time</th><th>a…
98 …$result .= '<tr><td>'. $entry['login'] . '</td><td>' . $entry['email'] . '</td><td>' . $entry['fu…
102 $result .= '</table>';
104 $result .= "\n<input type='hidden' name='del[]' value = '$del' />";
106 return $result ."\n";
/plugin/csv/_test/
H A DCSVTest.php67 $result = [];
70 if ($line !== false) array_push($result, $line);
73 $this->assertEquals($expect, $result, $file);
146 $result = \helper_plugin_csv::parseOptions($input);
148 $this->assertEquals($expect, $result);
/plugin/quickstats/
H A Dhelper.php18 $result = array();
20 $result[] = array(
27 $result[] = array(
34 $result[] = array(
40 $result[] = array(
/plugin/epub/
H A Dscript.js26 result = regex.exec(dom.innerHTML);
27 if(result) {
28 var epub='http://'+ location.host + DOKU_BASE + 'lib/exe/fetch.php?media=' + result[1];
29 … href="' + epub + '" class="media mediafile mf_epub" title="' + result[1] +'">' + result[1] +'</a>…

1...<<21222324252627282930>>...80