- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 340 for unicos (0.04 sec)
-
android/guava/src/com/google/common/base/Charsets.java
* * @author Mike Bostock * @since 1.0 */ @GwtCompatible public final class Charsets { /** * US-ASCII: seven-bit ASCII, the Basic Latin block of the Unicode character set (ISO646-US). * * @deprecated Use {@link StandardCharsets#US_ASCII} instead. */ @Deprecated @J2ktIncompatible @GwtIncompatible // Charset not supported by GWT
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralRequestBufferTest.java
assertEquals(expectedSize, buffer.size()); } @Test @DisplayName("Should calculate size for Unicode characters") void testSizeWithUnicodeCharacters() { // Unicode characters still count as single chars in Java String path = "\\\\server\\共享\\路径"; buffer = new DfsReferralRequestBuffer(path, 3);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.5K bytes - Viewed (0) -
docs/ja/docs/tutorial/extra-models.md
このようにして、モデル間の違いだけを宣言することができます: {* ../../docs_src/extra_models/tutorial002.py hl[9,15,16,19,20,23,24] *} ## `Union`または`anyOf` レスポンスを2つの型の`Union`として宣言することができます。 OpenAPIでは`anyOf`で定義されます。 そのためには、標準的なPythonの型ヒント<a href="https://docs.python.org/3/library/typing.html#typing.Union" class="external-link" target="_blank">`typing.Union`</a>を使用します: {* ../../docs_src/extra_models/tutorial003.py hl[1,14,15,18,19,20,33] *} ## モデルのリスト
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.6K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureCredentialStorageTest.java
public void testEncryptDecryptUnicode() throws Exception { // Test with Unicode characters char[] plaintext = "パスワード🔐密码".toCharArray(); byte[] encrypted = storage.encryptCredentials(plaintext); char[] decrypted = storage.decryptCredentials(encrypted); assertArrayEquals(plaintext, decrypted, "Unicode should be preserved"); // Clean up Arrays.fill(plaintext, '\0');
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/archive/tar/strconv_test.go
{"0.123456789abcdef", time.Time{}, false}, {"foo", time.Time{}, false}, {"\x00", time.Time{}, false}, {"𝟵𝟴𝟳𝟲𝟱.𝟰𝟯𝟮𝟭𝟬", time.Time{}, false}, // Unicode numbers (U+1D7EC to U+1D7F5) {"98765﹒43210", time.Time{}, false}, // Unicode period (U+FE52) } for _, v := range vectors { ts, err := parsePAXTime(v.in) ok := (err == nil) if v.ok != ok { if v.ok {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Sep 08 17:08:20 UTC 2025 - 15K bytes - Viewed (0) -
docs/en/docs/index.md
### Create it { #create-it } Create a file `main.py` with: ```Python from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q} ``` <details markdown="1">
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_constructor_withUnicodeCharacters() { // Test with Unicode characters String message = "検索操作はサポートされていません 🔍"; UnsupportedSearchException exception = new UnsupportedSearchException(message); assertEquals(message, exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
assertEquals(14, bytesEncoded); assertEquals(0, SMBUtil.readInt4(buffer, 8)); // Name length should be 0 } @Test @DisplayName("Test with Unicode pipe name") void testWithUnicodePipeName() { // Test with Unicode characters String pipeName = "テストパイプ名"; FsctlPipeWaitRequest request = new FsctlPipeWaitRequest(pipeName);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
docs/em/docs/tutorial/body.md
* 🚥 🔢 **⭐ 🆎** (💖 `int`, `float`, `str`, `bool`, ♒️) ⚫️ 🔜 🔬 **🔢** 🔢. * 🚥 🔢 📣 🆎 **Pydantic 🏷**, ⚫️ 🔜 🔬 📨 **💪**. /// note FastAPI 🔜 💭 👈 💲 `q` 🚫 ✔ ↩️ 🔢 💲 `= None`. `Union` `Union[str, None]` 🚫 ⚙️ FastAPI, ✋️ 🔜 ✔ 👆 👨🎨 🤝 👆 👍 🐕🦺 & 🔍 ❌. /// ## 🍵 Pydantic
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.2K bytes - Viewed (0) -
cmd/generic-handlers.go
i++ } // Trim whitespace of segment segmentStart, segmentEnd := start, i for segmentStart < segmentEnd && unicode.IsSpace(rune(path[segmentStart])) { segmentStart++ } for segmentEnd > segmentStart && unicode.IsSpace(rune(path[segmentEnd-1])) { segmentEnd-- } // Check for ".." or "." switch {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 20.7K bytes - Viewed (1)