Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for discord (0.26 sec)

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

          "tokenizer": {
            "japanese_tokenizer": {
              "type": "fess_japanese_reloadable_tokenizer",
              "mode": "normal",
              "user_dictionary": "${fess.dictionary.path}ja/kuromoji.txt",
              "discard_punctuation": false,
              "reload_interval":"1m"
            },
            "korean_tokenizer": {
                "type": "fess_korean_tokenizer",
                "decompound_mode": "mixed",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  2. src/main/resources/fess_indices/_aws/fess.json

              "synonyms": ["fess,フエス"]
            }
          },
          "tokenizer": {
            "japanese_tokenizer": {
              "type": "kuromoji_tokenizer",
              "mode": "normal",
              "discard_punctuation": false,
              "user_dictionary_rules": ["令和,令和,レイワ,名詞-固有名詞-一般", "日本経済新聞,日本 経済 新聞,ニホン ケイザイ シンブン,カスタム名詞", "関西国際空港,関西 国際 空港,カンサイ コクサイ クウコウ,テスト名詞", "朝青龍,朝青龍,アサショウリュウ,カスタム名詞"]
            },
            "korean_tokenizer": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  3. src/main/webapp/css/font-awesome.min.css

    nt:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{conte...
    CSS
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Dec 14 21:22:25 GMT 2019
    - 55.8K bytes
    - Viewed (4)
  4. src/main/webapp/css/admin/font-awesome.min.css

    nt:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{conte...
    CSS
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Dec 14 21:22:25 GMT 2019
    - 55.8K bytes
    - Viewed (5)
  5. src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java

        }
    
        public void test_beginWithRecordAndDiscard() {
            String key = "test";
            crawlerStatsHelper.begin(key);
            crawlerStatsHelper.record(key, "aaa");
            crawlerStatsHelper.discard(key);
            logger.info(localLogMsg.get());
            assertNull(localLogMsg.get());
    
            crawlerStatsHelper.done(key);
            logger.info(localLogMsg.get());
            assertNull(localLogMsg.get());
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6K bytes
    - Viewed (0)
  6. src/main/resources/suggest_indices/suggest_analyzer.json

        "number_of_replicas": 0,
        "auto_expand_replicas": "0-1"
      },
      "analysis" : {
        "tokenizer" : {
          "fess_japanese_normal" : {
            "type" : "fess_japanese_tokenizer",
            "mode" : "normal",
            "discard_punctuation" : "false"
          },
          "fess_korean_normal": {
            "type": "fess_korean_tokenizer",
            "decompound_mode": "mixed",
            "user_dict_path": "${fess.dictionary.path}ko/nori.txt"
          }
        },
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu May 23 05:09:51 GMT 2019
    - 57.7K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/_cloud/fess.json

              "synonyms": ["fess,フエス"]
            }
          },
          "tokenizer": {
            "japanese_tokenizer": {
              "type": "kuromoji_tokenizer",
              "mode": "normal",
              "discard_punctuation": false,
              "user_dictionary_rules": ["令和,令和,レイワ,名詞-固有名詞-一般", "日本経済新聞,日本 経済 新聞,ニホン ケイザイ シンブン,カスタム名詞", "関西国際空港,関西 国際 空港,カンサイ コクサイ クウコウ,テスト名詞", "朝青龍,朝青龍,アサショウリュウ,カスタム名詞"]
            },
            "korean_tokenizer": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                    buf.append('\t').append("error:").append(escapeValue(e.getLocalizedMessage()).replaceAll("\\s", " "));
                    log(buf);
                }
            });
        }
    
        public void discard(final Object keyObj) {
            getCacheKey(keyObj).ifPresent(key -> {
                try {
                    final StatsObject data = statsCache.getIfPresent(key);
                    if (data != null) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

        "number_of_replicas": 0,
        "auto_expand_replicas": "0-1"
      },
      "analysis" : {
        "tokenizer" : {
          "fess_japanese_normal" : {
            "type" : "kuromoji_tokenizer",
            "mode" : "normal",
            "discard_punctuation" : "false"
          },
          "fess_korean_normal": {
            "type": "seunjeon_tokenizer",
            "index_eojeol": false,
            "user_words": ["덕후", "버카충", "낄끼빠빠" ]
          }
        },
        "analyzer" : {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Mar 24 12:55:37 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  10. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

        "number_of_replicas": 0,
        "auto_expand_replicas": "0-1"
      },
      "analysis" : {
        "tokenizer" : {
          "fess_japanese_normal" : {
            "type" : "kuromoji_tokenizer",
            "mode" : "normal",
            "discard_punctuation" : "false"
          },
          "fess_korean_normal": {
            "type": "nori_tokenizer",
            "decompound_mode": "mixed",
            "user_dictionary_rules": ["덕후", "버카충", "낄끼빠빠" ]
          }
        },
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 57.4K bytes
    - Viewed (0)
Back to top