- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 1,753 for note (0.25 sec)
-
docs/em/docs/tutorial/extra-models.md
โซ๏ธ ๐ ๐ฌ ๐ โฎ๏ธ `anyOf`. ๐, โ๏ธ ๐ฉ ๐ ๐ ๐ <a href="https://docs.python.org/3/library/typing.html#typing.Union" class="external-link" target="_blank">`typing.Union`</a>: /// note ๐โ โ <a href="https://docs.pydantic.dev/latest/concepts/types/#unions" class="external-link" target="_blank">`Union`</a>, ๐ ๐ ๐ฏ ๐ ๐ฅ, โฉ ๐ ๐ฏ ๐. ๐ผ ๐, ๐ ๐ฏ `PlaneItem` ๐ โญ `CarItem` `Union[PlaneItem, CarItem]`. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.7K bytes - Viewed (0) -
docs/ko/docs/tutorial/query-params.md
## ์ ํ์ ๋งค๊ฐ๋ณ์ ๊ฐ์ ๋ฐฉ๋ฒ์ผ๋ก ๊ธฐ๋ณธ๊ฐ์ `None`์ผ๋ก ์ค์ ํ์ฌ ์ ํ์ ๋งค๊ฐ๋ณ์๋ฅผ ์ ์ธํ ์ ์์ต๋๋ค: {* ../../docs_src/query_params/tutorial002.py hl[9] *} ์ด ๊ฒฝ์ฐ ํจ์ ๋งค๊ฐ๋ณ์ `q`๋ ์ ํ์ ์ด๋ฉฐ ๊ธฐ๋ณธ๊ฐ์ผ๋ก `None` ๊ฐ์ด ๋ฉ๋๋ค. /// check | ํ์ธ **FastAPI**๋ `item_id`๊ฐ ๊ฒฝ๋ก ๋งค๊ฐ๋ณ์์ด๊ณ `q`๋ ๊ฒฝ๋ก ๋งค๊ฐ๋ณ์๊ฐ ์๋ ์ฟผ๋ฆฌ ๋งค๊ฐ๋ณ์๋ผ๋ ๊ฒ์ ์ ์ ๋๋ก ์ถฉ๋ถํ ๋๋ํฉ๋๋ค. /// /// note | ์ฐธ๊ณ FastAPI๋ `q`๊ฐ `= None`์ด๋ฏ๋ก ์ ํ์ ์ด๋ผ๋ ๊ฒ์ ์ธ์งํฉ๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.2K bytes - Viewed (0) -
docs/sts/web-identity.md
``` ### Access Control Configuration Variables Either `MINIO_IDENTITY_OPENID_ROLE_POLICY` (recommended) or `MINIO_IDENTITY_OPENID_CLAIM_NAME` must be specified but not both. See the section Access Control Policies to understand the differences between the two.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
docs/en/docs/async.md
### Is concurrency better than parallelism? { #is-concurrency-better-than-parallelism } Nope! That's not the moral of the story. Concurrency is different than parallelism. And it is better on **specific** scenarios that involve a lot of waiting. Because of that, it generally is a lot better than parallelism for web application development. But not for everything. So, to balance that out, imagine the following short story:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 24K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/HexdumpTest.java
assertEquals("FFFF", Hexdump.toHexString(-1L, 4)); } @Test @DisplayName("Should convert byte array to hex string") void testToHexStringByteArray() { // Note: The implementation has a bug - it ignores the srcIndex parameter! // The third parameter is the size of the output string in characters // size = number of hex characters to output
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseManager.java
DirectoryCacheEntry entry = directoryCache.get(directoryPath); if (entry == null) return; // Handle lease break by updating cache behavior // Only process if newState is not NONE (0) - a valid lease state if (newState != 0) { if ((newState & Smb2LeaseState.SMB2_LEASE_READ_CACHING) == 0) { // Lost read cache - invalidate directory cache
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java
} // Test script generation with multiple labels public void test_execute_scriptGenerationWithMultipleLabels() { // This test verifies that the job executes correctly // Note: We can't easily test the actual script generation because the mock doesn't call the processor String result = updateLabelJob.execute(); assertNotNull(result);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java
assertNotNull("First instance should not be null", target1); assertNotNull("Second instance should not be null", target2); assertNotSame("Instances should be different objects", target1, target2); } public void test_class_has_proper_annotations() { // Verify the class doesn't have any inappropriate annotations
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 8.9K bytes - Viewed (0) -
docs/pt/docs/advanced/websockets.md
{* ../../docs_src/websockets/tutorial001.py hl[2,6:38,41:43] *} ## Criando um `websocket` Em sua aplicaรงรฃo **FastAPI**, crie um `websocket`: {*../../docs_src/websockets/tutorial001.py hl[46:47]*} /// note | Detalhes Tรฉcnicos Vocรช tambรฉm poderia usar `from starlette.websockets import WebSocket`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.7K bytes - Viewed (0) -
docs/sts/assume-role.md
> Use the same username and password created in the previous steps. ``` [foobar] region = us-east-1 aws_access_key_id = foobar aws_secret_access_key = foo12345 ``` > NOTE: In the following commands `--role-arn` and `--role-session-name` are not meaningful for MinIO and can be set to any value satisfying the command line requirements. ```
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.2K bytes - Viewed (0)