- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 700 for En (0.01 sec)
-
android/guava-tests/test/com/google/common/collect/LockHeldAssertingSet.java
* `Synchronized` doesn't guarantee that it will hold the mutex for those calls because callers * are responsible for taking the mutex themselves: * https://docs.oracle.com/en/java/javase/22/docs/api/java.base/java/util/Collections.html#synchronizedCollection(java.util.Collection) * * Similarly, we avoid having those methods *implemented* in terms of *other* TestSet methods
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.3K bytes - Viewed (0) -
docs/em/docs/tutorial/response-status-code.md
* ๐ โ โช๏ธโก๏ธ ๐ฉโ๐ป, ๐ ๐ช โ๏ธ `400`. * `500` & ๐ ๐ฝ โ. ๐ ๐ ๐ โ๏ธ ๐ซ ๐. ๐โ ๐ณ ๐ถ โ ๐ ๐ ๐ธ ๐, โ๏ธ ๐ฝ, โซ๏ธ ๐ ๐ ๐จ 1๏ธโฃ ๐ซ ๐ ๐. /// tip ๐ญ ๐ ๐ ๐ ๐ ๐ & โ ๐ โซ๏ธโ, โ <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Status" class="external-link" target="_blank"><abbr title="Mozilla Developer Network">๐</abbr> ๐งพ ๐ ๐บ๐ธ๐ ๐ ๐</a>. /// ## โจ ๐ญ ๐ โก๏ธ ๐ โฎ๏ธ ๐ผ ๐:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.3K bytes - Viewed (0) -
docs/en/docs/async.md
Starlette (and **FastAPI**) are based on <a href="https://anyio.readthedocs.io/en/stable/" class="external-link" target="_blank">AnyIO</a>, which makes it compatible with both Python's standard library <a href="https://docs.python.org/3/library/asyncio-task.html" class="external-link" target="_blank">asyncio</a> and <a href="https://trio.readthedocs.io/en/stable/" class="external-link" target="_blank">Trio</a>.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 24K bytes - Viewed (0) -
docs/en/docs/tutorial/middleware.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4.1K bytes - Viewed (0) -
docs/ko/docs/advanced/response-directly.md
/// ## ์ฌ์ฉ์ ์ ์ `Response` ๋ฐํํ๊ธฐ ์ ์์ ๋ ํ์ํ ๋ชจ๋ ๋ถ๋ถ์ ๋ณด์ฌ์ฃผ์ง๋ง, ์์ง ์ ์ฉํ์ง๋ ์์ต๋๋ค. ์ฌ์ค ๋ฐ์ดํฐ๋ฅผ ์ง์ ๋ฐํํ๋ฉด **FastAPI**๊ฐ ์ด๋ฅผ `JSONResponse`์ ๋ฃ๊ณ `dict`๋ก ๋ณํํ๋ ๋ฑ ๋ชจ๋ ์์ ์ ์๋์ผ๋ก ์ฒ๋ฆฌํฉ๋๋ค. ์ด์ , ์ฌ์ฉ์ ์ ์ ์๋ต์ ๋ฐํํ๋ ๋ฐฉ๋ฒ์ ์์๋ณด๊ฒ ์ต๋๋ค. ์๋ฅผ ๋ค์ด <a href="https://en.wikipedia.org/wiki/XML" class="external-link" target="_blank">XML</a> ์๋ต์ ๋ฐํํ๊ณ ์ถ๋ค๊ณ ๊ฐ์ ํด๋ณด๊ฒ ์ต๋๋ค. XML ๋ด์ฉ์ ๋ฌธ์์ด์ ๋ฃ๊ณ , ์ด๋ฅผ `Response`์ ๋ฃ์ด ๋ฐํํ ์ ์์ต๋๋ค: {* ../../docs_src/response_directly/tutorial002.py hl[1,18] *} ## ์ฐธ๊ณ ์ฌํญ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.4K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java
int[] keys = new int[size]; for (int i = 0; i < size; i++) { keys[i] = rng.nextInt(); } return createTreap(Ints.asList(keys)); } // See http://en.wikipedia.org/wiki/Treap for details on the algorithm. private Optional<BinaryNode> createTreap(List<Integer> keys) { if (keys.isEmpty()) { return Optional.absent(); } int minIndex = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 4.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingMapEntry.java
/** * A map entry which forwards all its method calls to another map entry. Subclasses should override * one or more methods to modify the behavior of the backing map entry as desired per the <a * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>. * * <p><b>Warning:</b> The methods of {@code ForwardingMapEntry} forward <i>indiscriminately</i> to
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 4.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/LockHeldAssertingSet.java
* `Synchronized` doesn't guarantee that it will hold the mutex for those calls because callers * are responsible for taking the mutex themselves: * https://docs.oracle.com/en/java/javase/22/docs/api/java.base/java/util/Collections.html#synchronizedCollection(java.util.Collection) * * Similarly, we avoid having those methods *implemented* in terms of *other* TestSet methods
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.4K bytes - Viewed (0) -
docs/pt/docs/tutorial/path-operation-configuration.md
Vocรช pode escrever <a href="https://en.wikipedia.org/wiki/Markdown" class="external-link" target="_blank">Markdown</a> na docstring, ele serรก interpretado e exibido corretamente (levando em conta a indentaรงรฃo da docstring).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingBlockingDeque.java
/** * A {@link BlockingDeque} which forwards all its method calls to another {@code BlockingDeque}. * Subclasses should override one or more methods to modify the behavior of the backing deque as * desired per the <a href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>. * * <p><b>Warning:</b> The methods of {@code ForwardingBlockingDeque} forward <b>indiscriminately</b>Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.3K bytes - Viewed (0)