Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for cn (0.02 sec)

  1. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

          },
          "reading_analyzer_zh-cn" : {
            "type" : "custom",
            "tokenizer" : "standard"
          },
          "reading_term_analyzer_zh-cn" : {
            "type" : "custom",
            "tokenizer" : "standard"
          },
          "normalize_analyzer_zh-cn" : {
            "type" : "custom",
            "tokenizer" : "keyword",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Mar 24 12:55:37 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  2. src/main/resources/suggest_indices/suggest_analyzer.json

          },
          "reading_analyzer_zh-cn" : {
            "type" : "custom",
            "tokenizer" : "standard"
          },
          "reading_term_analyzer_zh-cn" : {
            "type" : "custom",
            "tokenizer" : "standard"
          },
          "normalize_analyzer_zh-cn" : {
            "type" : "custom",
            "tokenizer" : "keyword",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
  3. okhttp-logging-interceptor/src/test/java/okhttp3/logging/LoggingEventListenerTest.kt

          .assertLogMatch(Regex("""secureConnectStart"""))
          .assertLogMatch(
            Regex(
              """secureConnectEnd: Handshake\{tlsVersion=TLS_1_[23] cipherSuite=TLS_.* peerCertificates=\[CN=localhost] localCertificates=\[]\}""",
            ),
          ).assertLogMatch(Regex("""connectEnd: h2"""))
          .assertLogMatch(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            value = "ja_JP_AAA";
            assertEquals("ja", systemHelper.normalizeLang(value));
    
            value = "zh";
            assertEquals("zh", systemHelper.normalizeLang(value));
    
            value = "zh-cn";
            assertEquals("zh_CN", systemHelper.normalizeLang(value));
    
            value = "zh_CN";
            assertEquals("zh_CN", systemHelper.normalizeLang(value));
    
            value = "zh-tw";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    pt=pt\n\
    pt-br=pt-br\n\
    pt_BR=pt-br\n\
    ro=ro\n\
    ru=ru\n\
    si=si\n\
    sq=sq\n\
    sv=sv\n\
    ta=ta\n\
    te=te\n\
    th=th\n\
    tl=tl\n\
    tr=tr\n\
    uk=uk\n\
    ur=ur\n\
    vi=vi\n\
    zh-cn=zh-cn\n\
    zh_CN=zh-cn\n\
    zh-tw=zh-tw\n\
    zh_TW=zh-tw\n\
    zh=zh\n\
    
    # boost
    
    # Boost value for title field in queries.
    query.boost.title=0.5
    # Boost value for title field with language in queries.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  6. src/main/resources/esclient.xml

    		</postConstruct>
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"vi/stopwords.txt"</arg>
    		</postConstruct>
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"zh-cn/stopwords.txt"</arg>
    		</postConstruct>
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"zh-tw/stopwords.txt"</arg>
    		</postConstruct>
    		<postConstruct name="addConfigFile">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Nov 06 13:45:02 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * sv=sv<br>
         * ta=ta<br>
         * te=te<br>
         * th=th<br>
         * tl=tl<br>
         * tr=tr<br>
         * uk=uk<br>
         * ur=ur<br>
         * vi=vi<br>
         * zh-cn=zh-cn<br>
         * zh_CN=zh-cn<br>
         * zh-tw=zh-tw<br>
         * zh_TW=zh-tw<br>
         * zh=zh<br>
         *  */
        String QUERY_LANGUAGE_MAPPING = "query.language.mapping";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  8. android/guava/src/com/google/common/net/InternetDomainName.java

     * be reflected in the result of {@link #equals(Object)}.
     *
     * <p><a href="http://en.wikipedia.org/wiki/Internationalized_domain_name">Internationalized domain
     * names</a> such as {@code 网络.cn} are supported, as are the equivalent <a
     * href="http://en.wikipedia.org/wiki/Internationalized_domain_name">IDNA Punycode-encoded</a>
     * versions.
     *
     * @author Catherine Berry
     * @since 5.0
     */
    @GwtCompatible
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
  9. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

          assertEquals(Protocol.HTTP_2, response.protocol)
          val tlsVersion = response.handshake?.tlsVersion
          assertTrue(tlsVersion == TlsVersion.TLS_1_2 || tlsVersion == TlsVersion.TLS_1_3)
          assertEquals(
            "CN=localhost",
            (response.handshake!!.peerCertificates.first() as X509Certificate).subjectDN.name,
          )
        }
      }
    
      @Test
      fun testCertificatePinningFailure() {
        enableTls()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 02 14:12:28 UTC 2025
    - 29K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            if (fessConfig.isLdapRoleSearchUserEnabled()) {
                roleSet.add(normalizePermissionName(systemHelper.getSearchRoleByUser(ldapUser.getName())));
            }
    
            // LDAP: cn=%s
            // AD: (&(objectClass=user)(sAMAccountName=%s))
            final String filter = String.format(accountFilter, escapeLDAPSearchFilter(ldapUser.getName()));
            if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
Back to top