Home
last modified time | relevance | path

Searched refs:method (Results 226 – 250 of 972) sorted by path

12345678910>>...39

/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverDispatcher.php66 * @param mixed $method
70 public function dispatch($method, $arguments) argument
73 call_user_func_array([$listener, $method], $arguments);
/plugin/combo/vendor/salesforce/handlebars-php/
H A DREADME.md151 Use the method `Handlebars\Handlebars::render($template, $model)` to render you template once everything is created.
164 Alternatively you can use $handlebars itself without invoking the render method
658 To create your own helper, use the method: `Handlebars::addHelper($name, $callback)`
/plugin/combo/vendor/symfony/process/
H A DCHANGELOG.md28 * added `Process::getLastOutputTime()` method
36 * added the `Process::waitUntil()` method to wait for the process only for a
42 * added the `Process::isTtySupported()` method that allows to check for TTY support
52 * added a second `array $env = []` argument to the `start()` method of the
54 * the `ProcessUtils::escapeArgument()` method has been removed
74 * deprecated the `ProcessUtils::escapeArgument()` method
84 * added the convenience method "mustRun"
/plugin/combo/vendor/symfony/yaml/
H A DCHANGELOG.md78 * the `Dumper::setIndentation()` method has been removed
95 * added support for parsing YAML files using the `Yaml::parseFile()` or `Parser::parseFile()` method
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG-0.x.md
H A DCHANGELOG.md185 - Deprecated `MarkdownConverterInterface` and its `convertToHtml()` method; use `ConverterInterface` and `convert()` instead
257 - The `getEnvironment()` method of `CommonMarkConverter` and `GithubFlavoredMarkdownConverter` will always return the concrete, configurable `Environment` for upgrading convenience
265 - Added new `Node::iterator()` method and `NodeIterator` class for faster AST iteration (#683, #684)
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
404 - **Added missing return types to virtually every class and interface method**
463 - Anything with a `getReference(): ReferenceInterface` method now implements `ReferencableInterface`
509 - Removed the `ConfigurableEnvironmentInterface::setConfig()` method
550 - `RegexHelper::matchAll()` (use the new `matchFirst()` method instead)
/plugin/confmanager/
H A Djquery.form.js73 var method, action, url, $form = this;
79 method = this.attr('method');
91 type: method || 'GET',
255 type: method || 'POST'
418 if (!method) {
426 if (! s.skipEncodingOverride && (!method || /post/i.test(method))) {
/plugin/credits/
H A DREADME20 … descriptions. This is the desc field returned by the plugin's getInfo() method. The descriptions …
/plugin/darcs/
H A Dadmin.php109 $my_page.='| <html><form action="'.wl($ID).'" method="get">'.
126 $my_page.='<html><form action="'.wl($ID).'" method="post">'.
173 $my_page.='| **darcs get** <html><form action="'.wl($ID).'" method="post">'.
233 '<html><form action="'.wl($ID).'" method="get">'.
269 $retval='<html><form action="'.wl($ID).'" method="get">'.
/plugin/database2/
H A Ddatabase2.php786 $method = array( &$this, '__handle_'.$action );
787 if ( is_callable( $method ) )
788 if ( !call_user_func( $method, $rowid ) )
/plugin/datatables/assets/jszip/dist/
H A Djszip.min.js
/plugin/datatables/assets/pdfmake/build/
H A Dpdfmake.min.js
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js855 var method = obj[methodName];
857 return method.apply(obj, arguments);
H A Dfullcalendar.print.less63 /* use a more border-friendly method for this... */ }
/plugin/davcal/vendor/sabre/dav/
H A DCONTRIBUTING.md55 6. `public` must be omitted from method declarations. It must also be omitted
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Notifications/
H A DPlugin.php69 $server->on('method:GET', [$this, 'httpGet'], 90);
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DIMipPlugin.php119 switch (strtoupper($iTipMessage->method)) {
134 'Content-Type: text/calendar; charset=UTF-8; method=' . $iTipMessage->method,
H A DPlugin.php422 if ($iTipMessage->method === 'REPLY') {
483 if ($iTipMessage->method === 'REPLY') {
623 $method = strtoupper((string)$vObject->METHOD);
624 if (!$method) {
634 if ($componentType === 'VFREEBUSY' && $method === 'REQUEST') {
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DClient.php330 * @param string $method
337 function request($method, $url = '', $body = null, array $headers = []) { argument
341 $response = $this->send(new HTTP\Request($method, $url, $headers, $body));
H A DServer.php115 '{DAV:}supported-method-set',
443 $method = $request->getMethod();
445 if (!$this->emit('beforeMethod:' . $method, [$request, $response])) return;
452 $this->transactionType = strtolower($method);
459 if ($this->emit('method:' . $method, [$request, $response])) {
462 …throw new Exception\NotImplemented('There was no handler found for this "' . $method . '" method');
466 if (!$this->emit('afterMethod:' . $method, [$request, $response])) return;
/plugin/davcal/vendor/sabre/dav/lib/DAV/Locks/
H A DPlugin.php420 $method = $request->getMethod();
424 switch ($method) {
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/
H A DPlugin.php727 $method = $request->getMethod();
735 switch ($method) {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/
H A DDeliverNewEventTest.php87 $this->assertEquals('REQUEST', $message->method);
H A DIMipPluginTest.php28 $message->method = 'REPLY';
125 'Content-Type: text/calendar; charset=UTF-8; method=REQUEST',
167 'Content-Type: text/calendar; charset=UTF-8; method=CANCEL',
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DServerEventsTest.php34 $mock->expects($this->once())->method('afterResponseCallback');

12345678910>>...39