Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for stemmo (0.14 sec)

  1. src/main/resources/fess_indices/fess.json

          },
          "filter": {
            "stemmer_en_filter": {
              "type": "stemmer",
              "name": "english"
            },
            "english_override": {
              "type":       "stemmer_override",
              "rules_path": "${fess.dictionary.path}en/stemmer_override.txt"
            },
            "possessive_stemmer_en_filter": {
              "type": "stemmer",
              "name": "possessive_english"
            },
            "stopword_en_filter": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jun 06 14:17:42 UTC 2025
    - 39.8K bytes
    - Viewed (0)
  2. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

          "stemmer_en_filter": {
            "type": "stemmer",
            "name": "english"
          },
          "arabic_stop": {
            "type":       "stop",
            "stopwords":  "_arabic_"
          },
          "arabic_keywords": {
            "type":       "keyword_marker",
            "keywords": ["ﻡﺮﺤﺑﺍﺍ", "ﻉﺎﻠﻣ", "ﺐﺤﺛ"]
          },
          "arabic_stemmer": {
            "type":       "stemmer",
            "language":   "arabic"
          },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 57.4K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/UploadForm.java

    /**
     * Form for uploading stemmer override files to the Fess search engine.
     * Stemmer override allows custom rules to override the default stemming behavior for specific words.
     * This form is used in the admin interface to upload custom stemmer override dictionary files.
     */
    public class UploadForm {
    
        /**
         * The dictionary ID that identifies which stemmer override dictionary configuration to update.
    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/app/web/admin/dict/stemmeroverride/SearchForm.java

    import org.lastaflute.web.validation.Required;
    
    /**
     * The search form for Stemmer Override.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The dictionary ID field for stemmer override dictionary operations.
         */
        @Required
        public String dictId;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/DownloadBody.java

    import org.codelibs.fess.app.web.admin.dict.stemmeroverride.DownloadForm;
    
    /**
     * Download body for stemmer override dictionary API operations.
     * This class extends the DownloadForm to provide request body handling
     * for downloading stemmer override dictionaries 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)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/EditBody.java

    import org.codelibs.fess.app.web.admin.dict.stemmeroverride.EditForm;
    
    /**
     * Request body class for stemmer override dictionary edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for stemmer override 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)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * Form class for editing stemmer override dictionary entries in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing stemmer override entries.
     * Stemmer overrides define custom stemming rules that take precedence over the default stemming algorithm.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/SearchBody.java

     */
    package org.codelibs.fess.app.web.api.admin.dict.stemmeroverride;
    
    import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody;
    
    /**
     * Search request body for stemmer override dictionary administration.
     * Extends BaseSearchDictBody with stemmer override 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)
  9. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java

    import org.codelibs.fess.dict.DictionaryCreator;
    import org.codelibs.fess.dict.DictionaryFile;
    import org.codelibs.fess.dict.DictionaryItem;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * A dictionary creator for stemmer override files.
     * This class is responsible for creating {@link StemmerOverrideFile} instances
     * from files that match the pattern "stemmer_override.*\\.txt".
     */
    public class StemmerOverrideCreator extends DictionaryCreator {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  10. docs/works_with_okhttp.md

     * ⬜️ [Retrofit](https://github.com/square/retrofit): Type-safe HTTP client for Android and Java by Square.
     * [ScribeJava](https://github.com/scribejava/scribejava): Simple OAuth library for Java
     * [Stetho](https://github.com/facebook/stetho): Stetho is a debug bridge for Android applications.
     * [Thrifty](https://github.com/Microsoft/thrifty): An implementation of Apache Thrift for Android.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 15 16:18:51 UTC 2025
    - 3.9K bytes
    - Viewed (0)
Back to top