Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for cn (0.12 sec)

  1. cmd/object-api-utils.go

    	}
    	comp := s2.NewWriter(pw, opts...)
    	indexCh := make(chan []byte, 1)
    	go func() {
    		defer xioutil.SafeClose(indexCh)
    		cn, err := io.Copy(comp, r)
    		if err != nil {
    			comp.Close()
    			pw.CloseWithError(err)
    			return
    		}
    		if on > 0 && on != cn {
    			// if client didn't sent all data
    			// from the client verify here.
    			comp.Close()
    			pw.CloseWithError(IncompleteBody{})
    			return
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Mar 11 11:55:34 GMT 2024
    - 35.6K bytes
    - Viewed (1)
  2. src/main/resources/fess_indices/fess.json

              "rules_path": "${fess.dictionary.path}ru/stemmer_override.txt"
            },
            "simplified_chinese_stop": {
              "type":       "stop",
              "stopwords_path": "${fess.dictionary.path}zh-cn/stopwords.txt"
            },
            "sorani_stop": {
              "type":       "stop",
              "stopwords_path": "${fess.dictionary.path}ckb-iq/stopwords.txt"
            },
            "sorani_keywords": {
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  3. 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, ldapUser.getName());
            if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  4. 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(
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Jan 14 10:20:09 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  5. cmd/sts-handlers.go

    	//
    	// Group mapping is not possible with standard X.509 certificates.
    	if certificate.Subject.CommonName == "" {
    		writeSTSErrorResponse(ctx, w, ErrSTSMissingParameter, errors.New("certificate subject CN cannot be empty"))
    		return
    	}
    
    	expiry, err := globalIAMSys.STSTLSConfig.GetExpiryDuration(r.Form.Get(stsDurationSeconds))
    	if err != nil {
    		writeSTSErrorResponse(ctx, w, ErrSTSMissingParameter, err)
    		return
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 21:31:13 GMT 2024
    - 34.7K bytes
    - Viewed (2)
  6. docs/site-replication/run-multi-site-ldap.sh

    export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw=
    export MINIO_IDENTITY_LDAP_SERVER_ADDR="localhost:389"
    export MINIO_IDENTITY_LDAP_SERVER_INSECURE="on"
    export MINIO_IDENTITY_LDAP_LOOKUP_BIND_DN="cn=admin,dc=min,dc=io"
    export MINIO_IDENTITY_LDAP_LOOKUP_BIND_PASSWORD="admin"
    export MINIO_IDENTITY_LDAP_USER_DN_SEARCH_BASE_DN="dc=min,dc=io"
    export MINIO_IDENTITY_LDAP_USER_DN_SEARCH_FILTER="(uid=%s)"
    Shell Script
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Feb 14 04:51:23 GMT 2024
    - 10K bytes
    - Viewed (1)
  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";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  8. 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()
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 27K bytes
    - Viewed (1)
  9. 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">
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Mar 23 05:42:27 GMT 2023
    - 15.9K bytes
    - Viewed (0)
  10. 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
     */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
Back to top