- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 1,803 for dots (0.03 sec)
-
docs/en/docs/alternatives.md
Routes are declared in a single place, using functions declared in other places (instead of using decorators that can be placed right on top of the function that handles the endpoint). This is closer to how Django does it than to how Flask (and Starlette) does it. It separates in the code things that are relatively tightly coupled. /// check | Inspired **FastAPI** to
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 23.6K bytes - Viewed (0) -
docs/en/docs/async.md
* **Computer vision**: an image is composed of millions of pixels, each pixel has 3 values / colors, processing that normally requires computing something on those pixels, all at the same time. * **Machine Learning**: it normally requires lots of "matrix" and "vector" multiplications. Think of a huge spreadsheet with numbers and multiplying all of them together at the same time.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 24K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Joiner.java
* static final} constants. * * {@snippet : * // Bad! Do not do this! * Joiner joiner = Joiner.on(','); * joiner.skipNulls(); // does nothing! * return joiner.join("wrong", null, "wrong"); * } * * <p>See the Guava User Guide article on <a * href="https://github.com/google/guava/wiki/StringsExplained#joiner">{@code Joiner}</a>. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 19.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.11.md
existing functions, and on making security functions more understandable for users. RBAC [cluster role aggregation](https://kubernetes.io/docs/reference/access-authn-authz/rbac/#aggregated-clusterroles), introduced in 1.9, graduated to stable status with no changes in 1.11, and [client-go credential plugins](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#client-go-credential-plugins) graduated to beta status, while also adding support for obtaining TLS credentials...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 328.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RangeSet.java
boolean contains(C value); /** * Returns the unique range from this range set that {@linkplain Range#contains contains} {@code * value}, or {@code null} if this range set does not contain {@code value}. */ @Nullable Range<C> rangeContaining(C value); /** * Returns {@code true} if there exists a non-empty range enclosed by both a member range in this
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 9.8K bytes - Viewed (0) -
docs/em/docs/advanced/dataclasses.md
FastAPI ๐ ๐ ๐ **Pydantic**, & ๐ค โ๏ธ ๐ ๐ โ โ๏ธ Pydantic ๐ท ๐ฃ ๐จ & ๐จ. โ๏ธ FastAPI ๐โ๐ฆบ โ๏ธ <a href="https://docs.python.org/3/library/dataclasses.html" class="external-link" target="_blank">`dataclasses`</a> ๐ ๐: {* ../../docs_src/dataclasses/tutorial001.py hl[1,7:12,19:20] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.4K bytes - Viewed (0) -
docs/ko/docs/how-to/configure-swagger-ui.md
๊ธฐ๋ณธ ๊ตฌ์ฑ์๋ ๋ค์์ด ํฌํจ๋ฉ๋๋ค: {* ../../fastapi/openapi/docs.py ln[8:23] hl[17:23] *} `swagger_ui_parameters` ์ธ์์ ๋ค๋ฅธ ๊ฐ์ ์ค์ ํ์ฌ ์ด๋ฌํ ๊ธฐ๋ณธ๊ฐ ์ค ์ผ๋ถ๋ฅผ ์ฌ์ ์ํ ์ ์์ต๋๋ค. ์๋ฅผ ๋ค์ด, `deepLinking`์ ๋นํ์ฑํํ๋ ค๋ฉด `swagger_ui_parameters`์ ๋ค์ ์ค์ ์ ์ ๋ฌํ ์ ์์ต๋๋ค: {* ../../docs_src/configure_swagger_ui/tutorial003.py hl[3] *} ## ๊ธฐํ Swagger UI ๋งค๊ฐ๋ณ์
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 12:25:19 UTC 2024 - 3.1K bytes - Viewed (0) -
docs/es/docs/help-fastapi.md
* Para corregir un error tipogrรกfico que encontraste en la documentaciรณn. * Para compartir un artรญculo, video o podcast que creaste o encontraste sobre FastAPI <a href="https://github.com/fastapi/fastapi/edit/master/docs/en/data/external_links.yml" class="external-link" target="_blank">editando este archivo</a>. * Asegรบrate de agregar tu enlace al inicio de la secciรณn correspondiente.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 14.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/idn/Punycode.kt
val result = Buffer() while (pos < limit) { var dot = string.indexOf('.', startIndex = pos) if (dot == -1) dot = limit if (!encodeLabel(string, pos, dot, result)) { // If we couldn't encode the label, give up. return null } if (dot < limit) { result.writeByte('.'.code) pos = dot + 1 } else { break } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 8.5K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/dependencies-with-yield.md
/// /// note | Technical Details Any function that is valid to use with: * <a href="https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager" class="external-link" target="_blank">`@contextlib.contextmanager`</a> or * <a href="https://docs.python.org/3/library/contextlib.html#contextlib.asynccontextmanager" class="external-link" target="_blank">`@contextlib.asynccontextmanager`</a>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.7K bytes - Viewed (0)