Search Options

Results per page
Sort
Preferred Languages
Advance

Results 511 - 520 of 589 for Encoder (0.05 sec)

  1. src/builtin/builtin.go

    // complex128 is the set of all complex numbers with float64 real and
    // imaginary parts.
    type complex128 complex128
    
    // string is the set of all strings of 8-bit bytes, conventionally but not
    // necessarily representing UTF-8-encoded text. A string may be empty, but
    // not nil. Values of string type are immutable.
    type string string
    
    // int is a signed integer type that is at least 32 bits in size. It is a
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/riscv64.s

    	// first instruction is an invisible stack pointer adjustment).
    	JMP	start					// JMP	2
    
    	JMP	2(PC)					// 6f008000
    	JMP	(X5)					// 67800200
    	JMP	4(X5)					// 67804200
    
    	// CALL and JMP to symbol are encoded as JAL (using LR or ZERO
    	// respectively), with a R_RISCV_JAL relocation. The linker resolves
    	// the real address and updates the immediate, using a trampoline in
    	// the case where the address is not directly reachable.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Oct 25 12:05:29 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. docs/em/docs/help-fastapi.md

    πŸ‘† βœ”οΈ πŸ‘€ 🧾, FastAPI 🧍 πŸ”› ⌚ 🐘, πŸ’ƒ & 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. 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)
  6. api/go1.20.txt

    pkg debug/pe, const IMAGE_FILE_MACHINE_RISCV32 ideal-int #54251
    pkg debug/pe, const IMAGE_FILE_MACHINE_RISCV64 = 20580 #54251
    pkg debug/pe, const IMAGE_FILE_MACHINE_RISCV64 ideal-int #54251
    pkg encoding/xml, method (*Encoder) Close() error #53346
    pkg errors, func Join(...error) error #53435
    pkg fmt, func FormatString(State, int32) string #51668
    pkg go/ast, type File struct, FileEnd token.Pos #53202
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
  7. cmd/object-api-utils_test.go

    			}
    			err = w.Close()
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			var (
    				got  = rdrBuf.Bytes()
    				want = stdBuf.Bytes()
    			)
    			if !bytes.Equal(got, want) {
    				t.Errorf("encoded data does not match\n\t%q\n\t%q", got, want)
    			}
    
    			var decBuf bytes.Buffer
    			decRdr := s2.NewReader(&rdrBuf)
    			_, err = io.Copy(&decBuf, decRdr)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 08 15:29:58 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. src/archive/zip/zip_test.go

    		t.Errorf("Modified: got %s, want %s\n", got, want)
    	}
    }
    
    type repeatedByte struct {
    	off int64
    	b   byte
    	n   int64
    }
    
    // rleBuffer is a run-length-encoded byte buffer.
    // It's an io.Writer (like a bytes.Buffer) and also an io.ReaderAt,
    // allowing random-access reads.
    type rleBuffer struct {
    	buf []repeatedByte
    }
    
    func (r *rleBuffer) Size() int64 {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top