- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 99 for bad (0.01 sec)
-
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
} /** * 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); refresh(); } /** * Deletes a bad word from the suggest index. *
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/suggest/index/SuggestIndexer.java
* <li>{@link #indexFromSearchWord(String, String[], String[], String[], int, String[])} - Index from search word. * <li>{@link #addBadWord(String, boolean)} - Add a bad word and optionally apply it. * <li>{@link #deleteBadWord(String)} - Delete a bad word. * <li>{@link #addElevateWord(ElevateWord, boolean)} - Add an elevate word and optionally apply it.
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 34.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
/** Helper for managing search suggestions and bad words */ @Resource protected SuggestHelper suggestHelper; /** * Retrieves bad word settings with pagination support. * * @param body the search body containing pagination and filter parameters * @return JSON response containing list of bad word configurations */ // GET /api/admin/badword/settings
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/net/HostAndPortTest.java
public void testFromStringBadDefaultPort() { // Well-formed strings with bad default ports. checkFromStringCase("gmail.com:81", -1, "gmail.com", 81, true); checkFromStringCase("192.0.2.2:83", -1, "192.0.2.2", 83, true); checkFromStringCase("[2001::2]:85", -1, "2001::2", 85, true); checkFromStringCase("goo.gl:65535", 65536, "goo.gl", 65535, true); // No port, bad default. checkFromStringCase("google.com", -1, "google.com", -1, false);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
/** The object path is invalid */ int NT_STATUS_OBJECT_PATH_INVALID = 0xC0000039; /** The object path was not found */ int NT_STATUS_OBJECT_PATH_NOT_FOUND = 0xC000003a; /** The object path syntax is bad */ int NT_STATUS_OBJECT_PATH_SYNTAX_BAD = 0xC000003b; /** The process cannot access the file because it is being used by another process */ int NT_STATUS_SHARING_VIOLATION = 0xC0000043;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java
} break; default: break; } return OptionalEntity.empty(); } /** * Get the bad word. * @param form The create form. * @return The bad word. */ public static OptionalEntity<BadWord> getBadWord(final CreateForm form) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.bad_word_link_upload=Upload labels.bad_word_button_download=Download labels.bad_word_button_upload=Upload labels.bad_word_list_suggest_word=Bad Word labels.bad_word_suggest_word=Bad Word labels.bad_word_file=Bad Word File labels.user_configuration=User labels.user_list_name=Name labels.user_password=Password labels.user_confirm_password=Password (Confirm) labels.user_title_details=User
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/armerror.s
MOVH R0, F0 // ERROR "illegal combination" MOVB R0>>0(R1), R2 // ERROR "bad shift" MOVB R0->0(R1), R2 // ERROR "bad shift" MOVB R0@>0(R1), R2 // ERROR "bad shift" MOVBS R0>>0(R1), R2 // ERROR "bad shift" MOVBS R0->0(R1), R2 // ERROR "bad shift" MOVBS R0@>0(R1), R2 // ERROR "bad shift" MOVF CPSR, F1 // ERROR "illegal combination"
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Oct 23 15:18:14 UTC 2024 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIteratorBaseTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/operand_test.go
{"[4", "register list: bad low register in `[4`"}, {"[]", "register list: bad low register in `[]`"}, {"[f-x]", "register list: bad low register in `[f`"}, {"[r10-r13]", "register list: bad low register in `[r10`"}, {"[k3-k6]", "register list: bad low register in `[k3`"}, {"[X0]", "register list: expected '-' after `[X0`, found ']'"}, {"[X0-]", "register list: bad high register in `[X0-]`"},
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 29 18:31:05 UTC 2023 - 23.9K bytes - Viewed (0)