- Sort Score
- Result 10 results
- Languages All
Results 41 - 46 of 46 for bad_word (0.04 sec)
-
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java
SuggestItem item = new SuggestItem(text, readings, null, 0L, 0L, 1.0f, null, null, null, SuggestItem.Kind.QUERY); // Test with no bad words String[] badWords = { "spam", "illegal" }; assertFalse(item.isBadWord(badWords)); // Test with matching bad word String[] badWords2 = { "test", "bad" }; assertTrue(item.isBadWord(badWords2)); // Test with partial match
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
assertEquals(1, response3.getNum()); assertEquals(2, suggester.settings().badword().get(false).length); suggester.indexer().deleteBadWord("["); suggester.indexer().deleteBadWord("エンジン"); assertEquals(0, suggester.settings().badword().get(false).length); } @Test public void test_popularWords() throws Exception {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 37.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java
import org.codelibs.fess.annotation.Secured; import org.codelibs.fess.app.web.admin.accesstoken.AdminAccesstokenAction; import org.codelibs.fess.app.web.admin.backup.AdminBackupAction; import org.codelibs.fess.app.web.admin.badword.AdminBadwordAction; import org.codelibs.fess.app.web.admin.boostdoc.AdminBoostdocAction; import org.codelibs.fess.app.web.admin.crawlinginfo.AdminCrawlinginfoAction;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Online help key for related content. online.help.name.relatedcontent=relatedcontent # Online help key for wizard. online.help.name.wizard=wizard # Online help key for bad word. online.help.name.badword=badword # Online help key for path mapping. online.help.name.pathmap=pathmap # Online help key for boost document. online.help.name.boostdoc=boostdoc # Online help key for data config.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. wizard */ String ONLINE_HELP_NAME_WIZARD = "online.help.name.wizard"; /** The key of the configuration. e.g. badword */ String ONLINE_HELP_NAME_BADWORD = "online.help.name.badword"; /** The key of the configuration. e.g. pathmap */ String ONLINE_HELP_NAME_PATHMAP = "online.help.name.pathmap"; /** The key of the configuration. e.g. boostdoc */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (2) -
CHANGELOG/CHANGELOG-1.16.md
* Notes on LB name: * to ensure backword and forward compat: * - SingleStack -v4 (pre v1.16) => BackendPool name == clusterName * - SingleStack -v6 => BackendPool name == clusterName (all cluster bootstrap uses this name) * DualStack:
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Oct 23 20:13:20 UTC 2024 - 345.2K bytes - Viewed (0)