- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for Refreshed (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/SystemHelper.java
return designJspFileNameMap.entrySet().stream().map(e -> new Pair<>(e.getKey(), e.getValue())).toArray(n -> new Pair[n]); } /** * Refreshes the design JSP files for all virtual hosts. * * @return A list of paths to the refreshed files. */ public List<Path> refreshDesignJspFiles() { final List<Path> fileList = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
} } /** * Attempts to refresh tokens silently using the MSAL4J silent authentication flow. * @param user The Azure AD user whose tokens need to be refreshed. * @return The new authentication result, or null if silent refresh failed. */ public IAuthenticationResult refreshTokenSilently(final AzureAdCredential.AzureAdUser user) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
return deleteByQueryBuilder(searchEngineClient, index, queryBuilder); } /** * Deletes documents using the specified query builder and refreshes the index. * This method first refreshes the index, then performs the deletion, and logs the result. * * @param searchEngineClient the search engine client to use for deletion
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
TestRefreshableFessUser user = new TestRefreshableFessUser("testuser", true); assertTrue(user.refresh()); assertEquals(1, user.getRefreshCount()); // Test multiple refreshes user.refresh(); user.refresh(); assertEquals(3, user.getRefreshCount()); // Test custom implementation that returns false
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
* @param badWord The bad word to delete. */ public void deleteBadWord(final String badWord) { suggester.indexer().deleteBadWord(badWord); refresh(); } /** * Refreshes the suggest index. */ public synchronized void refresh() { suggester.refresh(); if (popularWordHelper != null) { popularWordHelper.clearCache(); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
// to suppress unexpected override by sub-class // you should remove the 'final' if you need to override this /** * Hook method called before action execution. * This method refreshes the user information if a user is logged in * and delegates to the view helper's action hook. * * @param runtime the action runtime context
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
@Override public OptionalEntity<WebConfig> getWebConfig(final String id) { final WebConfig webConfig = new WebConfig(); webConfig.setId(id + "_refreshed"); return OptionalEntity.of(webConfig); } @Override public OptionalEntity<WebConfig> getWebConfigByName(String name) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 34.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
} // PUT /api/admin/elevateword/setting /** * Updates an existing elevate word setting. * Refreshes all elevate words in the suggest helper to maintain consistency. * * @param body elevate word setting data to update * @return JSON response with updated setting ID and status */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
buildLabelTypeItems(labelTypeList); buildLabelTypePatternList(labelTypeList); return labelTypeList.size(); } /** * Refreshes the label type items and patterns. * * @param labelTypeList The list of label types. */ public void refresh(final List<LabelType> labelTypeList) { buildLabelTypeItems(labelTypeList);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
if (StringUtil.isBlank(pipeline)) { return OptionalThing.empty(); } return OptionalThing.of(pipeline); } /** * Refreshes the crawling configuration cache by invalidating all cached entries. * This forces the next access to reload configurations from the underlying services. */ public void refresh() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0)