- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 190 for wordt (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/CreateForm.java
/** The CRUD operation mode for form processing */ @ValidateTypeFailure public Integer crudMode; /** The input word that should be stemmed differently */ @Required @Size(max = 1000) public String input; /** The desired stem output for the input word */ @Required @Size(max = 1000) public String output; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/EditForm.java
import jakarta.validation.constraints.Size; /** * Form class for editing elevate word configurations in the admin interface. * This form extends CreateForm to include fields necessary for updating existing elevate word entries, * including tracking information for optimistic locking and audit trails. * Elevate words are used to boost specific documents in search results when certain keywords are matched. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
} public void test_equals() { // Test equals method ProtwordsItem item1 = new ProtwordsItem(1, "word"); ProtwordsItem item2 = new ProtwordsItem(2, "word"); ProtwordsItem item3 = new ProtwordsItem(1, "different"); ProtwordsItem item4 = new ProtwordsItem(1, "word"); // Same object assertTrue(item1.equals(item1)); // Same input, different id
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/suggest/ApiAdminSuggestAction.java
body.queryWordsNum = suggestHelper.getQueryWordsNum(); return asJson(new ApiResult.ApiConfigResponse().setting(body).status(ApiResult.Status.OK).result()); } /** * Deletes all suggest words from the system. * * @return JSON response indicating success or failure */ // DELETE /api/admin/suggest/all @Execute public JsonResponse<ApiResult> delete$all() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K 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/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/main/resources/fess_label.properties
labels.suggest_word_configuration=Suggest Word labels.suggest_word_title_details=Suggest Word labels.suggest_word_type=Word Type labels.suggest_word_number=Number of Words labels.suggest_word_type_all=All labels.suggest_word_type_document=Document labels.suggest_word_type_query=Query labels.elevate_word_configuration=Elevate Word labels.elevate_word_title_details=Elevate Word labels.elevate_word_link_list=List
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 40.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
conditions.put("q", new String[] { "search term" }); conditions.put("epq", new String[] { "exact phrase" }); conditions.put("oq", new String[] { "word1 word2" }); conditions.put("nq", new String[] { "exclude" }); conditions.put("filetype", new String[] { "pdf" }); conditions.put("sitesearch", new String[] { "example.com" });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/CreateForm.java
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Form class for creating protected words dictionary entries. * Protected words are terms that should not be modified or analyzed during * text processing, preserving their original form in search indexes. * */ public class CreateForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/SearchForm.java
*/ package org.codelibs.fess.app.web.admin.elevateword; /** * The search form for Elevate Word. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The ID field for searching elevate words. */ public String id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 928 bytes - Viewed (0)