- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for PreIndex (0.13 sec)
-
module.xml
<delete> <fileset dir="${modules.dir}"> <include name="lang-expression/asm-*" /> <include name="lang-painless/asm-*" /> <include name="reindex/commons-codec-*" /> <include name="reindex/commons-logging-*" /> <include name="reindex/httpclient-*" /> <include name="reindex/httpcore-4*" /> </fileset> </delete> </target>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 25 12:43:59 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
.replace("__DEST_INDEX__", toIndex)// .replace("__SCRIPT_SOURCE__", ComponentUtil.getLanguageHelper().getReindexScriptSource()); return reindex(fromIndex, toIndex, source, waitForCompletion); } public boolean reindex(final String fromIndex, final String toIndex, final boolean waitForCompletion) { final String template = """
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
&& !searchEngineClient.updateAlias(toIndex)) { logger.warn("Failed to update aliases for {} and {}", fromIndex, toIndex); } }, e -> logger.warn("Failed to reindex from {} to {}", fromIndex, toIndex, e))); return true; } saveError(messages -> messages.addErrorsFailedToReindex(GLOBAL, fromIndex, toIndex)); return false; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String INDEX_REINDEX_REFRESH = "index.reindex.refresh"; /** The key of the configuration. e.g. 1m */ String INDEX_REINDEX_TIMEOUT = "index.reindex.timeout"; /** The key of the configuration. e.g. 5m */ String INDEX_REINDEX_SCROLL = "index.reindex.scroll"; /** The key of the configuration. e.g. */ String INDEX_REINDEX_max_docs = "index.reindex.max_docs";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java
final String oldIndex = "." + index; if (client.existsIndex(oldIndex) && client.existsIndex(index)) { logger.info("Copying from {} to {}", oldIndex, index); if (!client.reindex(oldIndex, index, false)) { logger.warn("Failed to copy from {} to {}", oldIndex, index); } } else if (logger.isDebugEnabled()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 54K bytes - Viewed (0) -
pom.xml
<exclusion> <groupId>org.opensearch.plugin</groupId> <artifactId>percolator-client</artifactId> </exclusion> <exclusion> <groupId>org.opensearch.plugin</groupId> <artifactId>reindex-client</artifactId> </exclusion> <exclusion> <groupId>org.opensearch.plugin</groupId> <artifactId>mapper-extras-client</artifactId> </exclusion> <exclusion>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 02:16:03 UTC 2024 - 49.1K bytes - Viewed (0) -
cmd/xl-storage-format-v2.go
if metaV < 2 && ver.header.Type == DeleteType { // load (and convert) version. version, err := x.getIdx(i) if err == nil { // Only reindex if set. _, ok1 := version.DeleteMarker.MetaSys[ReservedMetadataPrefixLower+ReplicationTimestamp] _, ok2 := version.DeleteMarker.MetaSys[ReservedMetadataPrefixLower+ReplicaTimestamp] if ok1 || ok2 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 64K bytes - Viewed (0)