Home
last modified time | relevance | path

Searched refs:context (Results 126 – 150 of 1053) sorted by last modified time

12345678910>>...43

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhelpers.asciidoc28 'scroll' => '5m', // period to retain the search context
65 'scroll' => '5m', // period to retain the search context
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
H A DStreamHandler.php232 $context = [
244 $context['http']['content'] = $body;
247 $context['http']['header'] .= "Content-Type:\r\n";
251 $context['http']['header'] = rtrim($context['http']['header']);
253 return $context;
398 $context argument
401 function () use ($url, $context) {
406 $resource = fopen($url, 'r', null, $context);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClient.php350 * Explicitly clears the search context for a scroll.
1124 * $params['context'] = (string) Script context
1136 $context = $this->extractArgument($params, 'context');
1143 $endpoint->setContext($context);
1186 * $params['scroll'] = (time) Control how long to keep the search context alive (Default = 5m)
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Common/
H A DEmptyLogger.php35 public function log($level, $message, array $context = []) argument
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/.ci/jobs/
H A Delastic+elasticsearch-php+pull-request.yml18 status-context: clients-ci
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc619 $params['context'] = (string) Script context
659 $params['scroll'] = (time) Control how long to keep the search context alive (Default = 5m)
/plugin/elasticsearch/vendor/psr/log/Psr/Log/
H A DAbstractLogger.php18 * @param mixed[] $context
22 public function emergency($message, array $context = array()) argument
24 $this->log(LogLevel::EMERGENCY, $message, $context);
34 * @param mixed[] $context
38 public function alert($message, array $context = array()) argument
40 $this->log(LogLevel::ALERT, $message, $context);
49 * @param mixed[] $context
53 public function critical($message, array $context = array()) argument
55 $this->log(LogLevel::CRITICAL, $message, $context);
63 * @param mixed[] $context
67 error($message, array $context = array()) global() argument
83 warning($message, array $context = array()) global() argument
96 notice($message, array $context = array()) global() argument
111 info($message, array $context = array()) global() argument
124 debug($message, array $context = array()) global() argument
[all...]
H A DLoggerInterface.php11 * will be replaced by the context data in key "foo".
13 * The context array can contain arbitrary data. The only assumption that
26 * @param mixed[] $context
30 public function emergency($message, array $context = array()); argument
39 * @param mixed[] $context
43 public function alert($message, array $context = array()); argument
51 * @param mixed[] $context
55 public function critical($message, array $context = array()); argument
62 * @param mixed[] $context
66 public function error($message, array $context argument
79 warning($message, array $context = array()) global() argument
89 notice($message, array $context = array()) global() argument
101 info($message, array $context = array()) global() argument
111 debug($message, array $context = array()) global() argument
124 log($level, $message, array $context = array()) global() argument
[all...]
H A DLoggerTrait.php19 * @param array $context
23 public function emergency($message, array $context = array()) argument
25 $this->log(LogLevel::EMERGENCY, $message, $context);
35 * @param array $context
39 public function alert($message, array $context = array()) argument
41 $this->log(LogLevel::ALERT, $message, $context);
50 * @param array $context
54 public function critical($message, array $context = array()) argument
56 $this->log(LogLevel::CRITICAL, $message, $context);
64 * @param array $context
68 error($message, array $context = array()) global() argument
84 warning($message, array $context = array()) global() argument
97 notice($message, array $context = array()) global() argument
112 info($message, array $context = array()) global() argument
125 debug($message, array $context = array()) global() argument
141 log($level, $message, array $context = array()) global() argument
[all...]
H A DNullLogger.php20 * @param array $context
26 public function log($level, $message, array $context = array()) argument
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/
H A DPutScript.php31 protected $context; variable in Elasticsearch\\Endpoints\\PutScript
41 $context = $this->context ?? null;
43 if (isset($context)) {
44 return "/_scripts/$id/$context";
54 'context'
73 public function setContext($context): PutScript argument
75 if (isset($context) !== true) {
78 $this->context = $context;
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md361 * Replaced [params._agg](https://www.elastic.co/guide/en/elasticsearch/reference/master/breaking-changes-7.0.html#_replaced_literal_params__agg_literal_with_literal_state_literal_context_variable_in_scripted_metric_aggregations) with state context variable in scripted metric aggregations
401 * Clear scroll context also when empty page was received [#1660](https://github.com/ruflin/Elastica/pull/1660)
498 - Return the [_source of inner hit nested](https://github.com/elastic/elasticsearch/pull/26982) as is without wrapping it into its full path context [#1398](https://github.com/ruflin/Elastica/pull/1398)
503 - Added clear() to `Scroll` for closing search context on ES manually
508 - Clear search context on ES after usage in `Scroll`
/plugin/elasticsearch/vendor/psr/log/Psr/Log/Test/
H A DLoggerInterfaceTest.php48 $level.' message of level '.$level.' with context: Bob',
49 $level.' message of level '.$level.' with context: Bob',
57 LogLevel::EMERGENCY => array(LogLevel::EMERGENCY, 'message of level emergency with context: {user}'),
58 LogLevel::ALERT => array(LogLevel::ALERT, 'message of level alert with context: {user}'),
59 LogLevel::CRITICAL => array(LogLevel::CRITICAL, 'message of level critical with context: {user}'),
60 LogLevel::ERROR => array(LogLevel::ERROR, 'message of level error with context: {user}'),
61 LogLevel::WARNING => array(LogLevel::WARNING, 'message of level warning with context: {user}'),
62 LogLevel::NOTICE => array(LogLevel::NOTICE, 'message of level notice with context: {user}'),
63 LogLevel::INFO => array(LogLevel::INFO, 'message of level info with context: {user}'),
64 LogLevel::DEBUG => array(LogLevel::DEBUG, 'message of level debug with context
[all...]
H A DTestLogger.php69 public function log($level, $message, array $context = []) argument
74 'context' => $context,
95 if (isset($record['context']) && $rec['context'] !== $record['context']) {
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DGuzzleStreamWrapper.php10 public $context; variable in GuzzleHttp\\Stream\\GuzzleStreamWrapper
56 $options = stream_context_get_options($this->context);
/plugin/achart/assets/
H A Dapexcharts.min.js6context:i,type:"xaxis",contextMethod:i.addXaxisAnnotation}),i}},{key:"addYaxisAnnotationExternal",…
14 …globals.memory.methodsToExec.forEach((function(t){t.method(t.params,!1,t.context)})),a.globals.axi…
/plugin/ckgedit/ckeditor/
H A DCHANGES.md103 …thub.com/ckeditor/ckeditor-dev/issues/1181): [Chrome] Fixed: Opening the context menu in a read-on…
118 * [#1451](https://github.com/ckeditor/ckeditor-dev/issues/1451): Fixed: The context menu is incorre…
282 * SCAYT default number of suggested words in the context menu changed to 3.
471 …16804): Fixed: Focus is not on the first menu item when the user opens a context menu or a drop-do…
535 …cuts (relevant to the operating system in use) will now be displayed in tooltips and context menus.
707 * [#13883](https://dev.ckeditor.com/ticket/13883): Fixed: Copying a table using the context menu st…
1139 …r.com/ticket/11306): [OSX][Blink/WebKit] Fixed: No widget entries in the context menu on widget ri…
1174 …ersistently displayed in the [Enhanced Image](https://ckeditor.com/cke4/addon/image2) context menu.
1412 …ket/11082): Fixed: Selected widget is not copied or cut when using toolbar buttons or context menu.
1617 * [#10196](https://dev.ckeditor.com/ticket/10196): Fixed context menus not opening with keyboard sh…
[all …]
H A Dckeditor.js.unc4349 …if (this.context && !b.isContextFor(this.context) || !this.checkAllowed(!0)) return this.disable()…
6949 context: e,
6964 context: c,
13104 context: "p",
13345 context: "blockquote",
19078 context: "p",
19203 context: {
19327 context: {
19381 this.context = "p";
21303 context: "div",
[all …]
H A Dckeditor.js213 …ction(a,b){if(!this.readOnly&&a.readOnly)return!0;if(this.context&&!b.isContextFor(this.context)||…
214 …ools.extend(this,d,{modes:{wysiwyg:1},editorFocus:1,contextSensitive:!!d.context,state:CKEDITOR.TR…
410 …1"\x3e\x26nbsp;\x3c/span\x3e';K=u+K+u}K=z.editor.dataProcessor.toHtml(K,{context:null,fixForBody:!…
669 …t).contains("blockquote",1)?CKEDITOR.TRISTATE_ON:CKEDITOR.TRISTATE_OFF)},context:"blockquote",allo…
923 …on(f,c,d){var h={allowedContent:l[c],requiredContent:m[c]};"form"==c&&(h.context="form");b.addComm…
963 …b)})(this,b[a])})}};CKEDITOR.plugins.indent.genericDefinition.prototype={context:"p",exec:function… property in CKEDITOR.plugins.indent.genericDefinition
971 …("contentDomInvalidated");return!0}for(var k=this,q=this.database,p=this.context,c,m=f.getSelectio…
974context,c,m)||(f.execCommand(this.relatedGlobal),g.cancel())}},this);this.jobs[this.isIndent?10:30…
1014 …l.root);a.fire("contentDomInvalidated")}function C(a,l){this.name=a;this.context=this.type=l;this.…
1076 …eElement("div",{attributes:e(a.lang.pagebreak.alt)});a.insertElement(b)},context:"div",allowedCont… property in CKEDITOR.plugins.pagebreakCmd
[all …]
/plugin/ckgedit/ckeditor/plugins/geshi/dialogs/
H A Dgeshi.js.unc193 // The context of this function is the dialog object itself.
/plugin/ckgedit/ckeditor/plugins/msword/dialogs/bak/
H A Dmsword.js.unc90 // The context of this function is the dialog object itself.
/plugin/ckgedit/ckeditor/lang/
H A Den.4.9.js.beautified167 …%1 to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option.",
597 …%1 to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option.",
H A Den.js-4.9.merged5context menu option.","pasteArea":"Paste Area","pasteMsg":"Paste your content inside the area belo…
H A Den.js.4.95context menu option.","pasteArea":"Paste Area","pasteMsg":"Paste your content inside the area belo…
/plugin/ckgedit/lang/
H A Den.4.9.js.beautified167 …%1 to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option.",
597 …%1 to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option.",

12345678910>>...43