- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 52 for Ford (0.03 sec)
-
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/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/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/main/resources/fess_label_en.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: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
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/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/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/resources/fess_message.properties
errors.failed_to_download_elevate_file = Failed to download an elevate word file. errors.failed_to_upload_elevate_file = Failed to upload an elevate word file. errors.failed_to_download_badword_file = Failed to download a bad word file. errors.failed_to_upload_badword_file = Failed to upload a bad word file. errors.failed_to_download_mapping_file = Failed to download a mapping file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
errors.failed_to_download_elevate_file = Failed to download an elevate word file. errors.failed_to_upload_elevate_file = Failed to upload an elevate word file. errors.failed_to_download_badword_file = Failed to download a bad word file. errors.failed_to_upload_badword_file = Failed to upload a bad word file. errors.failed_to_download_mapping_file = Failed to download a mapping file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.5K 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)