Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for stopWords (0.06 sec)

  1. src/test/java/org/codelibs/opensearch/extension/analysis/StopTokenPrefixFilterFactory.java

            } else {
                stopwords = new String[0];
            }
    
            ignoreCase = settings.getAsBoolean("ignore_case", Boolean.FALSE).booleanValue();
            if (ignoreCase) {
                for (int i = 0; i < stopwords.length; i++) {
                    stopwords[i] = stopwords[i].toLowerCase(Locale.ROOT);
                }
            }
        }
    
        @Override
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

            "type":       "stop",
            "stopwords":  "_arabic_"
          },
          "arabic_keywords": {
            "type":       "keyword_marker",
            "keywords": ["ﻡﺮﺤﺑﺍﺍ", "ﻉﺎﻠﻣ", "ﺐﺤﺛ"]
          },
          "arabic_stemmer": {
            "type":       "stemmer",
            "language":   "arabic"
          },
          "bulgarian_stop": {
            "type":       "stop",
            "stopwords":  "_bulgarian_"
          },
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Mar 24 12:55:37 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  3. src/main/resources/suggest_indices/suggest_analyzer.json

            "stopwords":  "_czech_"
          },
          "czech_keywords": {
            "type":       "keyword_marker",
            "keywords_path": "${fess.dictionary.path}cs/protwords.txt"
          },
          "czech_stemmer": {
            "type":       "stemmer",
            "language":   "czech"
          },
          "danish_stop": {
            "type":       "stop",
            "stopwords":  "_danish_"
          },
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.app.web.admin.dict.stopwords.UploadForm;
    import org.codelibs.fess.app.web.api.ApiResult;
    import org.codelibs.fess.app.web.api.admin.FessApiAdminAction;
    import org.codelibs.fess.dict.stopwords.StopwordsFile;
    import org.codelibs.fess.dict.stopwords.StopwordsItem;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.JsonResponse;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/JapaneseStopTokenFilterFactory.java

            this.stopWords =
                    Analysis.parseWords(env, settings, "stopwords", JapaneseAnalyzer.getDefaultStopSet(), NAMED_STOP_WORDS, ignoreCase);
        }
    
        @Override
        public TokenStream create(TokenStream tokenStream) {
            if (removeTrailing) {
                return new StopFilter(tokenStream, stopWords);
            } else {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/main/resources/suggest_indices/suggest_analyzer.json

            "type":       "stop",
            "stopwords":  "_arabic_"
          },
          "arabic_keywords": {
            "type":       "keyword_marker",
            "keywords":   ["مرحباا"]
          },
          "arabic_stemmer": {
            "type":       "stemmer",
            "language":   "arabic"
          },
          "bulgarian_stop": {
            "type":       "stop",
            "stopwords":  "_bulgarian_"
          },
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Oct 03 02:51:59 UTC 2019
    - 57.3K bytes
    - Viewed (0)
  7. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

            "type":       "stop",
            "stopwords":  "_arabic_"
          },
          "arabic_keywords": {
            "type":       "keyword_marker",
            "keywords": ["ﻡﺮﺤﺑﺍﺍ", "ﻉﺎﻠﻣ", "ﺐﺤﺛ"]
          },
          "arabic_stemmer": {
            "type":       "stemmer",
            "language":   "arabic"
          },
          "bulgarian_stop": {
            "type":       "stop",
            "stopwords":  "_bulgarian_"
          },
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/CreateBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.dict.stopwords;
    
    import org.codelibs.fess.app.web.admin.dict.stopwords.CreateForm;
    
    public class CreateBody extends CreateForm {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 796 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

    public class StopwordsFile extends DictionaryFile<StopwordsItem> {
        private static final String STOPWORDS = "stopwords";
    
        List<StopwordsItem> stopwordsItemList;
    
        public StopwordsFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
        public String getType() {
            return STOPWORDS;
        }
    
        @Override
        public String getPath() {
            return path;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /admin/dict/stopwords/admin_dict_stopwords.jsp */
        HtmlNext path_AdminDictStopwords_AdminDictStopwordsJsp = new HtmlNext("/admin/dict/stopwords/admin_dict_stopwords.jsp");
    
        /** The path of the HTML: /admin/dict/stopwords/admin_dict_stopwords_details.jsp */
        HtmlNext path_AdminDictStopwords_AdminDictStopwordsDetailsJsp = new HtmlNext("/admin/dict/stopwords/admin_dict_stopwords_details.jsp");
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top