- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 1,165 for NOTE (0.02 sec)
-
proguard/base.pro
# Note: We intentionally don't add the flags we'd need to make Flags and Enums # work. That's because the Proguard configuration required to make them work on # optimized code would preclude lots of optimization, like converting enums # into ints. # Throwables uses internal APIs for lazy stack trace resolution -dontnote sun.misc.SharedSecrets -keep class sun.misc.SharedSecrets { *** getJavaLangAccess(...); } -dontnote sun.misc.JavaLangAccess
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 09 00:29:01 UTC 2023 - 1.2K bytes - Viewed (0) -
cmd/metrics-v3-types.go
}) } } // SetHistogram - sets values for the given MetricName using the provided // histogram. // // `filterByLabels` is a map of label names to list of allowed label values to // filter by. Note that this filtering happens before any renaming of labels. // // `renameLabels` is a map of label names to rename. The keys are the original // label names and the values are the new label names. //
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Feb 28 19:33:08 UTC 2025 - 15.6K bytes - Viewed (0) -
docs/em/docs/advanced/testing-websockets.md
# ๐ฌ *๏ธโฃ ๐ ๐ช โ๏ธ ๐ `TestClient` ๐ฏ*๏ธโฃ. ๐, ๐ โ๏ธ `TestClient` `with` ๐, ๐*๏ธโฃ: {* ../../docs_src/app_testing/tutorial002.py hl[27:31] *} /// note ๐ โน, โ ๐ ๐งพ <a href="https://www.starlette.io/testclient/#testing-websocket-sessions" class="external-link" target="_blank">๐ฌ *๏ธโฃ </a>.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 352 bytes - Viewed (0) -
android/guava/src/com/google/common/net/UrlEscapers.java
* semicolon</a>, rather than the ampersand, as a parameter delimiter. Nevertheless, we recommend * using the ampersand unless you must interoperate with systems that require semicolons. * * <p><b>Note:</b> Unlike other escapers, URL escapers produce <a * href="https://url.spec.whatwg.org/#percent-encode">uppercase</a> hexadecimal sequences. * */ public static Escaper urlFormParameterEscaper() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 7.1K bytes - Viewed (0) -
docs/em/docs/tutorial/index.md
๐ฐ, ๐ ๐ช ๐ โ โซ๏ธ โฎ๏ธ ๐ ๐ฆ ๐ & โ: <div class="termy"> ```console $ pip install "fastapi[all]" ---> 100% ``` </div> ...๐ ๐ `uvicorn`, ๐ ๐ ๐ช โ๏ธ ๐ฝ ๐ ๐ ๐ ๐. /// note ๐ ๐ช โ โซ๏ธ ๐ ๐. ๐ โซ๏ธโ ๐ ๐ ๐ฒ ๐ ๐ ๐ ๐ ๏ธ ๐ ๐ธ ๐ญ: ``` pip install "fastapi[standard]" ``` โ `uvicorn` ๐ท ๐ฝ: ``` pip install "uvicorn[standard]" ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 2.2K bytes - Viewed (0) -
docs/es/docs/advanced/response-headers.md
{* ../../docs_src/response_headers/tutorial001.py hl[10:12] *} /// note | Detalles Tรฉcnicos Tambiรฉn podrรญas usar `from starlette.responses import Response` o `from starlette.responses import JSONResponse`.
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
# ํค๋ ๋งค๊ฐ๋ณ์ ๋ชจ๋ธ ๊ด๋ จ ์๋ **ํค๋ ๋งค๊ฐ๋ณ์** ๊ทธ๋ฃน์ด ์๋ ๊ฒฝ์ฐ, **Pydantic ๋ชจ๋ธ**์ ์์ฑํ์ฌ ์ ์ธํ ์ ์์ต๋๋ค. ์ด๋ฅผ ํตํด **์ฌ๋ฌ ์์น**์์ **๋ชจ๋ธ์ ์ฌ์ฌ์ฉ** ํ ์ ์๊ณ ๋ชจ๋ ๋งค๊ฐ๋ณ์์ ๋ํ ์ ํจ์ฑ ๊ฒ์ฌ ๋ฐ ๋ฉํ๋ฐ์ดํฐ๋ฅผ ํ ๋ฒ์ ์ ์ธํ ์๋ ์์ต๋๋ค. ๐ /// note | ์ฐธ๊ณ ์ด ๊ธฐ๋ฅ์ FastAPI ๋ฒ์ `0.115.0` ์ดํ๋ถํฐ ์ง์๋ฉ๋๋ค. ๐ค /// ## Pydantic ๋ชจ๋ธ์ ์ฌ์ฉํ ํค๋ ๋งค๊ฐ๋ณ์ **Pydantic ๋ชจ๋ธ**์ ํ์ํ **ํค๋ ๋งค๊ฐ๋ณ์**๋ฅผ ์ ์ธํ ๋ค์, ํด๋น ๋งค๊ฐ๋ณ์๋ฅผ `Header`๋ก ์ ์ธํฉ๋๋ค: {* ../../docs_src/header_param_models/tutorial001_an_py310.py hl[9:14,18] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 12:45:39 UTC 2024 - 2K bytes - Viewed (0) -
docs/tr/docs/tutorial/static-files.md
## `StaticFiles` Kullanฤฑmฤฑ * `StaticFiles` sฤฑnฤฑfฤฑnฤฑ projenize dahil edin. * Bir `StaticFiles()` รถrneฤini belirli bir yola baฤlayฤฑn. {* ../../docs_src/static_files/tutorial001.py hl[2,6] *} /// note | Teknik Detaylar Projenize dahil etmek iรงin `from starlette.staticfiles import StaticFiles` kullanabilirsiniz.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 1.8K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Equivalence.java
* <li>If {@code equivalent(x, y)} and {@code equivalent(y, z)} are both true, then {@code * equivalent(x, z)} is also true (<i>transitive</i> property) * </ul> * * <p>Note that all calls to {@code equivalent(x, y)} are expected to return the same result as * long as neither {@code x} nor {@code y} is modified. */ public final boolean equivalent(@Nullable T a, @Nullable T b) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 10 01:47:55 UTC 2025 - 14.5K bytes - Viewed (0) -
docs/tr/docs/advanced/testing-websockets.md
WebSockets testi yapmak iรงin `TestClient`'ฤฑ kullanabilirsiniz. Bu iลlem iรงin, `TestClient`'ฤฑ bir `with` ifadesinde kullanarak WebSocket'e baฤlanabilirsiniz: {* ../../docs_src/app_testing/tutorial002.py hl[27:31] *} /// note | Not Daha fazla detay iรงin Starlette'in <a href="https://www.starlette.io/staticfiles/" class="external-link" target="_blank">Websockets'i Test Etmek</a> dokรผmantasyonunu inceleyin.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 451 bytes - Viewed (0)