- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 70 for word (0.01 sec)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
StopwordsItem item = new StopwordsItem(123, "word"); assertEquals("StopwordsItem [id=123, inputs=word, newInputs=null]", item.toString()); item.setNewInput("updated"); assertEquals("StopwordsItem [id=123, inputs=word, newInputs=updated]", item.toString()); item.setNewInput(""); assertEquals("StopwordsItem [id=123, inputs=word, newInputs=]", item.toString()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
.result()); } // GET /api/admin/elevateword/{id} /** * Retrieves a specific elevate word setting by ID. * * @param id the ID of the elevate word to retrieve * @return JSON response containing the elevate word configuration */ @Execute public JsonResponse<ApiResult> get$setting(final String id) {
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/SuggestHelper.java
* * @param word The elevate word. * @param reading The reading of the word. * @param tags The tags associated with the word. * @param permissions The permissions for the word. * @param boost The boost value for the word. * @param apply true to apply the changes immediately. */
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/dict/stopwords/StopwordsFileTest.java
assertEquals("word3", stopwordsFile.stopwordsItemList.get(2).getInput()); } public void test_reload_withEscapedCharacters() { String content = "word\\\\1\n" + // word\1 "word\\\\\\\\2\n" + // word\\2 "word3\n"; InputStream is = new ByteArrayInputStream(content.getBytes(StandardCharsets.UTF_8));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
ProtwordsItem item1 = new ProtwordsItem(1, " word "); assertEquals(" word ", item1.getInput()); assertEquals(" word ", item1.toLineString()); ProtwordsItem item2 = new ProtwordsItem(2, "\tword\n"); assertEquals("\tword\n", item2.getInput()); assertEquals("\tword\n", item2.toLineString()); ProtwordsItem item3 = new ProtwordsItem(3, " ");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
.status(ApiResult.Status.OK) .result()); } /** * Retrieves a specific bad word setting by ID. * * @param id the ID of the bad word to retrieve * @return JSON response containing the bad word configuration */ // GET /api/admin/badword/{id} @Execute public JsonResponse<ApiResult> get$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java
}).renderWith(data -> { registerLabels(data); }); } /** * Shows the form for editing an existing elevate word. * * @param form edit form containing the elevate word ID * @return HTML response for the edit elevate word form */ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
}).createPageNumberList()); return elevateWordList; } /** * Retrieves a specific elevate word by its ID, including associated label type information. * * @param id the unique identifier of the elevate word * @return OptionalEntity containing the elevate word if found, or empty if not found */ public OptionalEntity<ElevateWord> getElevateWord(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java
break; default: break; } return OptionalEntity.empty(); } /** * Get the protected word item. * @param form The create form. * @param hook The error hook. * @return The protected word item. */ protected OptionalEntity<ProtwordsItem> createProtwordsItem(final CreateForm form, final VaErrorHook hook) { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
// Test with long phrase (many terms) PhraseQuery.Builder builder = new PhraseQuery.Builder(); String[] words = { "this", "is", "a", "very", "long", "phrase", "query" }; for (String word : words) { builder.add(new Term(Constants.DEFAULT_FIELD, word)); } PhraseQuery phraseQuery = builder.build(); QueryContext context = new QueryContext("test", false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0)