- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 132 for update (0.04 sec)
-
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
try (MappingUpdater updater = new MappingUpdater(item)) { reload(updater); } } /** * Updates an existing character mapping item in the dictionary file. * * @param item the character mapping item to update */ @Override public synchronized void update(final CharMappingItem item) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
private final String output; /** * Array of new input character sequences for update operations. * When not null, indicates this item has pending updates. */ private String[] newInputs; /** * The new output character sequence for update operations. * When not null, indicates this item has pending updates. */ private String newOutput; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 7.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
} /** * Updates the given list of access results. * @param accessResultList The list of access results to update. */ @Override public void update(final List<AccessResultImpl<Long>> accessResultList) { for (final AccessResultImpl<Long> accessResult : accessResultList) { update(accessResult); } }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
try (ProtwordsUpdater updater = new ProtwordsUpdater(item)) { reload(updater); } } /** * Reloads the dictionary file with the specified updater. * @param updater the updater to use for processing items */ protected void reload(final ProtwordsUpdater updater) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
public synchronized void insert(final KuromojiItem item) { try (KuromojiUpdater updater = new KuromojiUpdater(item)) { reload(updater); } } @Override public synchronized void update(final KuromojiItem item) { try (KuromojiUpdater updater = new KuromojiUpdater(item)) { reload(updater); } } @Override
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
if (logger.isInfoEnabled()) { logger.info("User {} completed successfully: username={}, id={}", isUpdate ? "update" : "create", username, user.getId()); } } catch (final Exception e) { logger.warn("Failed to {} user: username={}, id={}, error={}", isUpdate ? "update" : "create", username, user.getId(), e.getMessage(), e); throw e; } }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
} /** * Updates a document using a custom update request builder. * * @param id The document ID to update * @param builderLambda Consumer function to configure the update request builder * @return true if the update was successful, false otherwise */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java
// Verify that createNextIndex completed without exceptions // The update alias should now point to the new index final String updateAlias = suggester.getIndex() + ".update"; aliasResponse = client.admin().indices().prepareGetAliases(updateAlias).execute().actionGet(); assertNotNull("Update alias should exist after createNextIndex", aliasResponse.getAliases()); // Switch to new indexRegistered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 13.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
}); return redirect(getClass()); } /** * Updates an existing key match. * * @param form the edit form * @return HTML response after update */ @Execute @Secured({ ROLE }) public HtmlResponse update(final EditForm form) { verifyCrudMode(form.crudMode, CrudMode.EDIT, this::asListHtml);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 16.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
public synchronized void insert(final StopwordsItem item) { try (StopwordsUpdater updater = new StopwordsUpdater(item)) { reload(updater); } } @Override public synchronized void update(final StopwordsItem item) { try (StopwordsUpdater updater = new StopwordsUpdater(item)) { reload(updater); } } @Override
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 13K bytes - Viewed (0)