Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Chinese (0.2 sec)

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

                "thai_stop"
              ]
            },
            "traditional_chinese_analyzer": {
              "char_filter": [ "traditional_chinese_convert" ],
              "tokenizer":  "simplified_chinese_tokenizer",
              "filter": [
                "truncate10_filter",
                "lowercase",
                "traditional_chinese_stop"
              ]
            },
            "turkish_analyzer": {
    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/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

            assertEquals(Locale.JAPANESE, fessConfig.getQueryLocaleFromName("test_ja"));
            assertEquals(Locale.CHINESE, fessConfig.getQueryLocaleFromName("test_zh"));
            assertEquals(Locale.SIMPLIFIED_CHINESE, fessConfig.getQueryLocaleFromName("test_zh_cn"));
            assertEquals(Locale.TRADITIONAL_CHINESE, fessConfig.getQueryLocaleFromName("test_zh_TW"));
        }
    
        public void test_isValidUserCode() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/doc.json

              "mapping": {
                "type": "text",
                "analyzer": "simplified_chinese_analyzer"
              }
            }
          },
          {
            "lang_zh-tw": {
              "match": "*_zh-tw",
              "mapping": {
                "type": "text",
                "analyzer": "traditional_chinese_analyzer"
              }
            }
          }
        ],
        "properties": {
          "anchor": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_aws/fess/doc.json

              }
            }
          },
          {
            "lang_zh-cn": {
              "match": "*_zh-cn",
              "mapping": {
                "type": "text",
                "analyzer": "simplified_chinese_analyzer"
              }
            }
          },
          {
            "lang_zh-tw": {
              "match": "*_zh-tw",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/_cloud/fess/doc.json

              }
            }
          },
          {
            "lang_zh-cn": {
              "match": "*_zh-cn",
              "mapping": {
                "type": "text",
                "analyzer": "simplified_chinese_analyzer"
              }
            }
          },
          {
            "lang_zh-tw": {
              "match": "*_zh-tw",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

            .isEqualTo(new File("/C:\\Program Files\\Apache Software Foundation/"));
        assertThat(ClassPath.toFile(new URL("file:///C:\\\u20320 \u22909"))) // Chinese Ni Hao
            .isEqualTo(new File("/C:\\\u20320 \u22909"));
      }
    
    
      @AndroidIncompatible // Android forbids null parent ClassLoader
      // https://github.com/google/guava/issues/2152
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Jul 07 16:50:33 GMT 2023
    - 24.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/reflect/ClassPathTest.java

            .isEqualTo(new File("/C:\\Program Files\\Apache Software Foundation/"));
        assertThat(ClassPath.toFile(new URL("file:///C:\\\u20320 \u22909"))) // Chinese Ni Hao
            .isEqualTo(new File("/C:\\\u20320 \u22909"));
      }
    
    
      @AndroidIncompatible // Android forbids null parent ClassLoader
      // https://github.com/google/guava/issues/2152
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Jul 10 17:06:37 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    # name-prepped away to nothing.
    # U+200B, U+2060, and U+FEFF, are ignored
    http://GOO\u200b\u2060\ufeffgoo.com  s:http p:/ h:googoo.com
    
    # Ideographic full stop (full-width period for Chinese, etc.) should be
    # treated as a dot.
    # U+3002 is mapped to U+002E (dot)
    http://www.foo\u3002bar.com  s:http p:/ h:www.foo.bar.com
    
    # Invalid unicode characters should fail...
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 14.3K bytes
    - Viewed (0)
Back to top