- Sort Score
- Result 10 results
- Languages All
Results 631 - 640 of 1,085 for doch (0.77 sec)
-
docs/em/docs/python-types.md
/// info ๐ก ๐ ๐ <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic, โ ๐ฎ ๐ฉบ</a>. /// **FastAPI** ๐ โ๏ธ ๐ Pydantic. ๐ ๐ ๐ ๐ ๐ ๐ ๐ ๐ก [๐ฐ - ๐ฉโ๐ป ๐ฆฎ](tutorial/index.md){.internal-link target=_blank}. /// tip
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CompressionInterceptor.kt
* * If [algorithms] is empty this interceptor has no effect. To disable compression set * a specific "Accept-Encoding: identity" or similar. * * See https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Accept-Encoding */ open class CompressionInterceptor( vararg val algorithms: DecompressionAlgorithm, ) : Interceptor { internal val acceptEncoding = algorithms .map {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 06:04:22 UTC 2025 - 3.2K bytes - Viewed (0) -
docs/ko/docs/tutorial/encoder.md
Pydantic ๋ชจ๋ธ๊ณผ ๊ฐ์ ๊ฐ์ฒด๋ฅผ ๋ฐ๊ณ JSON ํธํ ๊ฐ๋ฅํ ๋ฒ์ ์ผ๋ก ๋ฐํํฉ๋๋ค: {* ../../docs_src/encoder/tutorial001.py hl[5,22] *} ์ด ์์๋ Pydantic ๋ชจ๋ธ์ `dict`๋ก, `datetime` ํ์์ `str`๋ก ๋ณํํฉ๋๋ค. ์ด๋ ๊ฒ ํธ์ถํ ๊ฒฐ๊ณผ๋ ํ์ด์ฌ ํ์ค์ธ <a href="https://docs.python.org/3/library/json.html#json.dumps" class="external-link" target="_blank">`json.dumps()`</a>๋ก ์ธ์ฝ๋ฉ ํ ์ ์์ต๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 1.9K bytes - Viewed (0) -
docs/pt/docs/tutorial/debugging.md
Entรฃo, a linha: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` nรฃo serรก executada. /// info | Informaรงรฃo Para mais informaรงรตes, consulte <a href="https://docs.python.org/3/library/__main__.html" class="external-link" target="_blank">a documentaรงรฃo oficial do Python</a>. /// ## Execute seu cรณdigo com seu depurador
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.5K bytes - Viewed (0) -
docs/de/docs/advanced/response-headers.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.6K bytes - Viewed (2) -
src/bufio/scan_test.go
func genLine(buf *bytes.Buffer, lineNum, n int, addNewline bool) { buf.Reset() doCR := lineNum%5 == 0 if doCR { n-- } for i := 0; i < n-1; i++ { // Stop early for \n. c := 'a' + byte(lineNum+i) if c == '\n' || c == '\r' { // Don't confuse us. c = 'N' } buf.WriteByte(c) } if addNewline { if doCR { buf.WriteByte('\r') } buf.WriteByte('\n') } }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Sep 22 16:22:42 UTC 2023 - 14.3K bytes - Viewed (0) -
docs/es/docs/advanced/response-headers.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 17:46:44 UTC 2024 - 2.4K bytes - Viewed (0) -
docs/ko/docs/tutorial/header-param-models.md
{* ../../docs_src/header_param_models/tutorial001_an_py310.py hl[9:14,18] *} **FastAPI**๋ ์์ฒญ์์ ๋ฐ์ **ํค๋**์์ **๊ฐ ํ๋**์ ๋ํ ๋ฐ์ดํฐ๋ฅผ **์ถ์ถ**ํ๊ณ ์ ์ํ Pydantic ๋ชจ๋ธ์ ์ค๋๋ค. ## ๋ฌธ์ ํ์ธํ๊ธฐ ๋ฌธ์ UI `/docs`์์ ํ์ํ ํค๋๋ฅผ ๋ณผ ์ ์์ต๋๋ค: <div class="screenshot"> <img src="/img/tutorial/header-param-models/image01.png"> </div> ## ์ถ๊ฐ ํค๋ ๊ธ์งํ๊ธฐ ์ผ๋ถ ํน๋ณํ ์ฌ์ฉ ์ฌ๋ก(ํํ์ง๋ ์๊ฒ ์ง๋ง)์์๋ ์์ ํ๋ ค๋ ํค๋๋ฅผ **์ ํ**ํ ์ ์์ต๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 12:45:39 UTC 2024 - 2K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDouble.java
* return xBits == yBits; * } * } * * <p>It is possible to write a more scalable updater, at the cost of giving up strict atomicity. * See for example <a * href="http://gee.cs.oswego.edu/dl/jsr166/dist/docs/java.base/java/util/concurrent/atomic/DoubleAdder.html"> * DoubleAdder</a>. * * @author Doug Lea * @author Martin Buchholz * @since 11.0 */ @GwtIncompatible @J2ktIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 9.5K bytes - Viewed (0) -
docs/ja/docs/tutorial/body-updates.md
# ใใใฃ - ๆดๆฐ ## `PUT`ใซใใ็ฝฎๆใงใฎๆดๆฐ ้ ็ฎใๆดๆฐใใใซใฏ<a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PUT" class="external-link" target="_blank">HTTPใฎ`PUT`</a>ๆไฝใไฝฟ็จใใใใจใใงใใพใใ `jsonable_encoder`ใ็จใใฆใๅ ฅๅใใผใฟใJSONๅฝขๅผใงไฟๅญใงใใใใผใฟใซๅคๆใใใใจใใงใใพใ๏ผไพ๏ผNoSQLใใผใฟใใผใน๏ผใไพใใฐใ`datetime`ใ`str`ใซๅคๆใใพใใ {* ../../docs_src/body_updates/tutorial001.py hl[30,31,32,33,34,35] *} ๆขๅญใฎใใผใฟใ็ฝฎใๆใใในใใใผใฟใๅใๅใใใใซ`PUT`ใฏไฝฟ็จใใใพใใ ### ็ฝฎๆใซใคใใฆใฎๆณจๆ ใคใพใใ`PUT`ใไฝฟ็จใใฆไปฅไธใฎใใใฃใง้ ็ฎ`bar`ใๆดๆฐใใใๅ ดๅใฏ:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5K bytes - Viewed (0)