Home
last modified time | relevance | path

Searched refs:method (Results 526 – 550 of 972) sorted by relevance

1...<<21222324252627282930>>...39

/plugin/diagramsnet/lib/js/diagramly/
H A DNotionClient.js134 NotionClient.prototype.executeRequest = function(url, data, method, success, error, failOnAuth) argument
146 var req = new mxXmlRequest(this.baseUrl + url, data, method);
405 NotionClient.prototype.writeFile = function(url, folderId, filename, nameField, data, method, succe… argument
453 this.executeRequest(url, JSON.stringify(reqBody), method, success, error);
/plugin/markdownextra/lib/meltdown/js/lib/
H A Djs-markdown-extra.js306 var method = this[this.document_gamut[i][0]];
307 if(method) {
308 text = method.call(this, text);
563 var method = this[this.block_gamut[i][0]];
564 if(method) {
565 text = method.call(this, text);
601 var method = this[this.span_gamut[i][0]];
602 if(method) {
603 text = method.call(this, text);
/plugin/advanced/lang/en/config/
H A Dusers.txt8 …* **Password** - Encrypted password. The encryption method can be anything accepted by [[doku>conf…
/plugin/smtp/subtree/php-fig/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php89 ->method('__toString')
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php529 * @param string $method The method to use for rounding
533 function twig_round($value, $precision = 0, $method = 'common') argument
535 if ('common' == $method) {
539 if ('ceil' != $method && 'floor' != $method) {
543 return $method($value * pow(10, $precision)) / pow(10, $precision);
/plugin/s5reloaded/ui/effects_support/
H A Deffects.js330 var args = $A(arguments), method = args.last(),
332 this.method = Object.isFunction(method) ? method.bind(object) :
333 Object.isFunction(object[method]) ? object[method].bind(object) :
334 function(value) { object[method] = value };
338 this.method(position);
/plugin/adfs/phpsaml/extlib/xmlseclibs/
H A Dxmlseclibs.php90 $this->cryptParams['method'] = 'http://www.w3.org/2001/04/xmlenc#aes128-cbc';
104 $this->cryptParams['method'] = 'http://www.w3.org/2001/04/xmlenc#aes256-cbc';
121 $this->cryptParams['method'] = 'http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p';
143 $this->cryptParams['method'] = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256';
167 $this->cryptParams['method'] = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha512';
612 public function setCanonicalMethod($method) { argument
613 switch ($method) {
618 $this->canonicalMethod = $method;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md237 `read()` method.
294 Use the `GuzzleHttp\Psr7\StreamWrapper::getResource()` method to create a PHP
444 This method reads the entire stream to calculate a rolling hash, based on
454 This method is useful for reducing the number of clones needed to mutate
457 - method: (string) Changes the HTTP method.
484 This method accepts the following `$resource` types:
495 - `object` with `__toString()`: If the object has the `__toString()` method,
648 or the standard port. This method can be used independently of the implementation.
655 [RFC 3986 Section 5.3](https://tools.ietf.org/html/rfc3986#section-5.3). Usually this method does n…
710 Returns the target URI as a relative reference from the base URI. This method is the counterpart to…
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/
H A DDoctrinePHPCRDriverTest.php108 ->method('getManagerForClass')
/plugin/highlightjs/highlight/styles/
H A Dsunburst.css25 .function .keyword, .sub .keyword, .method, .list .title {
/plugin/imageshack/
H A Daction.php87 …echo '<form action="'.DOKU_BASE.'lib/exe/mediamanager.php" method="post" enctype="multipart/form-d…
/plugin/authdomainlimitation/
H A DREADME3 Provides a method to regulate the (email) domains with which users are allowed to register himself.
/plugin/authgooglesheets/vendor/psr/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php94 ->method('__toString')
/plugin/elasticsearch/vendor/psr/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php94 ->method('__toString')
/plugin/dw2pdf/vendor/psr/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php94 ->method('__toString')
/plugin/advrack/
H A Djquery.qtip.js708 method = adjust.method.split(' '),
1369 $.proxy(method, context || this)
1378 function delegate(selector, events, method) { argument
1383 api && !api.disabled && method.apply(api, arguments);
1927 method: 'flipinvert flipinvert' property in QTIP.defaults.position.adjust
2457 method = api.options.position.adjust.method.split(' '),
2458 horizontal = method[0],
2459 vertical = method[1] || method[0],
2938 method = adjust.method.split(' '),
2939 methodX = method[0],
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dinstallation.rst73 You can also install the C extension via PEAR (note that this method is
112 ``\Twig\Template::getAttribute()`` method.
/plugin/solr/
H A Daction.php138 $method = 'page_'.$event->data;
139 $this->$method();
/plugin/statistics/
H A Dadmin.php139 $method = 'html_' . $this->opt;
140 if(method_exists($this, $method)) {
143 $this->$method();
225 echo '<form action="'.DOKU_SCRIPT.'" method="get">';
/plugin/jplayer/vendor/symfony/process/Tests/
H A DProcessTest.php934 public function testMethodsThatNeedARunningProcess($method) argument
939 … $this->expectExceptionMessage(sprintf('Process must be started before calling "%s()".', $method));
941 $process->{$method}();
958 public function testMethodsThatNeedATerminatedProcess($method) argument
965 $process->{$method}();
1173 public function testIncrementalOutputDoesNotRequireAnotherCall($stream, $method) argument
1182 $result .= $process->$method();
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md284 into a client constructor or request method.
346 * Added a `GuzzleHttp\Pool::send()` convenience method to match the docs.
433 value as an array, then use the newly added `getHeaderAsArray()` method of
567 * Removed request method constants from RequestInterface.
585 that the toArray() method always returns an array.
656 * UriTemplate now has a `setRegex()` method to match the docs
1017 * Cleaning up `Guzzle\Common\Collection::inject` method
1085 * Added previousResponse() method to response objects
1249 * Bug: Fixing magic method command calls on clients
1278 …lMulti. Requests are now always prepares in the send() method rather than the addRequest() method.
[all …]
/plugin/diagramsnet/lib/js/dropbox/
H A DDropbox-sdk.min.js9method&&(""===this.xhr.responseType||"text"===this.xhr.responseType)||"undefined"==typeof this.xhr…
/plugin/findologicxmlexport/vendor/twig/extensions/doc/
H A Ddate.rst24 Internally, Twig uses the PHP ``DateTime::diff()`` method for calculating the
/plugin/webdav/vendor/sabre/uri/
H A DCHANGELOG.md24 * #10: Correctly support file:// URIs in the build() method. (@yuloh)
/plugin/odt2dw/
H A DREADME18 * Adjust method signatures to match parent

1...<<21222324252627282930>>...39