Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Heindel (0.21 sec)

  1. 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";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Failed to start reindexing from {0} to {1} */
        public static final String ERRORS_failed_to_reindex = "{errors.failed_to_reindex}";
    
        /** The key of the message: Failed to read request file: {0} */
        public static final String ERRORS_failed_to_read_request_file = "{errors.failed_to_read_request_file}";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/HashBiMap.java

            Object k = e.getKey();
            Object v = e.getValue();
            int kHash = Hashing.smearedHash(k);
            int eIndex = findEntryByKey(k, kHash);
            if (eIndex != ABSENT && Objects.equal(v, values[eIndex])) {
              removeEntryKeyHashKnown(eIndex, kHash);
              return true;
            }
          }
          return false;
        }
    
        @Override
        Entry<K, V> forEntry(int entry) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 06 16:06:58 GMT 2023
    - 36.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                        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;
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/LanguageHelper.java

                    .collect(Collectors.joining(";"));
            if (logger.isDebugEnabled()) {
                logger.debug("reindex script: {}", code);
            }
            return "if(ctx._source." + langField + "!=null){" + code + "}";
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  6. 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()) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 46.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Data Migration */
        public static final String LABELS_upgrade_data_migration = "{labels.upgrade_data_migration}";
    
        /** The key of the message: Reindex */
        public static final String LABELS_upgrade_reindex = "{labels.upgrade_reindex}";
    
        /** The key of the message: Start */
        public static final String LABELS_upgrade_start_button = "{labels.upgrade_start_button}";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  8. 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 = """
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
Back to top