- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getKeyMatchHelper (0.13 sec)
-
src/main/java/org/codelibs/fess/helper/SystemHelper.java
updateConfigListenerMap.put("RelatedQuery", () -> Integer.toString(ComponentUtil.getRelatedQueryHelper().load())); updateConfigListenerMap.put("KeyMatch", () -> Integer.toString(ComponentUtil.getKeyMatchHelper().load())); } protected void parseProjectProperties(final Path propPath) { try (final InputStream in = Files.newInputStream(propPath)) { final Properties prop = new Properties();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 27.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
} final TimeoutTask timeoutTask = createTimeoutTask(); try { executeCrawler(); ComponentUtil.getKeyMatchHelper().update(); } catch (final JobProcessingException e) { throw e; } catch (final Exception e) { throw new JobProcessingException("Failed to execute a crawl job.", e);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jun 23 04:13:47 UTC 2024 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
return getComponent(FILE_TYPE_HELPER); } public static IndexUpdater getIndexUpdater() { return getComponent(INDEX_UPDATER); } public static KeyMatchHelper getKeyMatchHelper() { return getComponent(KEY_MATCH_HELPER); } public static IndexingHelper getIndexingHelper() { if (indexingHelper == null || HotdeployUtil.isHotdeploy()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:35:51 UTC 2024 - 20.2K bytes - Viewed (0)