- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for anderer (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
suggester.indexer().addBadWord(word, apply); } refresh(); } /** * Adds a bad word to the suggest index. * * @param badWord The bad word to add. * @param apply true to apply the changes immediately. */ public void addBadWord(final String badWord, final boolean apply) { suggester.indexer().addBadWord(badWord, apply);
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/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
((TestDataService) dataService).setAccessResultList(new TestOpenSearchResultList()); // Start indexer in separate thread indexUpdater.start(); // Let it run briefly ThreadUtil.sleep(100); // Stop the indexer indexUpdater.setFinishCrawling(true); // Wait for completion with longer timeout indexUpdater.join(3000);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.indexer; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.function.Consumer; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0)