Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 395 for werd (0.01 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

            String result = purgeLogJob.execute();
    
            // Assert all services were called
            assertTrue(deleteCrawlingInfoCalled[0]);
            assertTrue(deleteSearchLogCalled[0]);
            assertTrue(deleteJobLogCalled[0]);
            assertTrue(deleteUserInfoCalled[0]);
            assertTrue(updateJobLogStatusCalled[0]);
    
            // Assert correct parameters were passed - verify that time passed is greater than 0
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_3x.md

        They may also be fired in cases where no event was published previously. In this release we did
        an internal rewrite of our event code to fix problems where events were lost or unbalanced.
    
     *  Fix: Don't leak a connection when a call is canceled immediately preceding the `onFailure()`
        callback.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/EditBody.java

    import org.codelibs.fess.app.web.admin.elevateword.EditForm;
    
    /**
     * Request body class for elevate word edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for elevate word management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
        public EditBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java

    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form for uploading bad word files to the Fess search engine.
     * This form is used in the admin interface to upload bad word dictionary files
     * that contain words to be filtered from search results.
     */
    public class UploadForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/BadWordPager.java

    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager class for bad word management with pagination support.
     * Provides pagination functionality for bad word lists.
     */
    public class BadWordPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /** Default page size for bad word pagination. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/badword/SearchBody.java

    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    /**
     * Search request body for bad word administration.
     * Extends BaseSearchBody with bad word-specific search parameters.
     */
    public class SearchBody extends BaseSearchBody {
    
        /** The bad 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/java/org/codelibs/fess/app/web/admin/elevateword/UploadForm.java

    /**
     * Form for uploading elevate word files to the Fess search engine.
     * Elevate words are terms that should be promoted or given higher ranking in search results.
     * This form is used in the admin interface to upload elevate word configuration files.
     */
    public class UploadForm {
    
        /**
         * The multipart file containing the elevate word configurations to be uploaded.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
Back to top