Home
last modified time | relevance | path

Searched refs:search (Results 26 – 50 of 1061) sorted by relevance

12345678910>>...43

/plugin/struct/meta/
H A DCSVExporter.php33 $search = new Search();
34 $search->addSchema($table);
35 $search->addColumn('*');
37 $result = $search->getRows();
40 $pids = $search->getPids();
43 echo $this->header($search->getColumns());
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DSecurityNamespace.asciidoc72 $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for)
139 $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for)
155 $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for)
169 $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` then do nothing with refreshes. (Options = true,false,wait_for)
183 $params['refresh'] = (enum) If `true` (the default) then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, i
[all...]
H A DEqlNamespace.asciidoc24 * <<Elasticsearch_Namespaces_EqlNamespacesearch_search,`search()`>>
34 $params['id'] = (string) The async search ID
47 $params['id'] = (string) The async search ID
49 $params['keep_alive'] = (time) Update the time interval in which the results (partial or final) for this search will be available (Default = 5d)
62 $params['id'] = (string) The async search ID
70 .`search(array $params = [])`
78 $params['keep_alive'] = (time) Update the time interval in which the results (partial or final) for this search will be available (Default = 5d)
/plugin/elasticsearch/vendor/ruflin/elastica/src/Multi/
H A DMultiBuilder.php21 private function buildResultSet(Response $childResponse, BaseSearch $search): BaseResultSet argument
23 return $search->getResultSetBuilder()->buildResultSet($childResponse, $search->getQuery());
42 $search = \current($searches);
46 $resultSets[$key] = $this->buildResultSet(new Response($responseData), $search);
/plugin/sequencediagram/bower_components/lodash/perf/asset/
H A Dperf-ui.js8 var build = (build = /build=([^&]+)/.exec(location.search)) && decodeURIComponent(build[1]);
11 var other = (other = /other=([^&]+)/.exec(location.search)) && decodeURIComponent(other[1]);
23 search = location.search.replace(/^\?|&?(?:build|other)=[^&]*&?/g, '');
32 (search ? search + '&' : '') +
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhelpers.asciidoc14 [[search-response-iterator]]
17 The `SearchResponseIterator` can be used to iterate page by page in a search
19 https://www.elastic.co/guide/en/elasticsearch/reference/current/paginate-search-results.html#paginate-search-results[pagination].
28 'scroll' => '5m', // period to retain the search context
50 [[search-hit-iterator]]
55 https://www.elastic.co/guide/en/elasticsearch/reference/current/paginate-search-results.html#paginate-search-results[pagination].
65 'scroll' => '5m', // period to retain the search context
/plugin/latexit/classes/
H A DLabelHandler.php56 $search = array_search($label, $this->labels);
58 if($search === FALSE) {
64 $this->count[$search]++;
65 $label .= $this->count[$search];
/plugin/bpmnio/vendor/bpmn-js/dist/assets/
H A Ddiagram-js.css544 .djs-popup-search input {
579 .djs-popup-search {
590 .djs-popup-search {
595 .djs-popup-search-icon {
601 .djs-popup-search input {
885 * search pad
887 .djs-search-container {
925 .djs-search-results {
935 .djs-search-result {
943 .djs-search-highlight {
[all …]
/plugin/bpmnio/vendor/dmn-js/dist/assets/
H A Ddiagram-js.css544 .djs-popup-search input {
579 .djs-popup-search {
590 .djs-popup-search {
595 .djs-popup-search-icon {
601 .djs-popup-search input {
885 * search pad
887 .djs-search-container {
925 .djs-search-results {
935 .djs-search-result {
943 .djs-search-highlight {
[all …]
/plugin/structstatus/
H A DStatus.php154 $search = new Search();
155 $search->addSchema($col->getTable());
156 $search->addColumn($colname);
157 $search->addColumn('color');
158 $search->addColumn('icon');
159 $search->addSort($colname);
160 $values = $search->execute();
161 $rids = $search->getRids();
/plugin/tagfilter/script/select2/
H A Dselect2.js486 text = function (item) { return ""+item.text; }; // function used to retrieve the text portion of a data item that is matched against the search
596 * @param input text user has typed so far or pasted into the search field
603 var original = input, // store the original so we can compare and know if we need to tell the search to update its text
671 var results, search, resultsSelector = ".select2-results";
726 this.search = search = this.container.find("input.select2-input");
746 // do not propagate change event from the search field out of the component
764 installKeyUpChangeEvent(search);
765 search.on("keyup-change input paste", this.bind(this.updateResults));
766 search
3263 methodsMap = { search: "externalSearch" }; global() property in $.fn.select2.methodsMap
[all...]
/plugin/structgroupby/syntax/
H A Done.php65 $search = new SearchConfig($data);
66 $search->setLimit(0);
67 $search->setOffset(0);
70 $result = $search->execute();
84 $renderer->meta['plugin']['struct']['hasaggregation'] = $search->getCacheFlag();
/plugin/searchcombinedgoogle/
H A DREADME.md4 DokuWiki's search is great, but it does not order search results by relevance. Google does. Why not…
5 Here we go! This plugin hooks into the DokuWiki search and queries Google for your search word. It …
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D168bfdde773570cfc6dd3ab3574e413b.asciidoc1 // search/search.asciidoc:400
5 $response = $client->search();
H A D43682666e1abcb14770c99f02eb26a0d.asciidoc1 // search/search.asciidoc:415
8 $response = $client->search($params);
H A D8022e6a690344035b6472a43a9d122e0.asciidoc1 // search/search.asciidoc:409
8 $response = $client->search($params);
H A D9bdd3c0d47e60c8cfafc8109f9369922.asciidoc1 // search/search.asciidoc:7
8 $response = $client->search($params);
H A Dbe49260e1b3496c4feac38c56ebb0669.asciidoc1 // search/search.asciidoc:342
8 $response = $client->search($params);
H A Df5569945024b9d664828693705c27c1a.asciidoc1 // search/search.asciidoc:388
8 $response = $client->search($params);
/plugin/farmer/css/
H A Dchosen.less47 .chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
55 .chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
127 .chosen-container-single .chosen-search {
134 .chosen-container-single .chosen-search input[type="text"] {
153 .chosen-container-single.chosen-container-single-nosearch .chosen-search {
238 .chosen-container-multi .chosen-choices li.search-field {
243 .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
257 .chosen-container-multi .chosen-choices li.search-choice {
278 .chosen-container-multi .chosen-choices li.search-choice span {
281 .chosen-container-multi .chosen-choices li.search
[all...]
/plugin/tumblr/
H A Dsyntax.php133 'search' => $_REQUEST['search'],
146 if ($params['search']) {
147 $new_url = $url.'/search/'.$params['search'].'/page/'.$params['page'].'/rss';
301 if (!$options['search']) {
/plugin/solr/
H A DREADME.md4 This DokuWiki plugin enables you to index and search your wiki pages in a Solr server installation.
17 …with this plugin can be used as your starting point for creating a Solr search schema. Consider a…
21 … your DokuWiki template**, i.e. replacing the standard wiki search field with the Solr search fiel…
32search form where the search terms are searched in the content of the document. Search terms that …
35search where users can search for exact phrases, exclude words, search inside page titles, abstrac…
56 …ent the creation and modification date is indexed but there is no way to search for it. This is be…
/plugin/farmer/
H A Dall.less5 .chosen-container-single .chosen-search input[type="text"],
6 .chosen-container-multi .chosen-choices li.search-choice .search-choice-close,
7 .chosen-rtl .chosen-search input[type="text"] {
/plugin/structat/syntax/
H A Dtable.php105 $search = new SearchConfigAt($data);
108 $search->setLimit(0);
109 $search->setOffset(0);
113 $table = new $this->tableclass($INFO['id'], $mode, $renderer, $search);
118 $renderer->meta['plugin']['struct']['hasaggregation'] = $search->getCacheFlag();
/plugin/struct/syntax/
H A Dtable.php112 $search = $this->getSearchConfig($config);
115 $search->setLimit(0);
116 $search->setOffset(0);
119 $table = new $this->tableclass($mainId, $format, $renderer, $search);
131 $renderer->meta['plugin']['struct']['hasaggregation'] = $search->getCacheFlag();

12345678910>>...43