Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 118 for Ford (0.01 sec)

  1. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java

                newOutput = output;
            }
        }
    
        /**
         * Gets the new input word.
         *
         * @return The new input word.
         */
        public String getNewInput() {
            return newInput;
        }
    
        /**
         * Sets the new input word.
         *
         * @param newInput The new input word.
         */
        public void setNewInput(final String newInput) {
            this.newInput = newInput;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/app/web/admin/elevateword/EditForm.java

            super();
        }
    
        /**
         * The unique identifier of the elevate word configuration being edited.
         * This is a required field for identifying which elevate word entry to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this elevate word configuration.
         * Used for audit trail purposes to track who made changes.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/SearchBody.java

    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    /**
     * Search request body for elevate word administration.
     * Extends BaseSearchBody with elevate word-specific search parameters.
     */
    public class SearchBody extends BaseSearchBody {
    
        /** The elevate word ID to search for. */
        public String id;
    
        /**
         * Default constructor for SearchBody.
         */
        public SearchBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/style.css

    	font-size: 120%;
    	font-weight: 600;
    }
    
    section.content table {
    	display: table;
    	table-layout: fixed;
    	width
    }
    
    section.content table td {
    	display: table-cell;
    	word-wrap: break-word;
    	overflow-wrap: break-word;
    }
    
    section.content table .label {
    	color: #fff;
    }
    
    textarea.systemInfoData {
    	height: 22em;
    	line-height: 1.5em;
    }
    
    .login-box {
    	height: 500px;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top