- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 125 for ones (0.05 seconds)
-
fastapi/routing.py
This is much simpler (less smart) than `response_model_exclude_unset` and `response_model_exclude_defaults`. You probably want to use one of those two instead of this one, as those allow returning `None` values when it makes sense. Read more about it in theCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 193K bytes - Click Count (0) -
fastapi/applications.py
list. So, the client should be able to always expect it. In this case, there would be two different schemas, one for input and another one for output. Read more about it in the [FastAPI docs about how to separate schemas for input and output](https://fastapi.tiangolo.com/how-to/separate-openapi-schemas)Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 16:16:24 GMT 2026 - 178.6K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/ImmutableValueGraph.java
* .build(); * } * * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build * multiple graphs in series. Each new graph contains all the elements of the ones created before * it. * * @since 28.0 */ public static class Builder<N, V> { private final MutableValueGraph<N, V> mutableValueGraph;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 11 01:10:31 GMT 2026 - 7.8K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/WebSocket.kt
* Messages in either direction are enqueued for immediate transmission. * * * **Closing:** one of the peers on the web socket has initiated a graceful shutdown. The web * socket will continue to transmit already-enqueued messages but will refuse to enqueue new * ones. * * * **Closed:** the web socket has transmitted all of its messages and has received all messages * from the peer. *
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 10 21:45:14 GMT 2026 - 6.1K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/ImmutableGraph.java
* .build(); * } * * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build * multiple graphs in series. Each new graph contains all the elements of the ones created before * it. * * @since 28.0 */ public static class Builder<N> { private final MutableGraph<N> mutableGraph; Builder(GraphBuilder<N> graphBuilder) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 11 01:10:31 GMT 2026 - 7.2K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java
for (Future<?> result : results) { if (!result.isCancelled()) { result.get(10, SECONDS); } // TODO(cpovirk): Verify that the cancelled futures are exactly ones that we expect. } assertThat(logHandler.getStoredLogRecords()).isEmpty(); } public void testAvoidsStackOverflow_manySubmitted() throws Exception {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 13.6K bytes - Click Count (0) -
docs/zh/docs/advanced/additional-responses.md
所有这些都会被合并并包含到你的 OpenAPI 中,并显示在 API 文档里: <img src="/img/tutorial/additional-responses/image01.png"> ## 组合预定义响应和自定义响应 { #combine-predefined-responses-and-custom-ones } 你可能希望有一些适用于许多*路径操作*的预定义响应,但同时又想把它们与每个*路径操作*所需的自定义响应组合在一起。 在这些情况下,你可以使用 Python 的“解包”`dict` 的技巧 `**dict_to_unpack`: ```Python old_dict = { "old key": "old value",
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 8.7K bytes - Click Count (0) -
docs/ja/docs/advanced/additional-responses.md
これらはすべて結合されて OpenAPI に含まれ、API ドキュメントに表示されます: <img src="/img/tutorial/additional-responses/image01.png"> ## 事前定義レスポンスとカスタムの組み合わせ { #combine-predefined-responses-and-custom-ones } 多くの *path operations* に適用できる事前定義のレスポンスを用意しつつ、各 *path operation* ごとに必要なカスタムレスポンスと組み合わせたい場合があります。 そのような場合、Python の `**dict_to_unpack` による `dict` の「アンパック」テクニックを使えます: ```Python old_dict = {
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 10K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/ImmutableNetwork.java
* .build(); * } * * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build * multiple networks in series. Each new network contains all the elements of the ones created * before it. * * @since 28.0 */ public static class Builder<N, E> { private final MutableNetwork<N, E> mutableNetwork; Builder(NetworkBuilder<N, E> networkBuilder) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 11 01:10:31 GMT 2026 - 9.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java
return results; } /** * Test for DELETE /api/admin/crawlinginfo/all * This endpoint deletes all old crawling sessions except currently running ones * */ private void testDeleteAllCrawlingInfo() { // Read crawling info before deletion final List<Map<String, Object>> logListBefore = readCrawlingInfo(webConfigId);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Mar 30 14:01:34 GMT 2026 - 13.4K bytes - Click Count (0)