Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 245 for stoptags (0.11 sec)

  1. src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiPartOfSpeechFilterFactory.java

        private final Set<String> stopTags = new HashSet<>();
    
        public KuromojiPartOfSpeechFilterFactory(IndexSettings indexSettings, Environment env, String name, Settings settings) {
            super(indexSettings, name, settings);
            List<String> wordList = Analysis.parseWordList(env, settings, "stoptags", s -> s);
            if (wordList != null) {
                stopTags.addAll(wordList);
            } else {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess.json

              "rules_path": "${fess.dictionary.path}it/stemmer_override.txt"
            },
            "japanese_pos_filter" : {
              "type" : "fess_japanese_part_of_speech",
              "stoptags" : [
                "その他",
                "その他-間投",
                "フィラー",
                "感動詞",
                "記号",
                "記号-アルファベット",
                "記号-一般",
                "記号-括弧開",
                "記号-括弧閉",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 11 01:26:55 UTC 2022
    - 39.9K bytes
    - Viewed (0)
  3. src/main/resources/suggest_indices/suggest_analyzer.json

        },
        "filter" : {
          "reading_form" : {
            "type" : "reloadable_kuromoji_readingform"
          },
          "pos_filter" : {
            "type" : "reloadable_kuromoji_part_of_speech",
            "stoptags" : [
              "その他",
              "その他-間投",
              "フィラー",
              "感動詞",
              "記号",
              "記号-アルファベット",
              "記号-一般",
              "記号-括弧開",
              "記号-括弧閉",
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Oct 03 02:51:59 UTC 2019
    - 57.3K bytes
    - Viewed (0)
  4. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

            ]
          }
        },
        "filter" : {
          "reading_form" : {
            "type" : "kuromoji_readingform"
          },
          "pos_filter" : {
            "type" : "kuromoji_part_of_speech",
            "stoptags" : [
              "その他",
              "その他-間投",
              "フィラー",
              "感動詞",
              "記号",
              "記号-アルファベット",
              "記号-一般",
              "記号-括弧開",
              "記号-括弧閉",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  5. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

            ]
          }
        },
        "filter" : {
          "reading_form" : {
            "type" : "kuromoji_readingform"
          },
          "pos_filter" : {
            "type" : "kuromoji_part_of_speech",
            "stoptags" : [
              "その他",
              "その他-間投",
              "フィラー",
              "感動詞",
              "記号",
              "記号-アルファベット",
              "記号-一般",
              "記号-括弧開",
              "記号-括弧閉",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Mar 24 12:55:37 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  6. src/main/resources/suggest_indices/suggest_analyzer.json

          }
        },
        "filter" : {
          "reading_form" : {
            "type" : "fess_japanese_readingform"
          },
          "pos_filter" : {
            "type" : "fess_japanese_part_of_speech",
            "stoptags" : [
              "その他",
              "その他-間投",
              "フィラー",
              "感動詞",
              "記号",
              "記号-アルファベット",
              "記号-一般",
              "記号-括弧開",
              "記号-括弧閉",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/_aws/fess.json

            },
            "italian_override": {
              "type":       "stemmer_override",
              "rules": []
            },
            "japanese_pos_filter" : {
              "type" : "kuromoji_part_of_speech",
              "stoptags" : [
                "その他",
                "その他-間投",
                "フィラー",
                "感動詞",
                "記号",
                "記号-アルファベット",
                "記号-一般",
                "記号-括弧開",
                "記号-括弧閉",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/_cloud/fess.json

            },
            "italian_override": {
              "type":       "stemmer_override",
              "rules": []
            },
            "japanese_pos_filter" : {
              "type" : "kuromoji_part_of_speech",
              "stoptags" : [
                "その他",
                "その他-間投",
                "フィラー",
                "感動詞",
                "記号",
                "記号-アルファベット",
                "記号-一般",
                "記号-括弧開",
                "記号-括弧閉",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  9. src/html/template/html_test.go

    	}
    }
    
    func BenchmarkStripTags(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		stripTags("The <i>quick</i>,\r\n<span style='color:brown'>brown</span> fox jumps\u2028over the <canine class=\"lazy\">dog</canine>")
    	}
    }
    
    func BenchmarkStripTagsNoSpecials(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		stripTags("The quick, brown fox jumps over the lazy dog.")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 19 22:45:50 UTC 2015
    - 2.8K bytes
    - Viewed (0)
  10. src/html/template/html.go

    	}
    	if t == contentTypeHTML {
    		return htmlReplacer(stripTags(s), htmlNospaceNormReplacementTable, false)
    	}
    	return htmlReplacer(s, htmlNospaceReplacementTable, false)
    }
    
    // attrEscaper escapes for inclusion in quoted attribute values.
    func attrEscaper(args ...any) string {
    	s, t := stringify(args...)
    	if t == contentTypeHTML {
    		return htmlReplacer(stripTags(s), htmlNormReplacementTable, true)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:42:28 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top