Home
last modified time | relevance | path

Searched refs:options (Results 176 – 200 of 1516) sorted by relevance

12345678910>>...61

/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/src/WebService/
H A DClient.php59 * @param array $options array of options. Valid options include:
71 $options = [] argument
77 if (is_string($options)) {
78 $options = ['host' => $options];
81 if (!isset($options['host'])) {
82 $options['host'] = 'geoip.maxmind.com';
85 $options['userAgent'] = $this->userAgent();
87 $this->client = new WsClient($accountId, $licenseKey, $options);
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/
H A DMechanismSelector.php40 public function select(array $choices = [], array $options = []): MechanismInterface argument
42 $mechs = $this->getAvailableMechsFromChoices($choices, $options);
95 * @param array $options
99 protected function getAvailableMechsFromChoices(array $choices, array $options): array argument
106 $available = $this->filterOptions($available, $options);
136 * @param array $options
139 protected function filterOptions(array $available, array $options): array argument
141 $useIntegrity = $options['use_integrity'] ?? false;
142 $usePrivacy = $options['use_privacy'] ?? false;
/plugin/jplayer/components/
H A Drequire-built.js721 options = options || {};
1335 options = options || {};
2093 options;
2131 this.options,
2132 options
3013 this.options
3018 this.options
4513 …pbr = ratio * (this.options.maxPlaybackRate - this.options.minPlaybackRate) + this.options.minPlay…
4519 …ratio = (pbr - this.options.minPlaybackRate) / (this.options.maxPlaybackRate - this.options.minPla…
4592 options = {};
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DOpenSSH.php145 * @param array $options optional
148 public static function savePublicKey(BaseCurve $curve, array $publicKey, array $options = []) argument
150 $comment = isset($options['comment']) ? $options['comment'] : self::$comment;
155 if (isset($options['binary']) ? $options['binary'] : self::$binary) {
168 if (isset($options['binary']) ? $options['binary'] : self::$binary) {
185 * @param array $options optional
188 …ey(BigInteger $privateKey, BaseCurve $curve, array $publicKey, $password = '', array $options = []) argument
203 return self::wrapPrivateKey($publicKey, $privateKey, $password, $options);
213 return self::wrapPrivateKey($publicKey, $privateKey, $password, $options);
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverSelect.php11 * Models a default HTML `<select>` tag, providing helper methods to select and deselect options.
66 throw new NoSuchElementException('No options are selected');
86 $options = $this->element->findElements(WebDriverBy::xpath($xpath));
88 foreach ($options as $option) {
107 $options = $this->element->findElements(WebDriverBy::xpath($xpath));
109 foreach ($options as $option) {
142 $options = $this->element->findElements(WebDriverBy::xpath($xpath));
144 foreach ($options as $option) {
162 throw new UnsupportedOperationException('You may only deselect all options of a multi-select');
173 throw new UnsupportedOperationException('You may only deselect options o
[all...]
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-idn/
H A DIdn.php142 * @param int $options
154 $options = [
178 if ($options['VerifyDnsLength']) {
195 * @param int $options
277 $useSTD3ASCIIRules = $options['UseSTD3ASCIIRules'];
278 $transitional = $options['Transitional_Processing'];
326 $checkForEmptyLabels = !isset($options['VerifyDnsLength']) || $options['VerifyDnsLength'];
348 $validationOptions = $options;
491 … if (!$canBeEmpty && (!isset($options['VerifyDnsLength']) || $options['VerifyDnsLength'])) {
505 if ($options['CheckHyphens']) {
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DUtils.php24 * @param int $options
31 public static function idnUriConvert(UriInterface $uri, $options = 0) argument
34 $asciiHost = self::idnToAsci($uri->getHost(), $options, $info);
68 * @param int $options
73 private static function idnToAsci($domain, $options, &$info = []) argument
80 return \idn_to_ascii($domain, $options, INTL_IDNA_VARIANT_UTS46, $info);
87 return Idn::idn_to_ascii($domain, $options, Idn::INTL_IDNA_VARIANT_UTS46, $info);
/plugin/upgrade/
H A Dcli.php31 protected function setup(Options $options)
33 $options->setHelp(
37 $options->registerArgument('check|run', 'Either only check if an update can be done or do it', 'true');
38 $options->registerOption('ignoreversions', 'Ignore the version check results and continue anyway', 'i');
42 protected function main(Options $options)
44 $arguments = $options->getArgs();
53 if (!$this->helper->checkVersions() && !$options->getOpt('ignoreversions')) {
29 setup(Options $options) global() argument
40 main(Options $options) global() argument
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DSearch.php191 public function setOptions(array $options): self
195 foreach ($options as $key => $value) {
328 * @param array|int $options Limit or associative array of options (option=>value)
335 public function search($query = '', $options = null, string $method = Request::POST): ResultSet
337 $this->setOptionsAndQuery($options, $query);
390 * @param array|int $options
394 public function setOptionsAndQuery($options = null, $query = ''): self
400 if (\is_int($options)) {
402 $this->getQuery()->setSize($options);
189 setOptions(array $options) global() argument
331 search($query = '', $options = null, string $method = Request POST) global() argument
386 setOptionsAndQuery($options = null, $query = '') global() argument
[all...]
/plugin/pureldap/vendor/freedsx/sasl/src/FreeDSx/Sasl/Challenge/
H A DAnonymousChallenge.php45 public function challenge(?string $received = null, array $options = []): SaslContext argument
50 $this->processClient($options);
71 protected function processClient(array $options): void argument
75 if (isset($options['username']) || isset($options['trace'])) {
76 $data['trace'] = $options['trace'] ?? $options['username'];
/plugin/findologicxmlexport/vendor/jms/serializer/src/Visitor/Factory/
H A DJsonSerializationVisitorFactory.php18 private $options = JSON_PRESERVE_ZERO_FRACTION; variable in JMS\\Serializer\\Visitor\\Factory\\JsonSerializationVisitorFactory
22 return new JsonSerializationVisitor($this->options);
25 public function setOptions(int $options): self argument
27 $this->options = (int) $options;
H A DJsonDeserializationVisitorFactory.php18 private $options = 0; variable in JMS\\Serializer\\Visitor\\Factory\\JsonDeserializationVisitorFactory
27 return new JsonDeserializationVisitor($this->options, $this->depth);
30 public function setOptions(int $options): self argument
32 $this->options = $options;
/plugin/google_maps/syntax/
H A Dcal.php104 '<iframe src="//www.google.com/calendar/embed?src=' . $options['url'] .
105 '&height=' . $options['height'] .
106 '&title=' . $options['alt'];
108 if (isset($options['date'])) {
109 $renderer->doc .= '&dates=' . $options['date'];
115 $renderer->doc .= ' ' . $attr_name . '="' . $options[$attr_name] . '"';
H A Dmaps.php141 $size = $this->getConfigValue($options, 'size');
142 $width = $this->getConfigValue($options, 'width', $size . '_') . "px";
143 $height = $this->getConfigValue($options, 'height', $size . '_') . "px";
156 $attr_value = $this->getConfigValue($options, $attr_name);
178 if ($options['zoom'])
180 $params .= "z=" . $options['zoom'];
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlMultiHandler.php13 * When using the CurlMultiHandler, custom curl options can be specified as an
31 * This handler accepts the following options:
43 * @param array $options
45 public function __construct(array $options = []) argument
47 if (isset($options['mh'])) {
48 $this->_mh = $options['mh'];
50 $this->factory = isset($options['handle_factory'])
51 ? $options['handle_factory'] : new CurlFactory();
52 $this->selectTimeout = isset($options['select_timeout'])
53 ? $options['select_timeou
[all...]
/plugin/jquery-syntax/jquery-syntax/
H A Djquery.syntax.core.js13 …reformatted=function(options,html,container){return html;};Syntax.modeLineOptions={'tab-width':fun… argument
24 return function(element,match,options){if(options.linkify===false) argument
104options,callback){var brushName=(options.brush||'plain').toLowerCase();brushName=Syntax.aliases[br… argument
106 var html=brush.process(text,options.matches,options);if(options.linkify!==false){jQuery('span.href'…
107 callback(html,brush,text,options);});}
108 Syntax.highlight=function(elements,options,callback){if(typeof(options)==='function'){callback=opti… argument
109 options.layout=options.layout||'preformatted';options.matches=[];if(typeof(options.tabWidth)==='und…
111options,function(html,brush){Syntax.layouts.get(options.layout,function(layout){html=layout(option…
112 html.addClass("syntax-theme-"+options.theme);}
113 if(brush.postprocess){html=brush.postprocess(options,html,container);}
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ServerProtocolHandler/
H A DServerRootDseHandler.php56 array $options
59 'namingContexts' => $options['dse_naming_contexts'] ?? '',
64 'vendorName' => $options['dse_vendor_name'] ?? '',
66 if (isset($options['ssl_cert'])) {
72 if (isset($options['paging_handler'])) {
78 if (isset($options['vendor_version'])) {
79 $entry->set('vendorVersion', $options['vendor_version']);
81 if (isset($options['alt_server'])) {
82 $entry->set('altServer', $options['alt_server']);
37 handleRequest(LdapMessageRequest $message, TokenInterface $token, RequestHandlerInterface $dispatcher, ServerQueue $queue, array $options) global() argument
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/
H A DJsCompressorFilter.php45 $options = array();
48 $options[] = '--nomunge';
52 $options[] = '--preserve-semi';
56 $options[] = '--disable-optimizations';
59 $asset->setContent($this->compress($asset->getContent(), 'js', $options));
/plugin/mp3play2/
H A Dsyntax.php132 …t.'&ShowPlaylist='.$options['showplaylist'].'&ShowEQ='.$options['showeq'].'&firstTrack='.$options[…
136 …ms['menu'].'" quality="'.$params['quality'].'" width="'.$options['width'].'" height="'.$options['h…
/plugin/findologicxmlexport/vendor/hoa/protocol/
H A DWrapper.php231 * @param int $options Holds additional flags set by the
249 public function stream_open($path, $mode, $options, &$openedPath) argument
258 $openedPath = fopen($path, $mode, $options & STREAM_USE_PATH);
263 $options & STREAM_USE_PATH,
383 public function dir_opendir($path, $options) argument
435 * @param int $options A bitwise mask of values.
438 public function mkdir($path, $mode, $options) argument
444 $options | STREAM_MKDIR_RECURSIVE
451 $options | STREAM_MKDIR_RECURSIVE,
483 * @param int $options A bitwise mask of values. It is not used
[all …]
/plugin/advrack/
H A Djquery.qtip.js108 this.options = options;
135 options = this.options,
534 options = this.options,
967 options = this.options,
1393 options = this.options;
1465 var options = this.options,
1518 options = this.options,
2046 this.options = options;
2251 options = this.options,
2716 options = api.options.show.modal,
[all …]
/plugin/searchform/
H A Dsyntax.php55 $options = ['namespace' => null, 'excludens' => false];
58 $options['namespace'] = cleanID($value);
59 $options['excludens'] = $key === '-ns';
61 return array($options, $state, $pos);
76 list($options,,) = $data;
81 $ns = $options['namespace'];
86 if($options['excludens']) {
/plugin/bibtex4dw/syntax/
H A Dbibtex.php92 $options = array();
93 // Add key-value pairs into options array
99 $options[$opt[0]][] = $opt[1];
104 // Careful with options settings, as there are only very
105 // few options that do make sense to be set that late.
106 if (array_key_exists('sort', $options)) {
107 $oopt['sort'] = $options['sort'];
109 if (array_key_exists('nocite', $options)) {
110 $oopt['nocite'] = $options['nocite'];
119 $bibtexrenderer->setOptions($options);
[all...]
/plugin/gemini/
H A Dcli.php16 protected function setup(Options $options) argument
18 $options->setHelp('Starts a Gemini Protocol server and serves the wiki as GemText');
21 $options->registerOption(
27 $options->registerOption(
33 $options->registerOption(
39 $options->registerOption(
50 protected function main(Options $options) argument
52 $interface = $options->getOpt('interface', '0.0.0.0');
53 $port = $options->getOpt('port', '1965');
54 $host = $options->getOpt('host', 'localhost');
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Cache/
H A DFilesystemCache.php24 private $options; variable in Twig\\Cache\\FilesystemCache
28 * @param int $options A set of options
30 public function __construct($directory, $options = 0) argument
33 $this->options = $options;
68 … if (self::FORCE_BYTECODE_INVALIDATION == ($this->options & self::FORCE_BYTECODE_INVALIDATION)) {

12345678910>>...61