- Sort Score
- Result 10 results
- Languages All
Results 1021 - 1030 of 1,719 for nonce (0.03 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/connection/RoutePlanner.kt
/** * Returns a plan to attempt if canceling this plan was a mistake! The returned plan is not * canceled, even if this plan is canceled. */ fun retry(): Plan? } /** * What to do once a plan has executed. * * If [nextPlan] is not-null, another attempt should be made by following it. If [throwable] is * non-null, it should be reported to the user should all further attempts fail. *
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 4.2K bytes - Viewed (0) -
docs/em/docs/tutorial/path-params-numeric-validations.md
```Python hl_lines="8" {!> ../../docs_src/path_params_numeric_validations/tutorial001_py310.py!} ``` //// /// note โก ๐ข ๐ง โ โซ๏ธ โ๏ธ ๐ โก. , ๐ ๐ ๐ฃ โซ๏ธ โฎ๏ธ `...` โข โซ๏ธ โ. ๐, ๐ฅ ๐ ๐ฃ โซ๏ธ โฎ๏ธ `None` โ๏ธ โ ๐ข ๐ฒ, โซ๏ธ ๐ ๐ซ ๐ ๐ณ, โซ๏ธ ๐ ๐ง ๐. /// ## โ ๐ข ๐ ๐ช โก๏ธ ๐ฌ ๐ ๐ ๐ ๐ฃ ๐ข ๐ข `q` โ `str`. & ๐ ๐ซ ๐ช ๐ฃ ๐ณ ๐ ๐ ๐ข, ๐ ๐ซ ๐ค ๐ช โ๏ธ `Query`. โ๏ธ ๐ ๐ช โ๏ธ `Path` `item_id` โก ๐ข.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/zh/docs/tutorial/extra-models.md
ไปฅๅฆไธๆนๅผ่ฐ็จ๏ผ ```Python print(user_dict) ``` ่พๅบ็ๅฐฑๆฏ Python **ๅญๅ ธ**๏ผ ```Python { 'username': 'john', 'password': 'secret', 'email': '******@****.***', 'full_name': None, } ``` #### ่งฃๅ `dict` ๆ**ๅญๅ ธ** `user_dict` ไปฅ `**user_dict` ๅฝขๅผไผ ้็ปๅฝๆฐ๏ผๆ็ฑป๏ผ๏ผPython ไผๆง่ก**่งฃๅ **ๆไฝใๅฎไผๆ `user_dict` ็้ฎๅๅผไฝไธบๅ ณ้ฎๅญๅๆฐ็ดๆฅไผ ้ใ ๅ ๆญค๏ผๆฅ็ไธ้ข็ `user_dict` ็ปง็ปญ็ผๅๅฆไธไปฃ็ ๏ผ ```Python UserInDB(**user_dict) ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.6K bytes - Viewed (0) -
tests/test_tutorial/test_schema_extra_example/test_tutorial005_an.py
"description": "A very nice Item", "price": 35.4, "tax": 3.2, }, ) assert response.status_code == 200 def test_openapi_schema(client: TestClient) -> None: response = client.get("/openapi.json") assert response.status_code == 200, response.text assert response.json() == { "openapi": "3.1.0", "info": {"title": "FastAPI", "version": "0.1.0"},
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 26 18:03:13 UTC 2023 - 6.7K bytes - Viewed (0) -
tests/test_tutorial/test_schema_extra_example/test_tutorial005_py310.py
"price": 35.4, "tax": 3.2, }, ) assert response.status_code == 200 @needs_py310 def test_openapi_schema(client: TestClient) -> None: response = client.get("/openapi.json") assert response.status_code == 200, response.text assert response.json() == { "openapi": "3.1.0", "info": {"title": "FastAPI", "version": "0.1.0"},
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 26 18:03:13 UTC 2023 - 6.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/GenerateApiMapping.java
import java.io.PrintWriter; import java.util.Collection; import java.util.Map; @NonNullApi @CacheableTask public abstract class GenerateApiMapping extends DefaultTask { @PathSensitive(PathSensitivity.NONE) @InputFile public abstract RegularFileProperty getMetaDataFile(); @OutputFile public abstract RegularFileProperty getMappingDestFile(); /**
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 3.1K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/HashingOutputStream.java
hasher.putBytes(bytes, off, len); out.write(bytes, off, len); } /** * Returns the {@link HashCode} based on the data written to this stream. The result is * unspecified if this method is called more than once on the same instance. */ public HashCode hash() { return hasher.hash(); } // Overriding close() because FilterOutputStream's close() method pre-JDK8 has bad behavior:
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 11 22:00:03 UTC 2024 - 2.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/EnumerationIteratorTest.java
* @author shot * @author manhole */ public class EnumerationIteratorTest { /** * @see org.junit.rules.ExpectedException */ @Rule public ExpectedException exception = ExpectedException.none(); /** * */ @Test public void testEnumerationIterator() { final Vector<String> vector = new Vector<String>(); vector.add("a");
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileActivationContext.java
*/ Map<String, String> getUserProperties(); /** * Gets the base directory of the current project (if any). * * @return The base directory of the current project or {@code null} if none. */ File getProjectDirectory(); /** * Gets current calculated project properties * * @return The project properties, never {@code null}. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
.github/workflows/create_issue.js
title: `Issue created for Rollback of PR #${pr_number}: ${pr_title}`, body: `Merged PR #${pr_number} is rolled back in ${rollback_commit}. Please follow up with the reviewer and close this issue once its resolved.` }); return `Issue created: ${resp.data.number} with Title: ${resp.data.title}`;
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 18 23:04:59 UTC 2021 - 2.8K bytes - Viewed (0)