Home
last modified time | relevance | path

Searched refs:mapping (Results 126 – 150 of 191) sorted by path

12345678

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dindex-operations.asciidoc197 The PUT Mappings API allows you to modify or add to an existing index's mapping.
220 // Update the index mapping
228 The GET Mappings API returns the mapping details about your indices. Depending
H A Drelease-notes.asciidoc234 * Add missing leading slash in the URL of put mapping endpoint
302 * Fixed missing put mapping code snippet in code examples
/plugin/elasticsearch/vendor/react/promise/
H A DREADME.md65 multiple promises and mapping and reducing collections of promises.
461 Useful functions for creating, joining, mapping and reducing collections of
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md229 * Used new mapping endpoints classes [#1845](https://github.com/ruflin/Elastica/pull/1845)
364 * The [_parent](https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-parent-field.html) field has been removed in favour of the join field.
517 - removed analyzed/not_analyzed on [indices mapping](https://www.elastic.co/guide/en/elasticsearch/reference/6.0/mapping-index.html)
518 - [store](https://www.elastic.co/guide/en/elasticsearch/reference/6.0/mapping-store.html) field only accepts boolean
523 - Index mapping field of type [*'string'*](https://www.elastic.co/guide/en/elasticsearch/reference/5.5/string.html) has been removed from Elasticsearch 6.0 codebase [#1353](https://github.com/ruflin/Elastica/pull/1353)
586 - Add support for querystring in Type. this allow to use `update_all_types` in type mapping in order to resolve conflicts between fields in different types. [Conflicts between fields in different types](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-put-mapping.html#merging-conflicts)
639 - `ttl` and `timestamp` logic: setters and getters in documents and mapping
723 - Removed Elastica\Type::delete() It is no longer possible to delete the mapping fo
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DIndex.php106 * @param Mapping $mapping MappingType object argument
107 * @param array $query querystring when put mapping (for example update_all_types)
109 public function setMapping(Mapping $mapping, array $query = []): Response
111 return $mapping->send($this, $query);
129 // Get first entry as if index is an Alias, the name of the mapping is the real name and not alias name
130 $mapping = \array_shift($data);
132 return $mapping['mappings'] ?? [];
H A DMapping.php14 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html
38 * Sets the mapping properties.
50 * Gets the mapping properties.
60 * Sets the mapping _meta.
66 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-meta.html
83 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-source-field.html
146 * Converts the mapping to an array.
158 * Submits the mapping and sends it to the server.
161 * @param array $query Query string parameters to send with mapping
176 * Creates a mapping objec
184 create($mapping) global() argument
[all...]
/plugin/etherpadlite/
H A DREADME.md19 * mapping of dokuwiki permissions
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dindex.rst23 configuration to build the class mapping, but it can
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md328 - Added mapping for guid type [\#802](https://github.com/schmittjoh/serializer/pull/802) ([develth]…
741 - Automatic mapping of properties [\#200](https://github.com/schmittjoh/serializer/issues/200)
879 - Fixed yml mapping file name [\#256](https://github.com/schmittjoh/serializer/pull/256) ([spolisch…
998 - Mulit type property mapping [\#56](https://github.com/schmittjoh/serializer/issues/56)
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DCHANGELOG.md19 * duplicate mapping keys throw a `ParseException`
20 * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS`
63 * Deprecated support for implicitly parsing non-string mapping keys as strings.
92 * Omitted mapping values will be parsed as `null`.
94 * Omitting the key of a mapping is deprecated and will throw a `ParseException` in Symfony 4.0.
106 when the mapping key is not quoted and will lead to a `ParseException` in
115 * Support for silently ignoring duplicate mapping keys in YAML has been
163 * Deprecated usage of a colon in an unquoted mapping value
H A DInline.php409 $len = \strlen($mapping);
415 switch ($mapping[$i]) {
430 $isKeyQuoted = \in_array($mapping[$i], ['"', "'"], true);
431 $key = self::parseScalar($mapping, $flags, [':', ' '], $i, false, []);
437 if (false === $i = strpos($mapping, ':', $i)) {
449 …if (!$isKeyQuoted && (!isset($mapping[$i + 1]) || !\in_array($mapping[$i + 1], [' ', ',', '[', ']'…
458 if (':' === $mapping[$i] || ' ' === $mapping[$i]) {
464 $tag = self::parseTag($mapping, $i, $flags);
465 switch ($mapping[$i]) {
468 $value = self::parseSequence($mapping, $flags, $i, $references);
[all …]
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsBasicTests.yml85 a mapping.
94 A value in a mapping can be a sequence.
105 A value in a mapping can be another mapping.
124 A mapping can contain any assortment
159 If you are adding a mapping to a sequence, you
160 can place the mapping on the same line as the
172 you can add a sequence inside of a mapping without
185 A merge key ('<<') can be used in a mapping to insert other mappings. If
187 pairs is inserted into the current mapping.
189 mapping:
[all …]
H A DYtsBlockMapping.yml4 A mapping with one key/value pair
H A DYtsFlowCollections.yml19 between each entry in the mapping.
H A DYtsFoldedScalars.yml129 sequence or a mapping.
H A DYtsNullsAndEmpties.yml13 You can represent the empty mapping
14 with an empty inline mapping.
H A DYtsSpecificationExamples.yml676 # # mapping where each key is
689 # each mapping having one key
854 test: Top level mapping
1044 test: Complete mapping test
1054 key: Subordinate mapping
1058 - Previous mapping is empty.
1085 is a: mapping
1087 with a: mapping value.
1092 { 'key' => 'Subordinate mapping' }, 'third' =>
1106 if k['This'] == 'key' and k['is a'] == 'mapping' and v['with a'] == 'mapping value.'
[all …]
H A DsfTests.yml90 test: A sequence with an embedded mapping
92 A sequence with an embedded mapping
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dfirst.rst7 The ``first`` filter returns the first "element" of a sequence, a mapping, or
H A Dlast.rst7 The ``last`` filter returns the last "element" of a sequence, a mapping, or
H A Dlength.rst8 The ``length`` filter returns the number of items of a sequence or mapping, or
H A Dreverse.rst7 The ``reverse`` filter reverses a sequence, a mapping, or a string:
45 * ``preserve_keys``: Preserve keys when reversing a mapping or a sequence.
H A Dslice.rst7 The ``slice`` filter extracts a slice of a sequence, a mapping, or a string:
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Dmax.rst14 When called with a mapping, max ignores keys and only compares values:
H A Dmin.rst14 When called with a mapping, min ignores keys and only compares values:

12345678