- Sort Score
- Result 10 results
- Languages All
Results 511 - 520 of 589 for Encoder (0.05 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 27.2K bytes - Viewed (0) -
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)