Home
last modified time | relevance | path

Searched refs:options (Results 251 – 275 of 1516) sorted by relevance

1...<<11121314151617181920>>...61

/plugin/icalevents/vendor/sabre/vobject/lib/Parser/
H A DXML.php53 * @param int $options Any parser options (OPTION constants).
57 function __construct($input = null, $options = 0) { argument
59 if (0 === $options) {
60 $options = parent::OPTION_FORGIVING;
63 parent::__construct($input, $options);
71 * @param int $options
77 function parse($input = null, $options = 0) { argument
83 if (0 !== $options) {
84 $this->options = $options;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceNetworking/
H A DEnumValue.php65 public function setOptions($options) argument
67 $this->options = $options;
74 return $this->options;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Forms/
H A DChoiceQuestion.php37 public function setOptions($options) argument
39 $this->options = $options;
46 return $this->options;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceConsumerManagement/
H A DEnumValue.php65 public function setOptions($options) argument
67 $this->options = $options;
74 return $this->options;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceUsage/
H A DEnumValue.php65 public function setOptions($options) argument
67 $this->options = $options;
74 return $this->options;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceManagement/
H A DEnumValue.php65 public function setOptions($options) argument
67 $this->options = $options;
74 return $this->options;
/plugin/bpmnio/vendor/dmn-js/dist/assets/
H A Ddmn-js-shared.css41 --select-options-background-color: var(--color-white);
44 --select-options-color: var(--color-grey-225-10-15);
191 .dms-input-select .options {
192 background: var(--select-options-background-color);
195 .dms-select-options {
198 border: solid 1px var(--select-options-border-color);
201 color: var(--select-options-color);
208 .dms-select-options .option {
212 .dms-select-options .option.active {
216 .dms-select-options .option:focus,
[all …]
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DTwigFormulaLoader.php85 … $options = array_replace($invoker->getOptions(), isset($arguments[1]) ? $arguments[1] : array());
87 if (!isset($options['name'])) {
88 … $options['name'] = $invoker->getFactory()->generateAssetName($inputs, $filters, $options);
91 $formulae[$options['name']] = array($inputs, $filters, $options);
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DPumpStream.php39 * @param array $options Stream options:
43 public function __construct(callable $source, array $options = []) argument
46 $this->size = isset($options['size']) ? $options['size'] : null;
47 $this->metadata = isset($options['metadata']) ? $options['metadata'] : [];
/plugin/s5reloaded/ui/audio_support/
H A Dsoundmanager2.js561 self.options.pan = nPan;
567 self.options.volume = nVol;
577 if (self.readyState != 3 && self.options.whileloading) self.options.whileloading.apply(self);
591 if (self.options.onid3) self.options.onid3.apply(self);
598 …if (self.options.whileplaying) self.options.whileplaying.apply(self); // flash may call after actu…
599 …ded && self.options.onbeforefinish && self.options.onbeforefinishtime && !self.didBeforeFinish && …
612 if (self.options.onload) self.options.onload.apply(self);
618 if (self.options.onbeforefinish) self.options.onbeforefinish.apply(self);
627 if (self.options.onjustbeforefinish) self.options.onjustbeforefinish.apply(self);;
636 if (self.options.onfinish) self.options.onfinish.apply(self);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
H A DObjectDefinition.php49 public function setOptions(ObjectOptions $options) argument
51 $this->options = $options;
58 return $this->options;
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/Loader/
H A DFilesystemLoader.php46 * @param array $options Array of Loader options (default: array())
48 public function __construct($baseDir, array $options = array()) argument
60 if (array_key_exists('extension', $options)) {
61 if (empty($options['extension'])) {
64 $this->extension = '.' . ltrim($options['extension'], '.');
/plugin/autogallery/
H A Dsyntax.php58 $options = substr($match, 12, -2); //
59 $options = explode('#', $options, 2);
61 $namespace = trim(ltrim($options[0], '>'));
62 $templates = explode(',', $options[1]);
/plugin/authgooglesheets/vendor/google/auth/src/Middleware/
H A DAuthTokenMiddleware.php96 return function (RequestInterface $request, array $options) use ($handler) {
98 if (!isset($options['auth']) || $options['auth'] !== 'google_auth') {
99 return $handler($request, $options);
111 return $handler($request, $options);
H A DProxyAuthTokenMiddleware.php96 return function (RequestInterface $request, array $options) use ($handler) {
98 if (!isset($options['proxy_auth']) || $options['proxy_auth'] !== 'google_auth') {
99 return $handler($request, $options);
111 return $handler($request, $options);
H A DScopedAccessTokenMiddleware.php117 return function (RequestInterface $request, array $options) use ($handler) {
119 if (!isset($options['auth']) || $options['auth'] !== 'scoped') {
120 return $handler($request, $options);
125 return $handler($request, $options);
/plugin/authgooglesheets/vendor/google/auth/src/HttpHandler/
H A DGuzzle6HttpHandler.php45 public function __invoke(RequestInterface $request, array $options = []) argument
47 return $this->client->send($request, $options);
58 public function async(RequestInterface $request, array $options = []) argument
60 return $this->client->sendAsync($request, $options);
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DSearchableInterface.php40 * @param array|int|null $options Limit or associative array of options (option=>value)
48 public function search($query = '', $options = null, string $method = Request::POST): ResultSet;
72 * @param array|int|null $options
74 public function createSearch($query = '', $options = null): Search;
39 search($query = '', $options = null, string $method = Request POST) global() argument
61 createSearch($query = '', $options = null) global() argument
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
H A DLessphpFilter.php34 private $options = array(); variable in Assetic\\Filter\\LessphpFilter
68 public function setOptions(array $options) argument
70 $this->options = $options;
112 if (method_exists($lc, 'setOptions') && count($this->options) > 0 ) {
113 $lc->setOptions($this->options);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DPumpStream.php42 * @param array $options Stream options:
46 public function __construct(callable $source, array $options = []) argument
49 $this->size = isset($options['size']) ? $options['size'] : null;
50 $this->metadata = isset($options['metadata']) ? $options['metadata'] : [];
/plugin/davcal/vendor/sabre/dav/bin/
H A Dnaturalselection117 options,args = parser.parse_args()
127 runs = options.runs;
131 sleep=options.sleep,
132 simulate=options.simulate,
133 threshold=options.threshold,
134 min_erase=options.min_erase
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DCurlHandler.php12 * When using the CurlHandler, custom curl options can be specified as an
31 * Accepts an associative array of options:
38 * @param array $options Array of options to use with the handler
40 public function __construct(array $options = []) argument
43 $this->factory = isset($options['handle_factory'])
44 ? $options['handle_factory']
46 $this->maxHandles = isset($options['max_handles'])
47 ? $options['max_handles']
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DAbstractEndpoint.php62 private $options = []; variable in Elasticsearch\\Endpoints\\AbstractEndpoint
108 return $this->options;
255 // Extract out client options, then start transforming
266 $this->options['client'] = $params['client'];
269 $ignore = isset($this->options['client']['ignore']) ? $this->options['client']['ignore'] : null;
272 $this->options['client']['ignore'] = explode(",", $ignore);
274 $this->options['client']['ignore'] = $ignore;
276 $this->options['client']['ignore'] = [$ignore];
/plugin/googleanalytics/
H A Daction.php60 $options = array();
62 … $options['userId'] = md5(auth_cookiesalt() . 'googleanalytics' . $_SERVER['REMOTE_USER']);
65 $options['cookieDomain'] = $this->getConf('domainName');
66 $options['legacyCookieDomain'] = $this->getConf('domainName');
76 'options' => $options,
/plugin/dx/build/
H A DpluginInfoVersionUpdater.js3 const options = contents
12 options.date = (new Date()).toISOString().substr(0, 10);
14 … const longestKey = Object.keys(options).reduce( (carry, key) => Math.max(carry, key.length), 0);
15 return Object.entries(options)

1...<<11121314151617181920>>...61