Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 176 for word1 (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/SearchBody.java

     */
    package org.codelibs.fess.app.web.api.admin.dict.protwords;
    
    import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody;
    
    /**
     * Search request body for protected words dictionary administration.
     * Extends BaseSearchDictBody with protected words dictionary-specific search parameters.
     */
    public class SearchBody extends BaseSearchDictBody {
    
        /**
         * Default constructor for 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)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/SearchBody.java

     */
    package org.codelibs.fess.app.web.api.admin.dict.stopwords;
    
    import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody;
    
    /**
     * Search request body for stop words dictionary administration.
     * Extends BaseSearchDictBody with stop words dictionary-specific search parameters.
     */
    public class SearchBody extends BaseSearchDictBody {
    
        /**
         * Default constructor for SearchBody.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/UploadForm.java

    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form for uploading stopwords files to the Fess search engine.
     * Stopwords are common words that should be ignored during search indexing and querying.
     * This form is used in the admin interface to upload custom stopwords dictionary files.
     */
    public class UploadForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java

    import org.codelibs.fess.dict.DictionaryFile;
    import org.codelibs.fess.dict.DictionaryItem;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Creator for protected words dictionary files.
     * This class manages the creation and registration of protected words dictionary files.
     */
    public class ProtwordsCreator extends DictionaryCreator {
        private static final Logger logger = LogManager.getLogger(ProtwordsCreator.class);
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java

        public Integer crudMode;
    
        /**
         * The bad word to be filtered from search suggestions.
         */
        @Required
        @Pattern(regexp = "[^\\s]+")
        public String suggestWord;
    
        /**
         * The username of the user who created this bad word entry.
         */
        @Size(max = 1000)
        public String createdBy;
    
        /**
         * The timestamp when this bad word entry was created.
         */
        @ValidateTypeFailure
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/text/Tokenizer.java

         * Represents EOF (End of File).
         */
        public static final int TT_EOF = -1;
    
        /**
         * Represents a Quote.
         */
        public static final int TT_QUOTE = '\'';
    
        /**
         * Represents a word.
         */
        public static final int TT_WORD = -3;
    
        private static final int TT_NOTHING = -4;
    
        private static final int NEED_CHAR = Integer.MAX_VALUE;
    
        private static final int QUOTE = '\'';
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

            logger.info("Creating new suggest index.");
            suggestHelper.suggester().createNextIndex();
    
            logger.info("Storing all bad words.");
            suggestHelper.storeAllBadWords(true);
    
            logger.info("Storing all elevate words.");
            suggestHelper.storeAllElevateWords(true);
    
            final AtomicInteger exitCode = new AtomicInteger(0);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/elevateword/DownloadForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.elevateword;
    
    /**
     * The download form for Elevate Word.
     * This form is used for downloading elevate word configurations from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 963 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/EditBody.java

    import org.codelibs.fess.app.web.admin.dict.protwords.EditForm;
    
    /**
     * Request body class for protected words dictionary edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for protected words dictionary management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
    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/api/admin/elevateword/DownloadBody.java

    package org.codelibs.fess.app.web.api.admin.elevateword;
    
    import org.codelibs.fess.app.web.admin.elevateword.DownloadForm;
    
    /**
     * Download body for elevate word API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading elevate word configurations via REST API.
     *
     */
    public class DownloadBody extends DownloadForm {
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top