Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 349 for qEncode (0.09 sec)

  1. cmd/xl-storage-format_test.go

    			for i := 0; i < size; i++ {
    				fi.VersionID = mustGetUUID()
    				fi.DataDir = mustGetUUID()
    				ids[i] = fi.VersionID
    				fi.ModTime = fi.ModTime.Add(-time.Second)
    				xl.AddVersion(fi)
    			}
    			// Encode all. This is used for benchmarking.
    			enc, err := xl.AppendTo(nil)
    			if err != nil {
    				b.Fatal(err)
    			}
    			b.Logf("Serialized size: %d bytes", len(enc))
    			rng := rand.New(rand.NewSource(0))
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

          @Throws(IOException::class)
          fun writeByteString(data: ByteString) {
            if (useCompression && Huffman.encodedLength(data) < data.size) {
              val huffmanBuffer = Buffer()
              Huffman.encode(data, huffmanBuffer)
              val huffmanBytes = huffmanBuffer.readByteString()
              writeInt(huffmanBytes.size, PREFIX_7_BITS, 0x80)
              out.write(huffmanBytes)
            } else {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. docs/em/docs/help-fastapi.md

    πŸ‘† βœ”οΈ πŸ‘€ 🧾, FastAPI 🧍 πŸ”› ⌚ 🐘, πŸ’ƒ &amp; Pydantic.
    
    πŸ‘† πŸ’ͺ πŸ’°:
    
    * <a href="https://github.com/sponsors/samuelcolvin" class="external-link" target="_blank">✑ 🍏 (Pydantic)</a>
    * <a href="https://github.com/sponsors/encode" class="external-link" target="_blank">πŸ—œ (πŸ’ƒ, Uvicorn)</a>
    
    ---
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. docs/ko/docs/features.md

    **FastAPI**λ₯Ό μ‚¬μš©ν•˜λ©΄ μ—¬λŸ¬λΆ„μ€ **Starlette**의 κΈ°λŠ₯ λŒ€λΆ€λΆ„μ„ μ–»κ²Œ 될 κ²ƒμž…λ‹ˆλ‹€(FastAPIκ°€ λ‹¨μˆœνžˆ Starletteλ₯Ό κ°•ν™”ν–ˆκΈ° λ•Œλ¬Έμž…λ‹ˆλ‹€):
    
    * μ•„μ£Ό 인상적인 μ„±λŠ₯. μ΄λŠ” <a href="https://github.com/encode/starlette#performance" class="external-link" target="_blank">**NodeJS**와 **Go**와 λ™λ“±ν•˜κ²Œ μ‚¬μš© κ°€λŠ₯ν•œ κ°€μž₯ λΉ λ₯Έ 파이썬 ν”„λ ˆμž„μ›Œν¬ 쀑 ν•˜λ‚˜μž…λ‹ˆλ‹€</a>.
    * **WebSocket** 지원.
    * ν”„λ‘œμ„ΈμŠ€ λ‚΄μ˜ λ°±κ·ΈλΌμš΄λ“œ μž‘μ—….
    * μ‹œμž‘κ³Ό μ’…λ£Œ 이벀트.
    * HTTPX 기반 ν…ŒμŠ€νŠΈ ν΄λΌμ΄μ–ΈνŠΈ.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Cache.kt

         * length of the local certificate chain. These certificates are also base64-encoded and appear
         * each on their own line. A length of -1 is used to encode a null array. The last line is
         * optional. If present, it contains the TLS version.
         */
        @Throws(IOException::class)
        constructor(rawSource: Source) {
          rawSource.use {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. cmd/admin-handlers-idp-ldap.go

    	}
    
    	// Query IAM
    
    	res, err := globalIAMSys.QueryLDAPPolicyEntities(r.Context(), q)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	// Encode result and send response.
    
    	data, err := json.Marshal(res)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    	password := cred.SecretKey
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Sep 21 11:35:40 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                    if (CharUtil.isUrlChar(c) || c == '^' || c == '{' || c == '}' || c == '|' || c == '\\') {
                        buf.append(c);
                    } else {
                        buf.append(URLEncoder.encode(String.valueOf(c), filterPathEncoding));
                    }
                }
                return buf.toString();
            } catch (final UnsupportedEncodingException e) {
                return path;
            }
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 17 12:10:08 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. cmd/erasure-multipart.go

    		ra, err := readahead.NewReaderBuffer(data, [][]byte{bufA[:fi.Erasure.BlockSize], bufB[:fi.Erasure.BlockSize]})
    		if err == nil {
    			toEncode = ra
    			defer ra.Close()
    		}
    	}
    
    	n, err := erasure.Encode(ctx, toEncode, writers, buffer, writeQuorum)
    	closeBitrotWriters(writers)
    	if err != nil {
    		return pi, toObjectErr(err, bucket, object)
    	}
    
    	// Should return IncompleteBody{} error when reader has fewer bytes
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 29 22:40:36 UTC 2024
    - 44.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

            final String authUrl = getAuthority() + getTenant()
                    + "/oauth2/authorize?response_type=code&scope=directory.read.all&response_mode=form_post&redirect_uri="
                    + URLEncoder.encode(getReplyUrl(request), Constants.UTF_8_CHARSET) + "&client_id=" + getClientId()
                    + "&resource=https%3a%2f%2fgraph.microsoft.com" + "&state=" + state + "&nonce=" + nonce;
            if (logger.isDebugEnabled()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. cmd/kms-handlers_test.go

    	if len(query) > 0 {
    		queryVal := url.Values{}
    		for k, v := range query {
    			queryVal.Add(k, v)
    		}
    		path = path + "?" + queryVal.Encode()
    	}
    
    	if accessKey == "" && secretKey == "" {
    		accessKey = globalActiveCred.AccessKey
    		secretKey = globalActiveCred.SecretKey
    	}
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Aug 18 06:43:03 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top