- Sort Score
- Result 10 results
- Languages All
Results 861 - 870 of 1,332 for notes (0.02 sec)
-
docs/en/docs/tutorial/handling-errors.md
So, you will receive a clean error, with an HTTP status code of `418` and a JSON content of: ```JSON {"message": "Oops! yolo did something. There goes a rainbow..."} ``` /// note | Technical Details You could also use `from starlette.requests import Request` and `from starlette.responses import JSONResponse`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.4K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arm.go
const aMCR = arm.ALAST + 1 // IsARMMRC reports whether the op (as defined by an arm.A* constant) is // MRC or MCR. func IsARMMRC(op obj.As) bool { switch op { case arm.AMRC, aMCR: // Note: aMCR is defined in this package. return true } return false } // IsARMBFX reports whether the op (as defined by an arm.A* constant) is one the
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Oct 23 15:18:14 UTC 2024 - 6.1K bytes - Viewed (0) -
docs/de/docs/advanced/security/oauth2-scopes.md
In diesem Fall erfordert sie den Scope `me` (sie kรถnnte mehr als einen Scope erfordern). /// note | Hinweis Sie mรผssen nicht unbedingt an verschiedenen Stellen verschiedene Scopes hinzufรผgen. Wir tun dies hier, um zu demonstrieren, wie **FastAPI** auf verschiedenen Ebenen deklarierte Scopes verarbeitet. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 15.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/EquivalenceTester.java
* * {@snippet : * EquivalenceTester.of(someStringEquivalence) * .addEquivalenceGroup("hello", "h" + "ello") * .addEquivalenceGroup("world", "wor" + "ld") * .test(); * } * * <p>Note that testing {@link Object#equals(Object)} is more simply done using the {@link * EqualsTester}. It includes an extra test against an instance of an arbitrary class without having * to explicitly add another equivalence group. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 4.1K bytes - Viewed (0) -
docs/em/docs/tutorial/security/first-steps.md
& ๐ *โก ๐ ๏ธ* โ๏ธ ๐ฅ ๐ ๐-โถ๏ธ๏ธ โฉ ๐ ๐ ๐ช ๐. /// & ๐ฅ ๐ ๐ โซ๏ธ, ๐ โ๏ธ ๐ฅ โ ๐จ ๐ `username` & `password` (& ๐ ๐ฆ ๐): <img src="/img/tutorial/security/image02.png"> /// note โซ๏ธ ๐ซ ๐ค โซ๏ธโ ๐ ๐ ๐จ, โซ๏ธ ๐ ๐ซ ๐ท. โ๏ธ ๐ฅ ๐ ๐ค ๐ค. /// ๐ โ๏ธ ๐ซ ๐ธ ๐ ๐ฉโ๐ป, โ๏ธ โซ๏ธ ๐ ๐ง ๐งฐ ๐ ๐ฅ ๐ ๐ ๐ ๏ธ. โซ๏ธ ๐ช โ๏ธ ๐ธ ๐ (๐ ๐ช ๐). โซ๏ธ ๐ช โ๏ธ ๐ฅ ๐ฅณ ๐ธ & โ๏ธ.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.7K bytes - Viewed (0) -
docs/ja/docs/tutorial/cookie-param-models.md
# ใฏใใญใผใใฉใกใผใฟใขใใซ ใใ้ข้ฃใใ**่คๆฐใฎใฏใใญใผ**ใใๆใใฐใซใผใใใใใชใใใใใใๅฎฃ่จใใใใใซใ**Pydanticใขใใซ**ใไฝๆใงใใพใใ๐ช ใใใใใใจใงใ**่คๆฐใฎๅ ดๆ**ใง**ใใฎPydanticใขใใซใๅๅฉ็จ**ใงใใใใชใใผใทใงใณใใกใฟใใผใฟใใใในใฆใฎใฏใใญใผใใฉใกใผใฟใซๅฏพใใฆไธๅบฆใซๅฎฃ่จใงใใพใใ๐ /// note | ๅ่ ใใฎๆฉ่ฝใฏใFastAPIใฎใใผใธใงใณ `0.115.0` ใใใตใใผใใใใฆใใพใใ๐ค /// /// tip | ่ฑ็ฅ่ญ ใใใจๅใใใฏใใใฏใฏ `Query` ใ `Cookie` ใ `Header` ใซใ้ฉ็จใงใใพใใ ๐ /// ## ใฏใใญใผใซPydanticใขใใซใไฝฟ็จใใ ๅฟ ่ฆใช่คๆฐใฎ**ใฏใใญใผ**ใใฉใกใผใฟใ**Pydanticใขใใซ**ใงๅฎฃ่จใใใใใซใใใใ `Cookie` ใจใใฆๅฎฃ่จใใพใใใ:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Feb 28 14:21:27 UTC 2025 - 4.5K bytes - Viewed (0) -
docs/en/docs/async.md
``` Then, declare your *path operation functions* with `async def` like: ```Python hl_lines="2" @app.get('/') async def read_results(): results = await some_library() return results ``` /// note You can only use `await` inside of functions created with `async def`. /// ---
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 24K bytes - Viewed (0) -
src/archive/tar/reader.go
if hdr.Typeflag == TypeGNUSparse { spd, err = tr.readOldGNUSparseMap(hdr, rawHdr) } else { spd, err = tr.readGNUSparsePAXHeaders(hdr) } // If sp is non-nil, then this is a sparse file. // Note that it is possible for len(sp) == 0. if err == nil && spd != nil { if isHeaderOnlyType(hdr.Typeflag) || !validateSparseEntries(spd, hdr.Size) { return ErrHeader } sph := invertSparseEntries(spd, hdr.Size)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Mar 08 01:59:14 UTC 2024 - 26.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java
* blocks, it can prevent this service from changing state. If you need to performing a blocking * operation in order to trigger shutdown, consider instead registering a listener and * implementing {@code stopping}. Note, however, that {@code stopping} does not run at exactly the * same times as {@code triggerShutdown}. */ protected void triggerShutdown() {} /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/ACE.java
for (int i = 0; i < count; i++) { sb.append(' '); } } /** * Return a string represeting this ACE. * <p> * Note: This function should probably be changed to return SDDL * fragments but currently it does not. */ @Override public String toString() { final StringBuffer sb = new StringBuffer();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.6K bytes - Viewed (0)