- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 380 for unicos (0.09 sec)
-
src/main/java/jcifs/Configuration.java
* * @return whether to announce support for unicode */ boolean isUseUnicode(); /** * * Property {@code jcifs.smb.client.forceUnicode} (boolean, default false) * * @return whether to use unicode, even if the server does not announce it */ boolean isForceUnicode(); /** *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java
try { robotsTxt = robotsTxtHelper.parse(in, "UTF-8"); } finally { CloseableUtil.closeQuietly(in); } // Should handle unicode content assertNotNull(robotsTxt); assertFalse(robotsTxt.allows("/test/", "TestBot")); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequestTest.java
assertEquals(0x04, Smb2QueryDirectoryRequest.SMB2_INDEX_SPECIFIED); assertEquals(0x10, Smb2QueryDirectoryRequest.SMB2_REOPEN); } @Test @DisplayName("Test with Unicode filename") void testUnicodeFileName() { request = new Smb2QueryDirectoryRequest(mockConfig); String unicodeFileName = "テスト文件.txt"; request.setFileName(unicodeFileName);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacLogonInfoTest.java
void testPacUnicodeStringCheckWithValidPointer() throws Exception { // When pointer is non-zero, validate string length String testString = "TEST"; short length = (short) (testString.length() * 2); // Unicode length PacUnicodeString unicodeString = new PacUnicodeString(length, length, 100); // Should validate string length String result = unicodeString.check(testString);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java
* * <p>This method (dangerously) assume that the strings {@code "!! a"} and {@code "~~ z"} will * work for this purpose, which may cause problems for navigable maps with non-string or unicode * generators. */ private static List<String> getExtremeValues() { List<String> result = new ArrayList<>(); result.add("!! a"); result.add("!! b"); result.add("~~ y");
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 08 18:35:13 UTC 2025 - 11.9K bytes - Viewed (0) -
docs/uk/docs/tutorial/handling-errors.md
Ви можете додати власний обробник виключень за допомогою `@app.exception_handler()`: {* ../../docs_src/handling_errors/tutorial003.py hl[5:7,13:18,24] *} Тут, якщо Ви звернетеся до `/unicorns/yolo`, то згенерується помилка `UnicornException`. Але вона буде оброблена функцією-обробником `unicorn_exception_handler`. Отже, Ви отримаєте зрозумілу помилку зі HTTP-статусом `418` і JSON-відповіддю: ```JSON
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Oct 11 17:48:49 UTC 2025 - 13.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Ascii.java
* Ascii.truncate("foobar", 5, "..."); // returns "fo..." * } * * <p><b>Note:</b> This method <i>may</i> work with certain non-ASCII text but is not safe for use * with arbitrary Unicode text. It is mostly intended for use with text that is known to be safe * for use with it (such as all-ASCII text) and for simple debugging text. When using this method, * consider the following: * * <ul>
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 21.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/FormBodyTest.kt
} @Test fun manualCharset() { val body = FormBody .Builder(StandardCharsets.ISO_8859_1) .add("name", "Nicolás") .build() val expected = "name=Nicol%E1s" assertThat(body.contentLength()).isEqualTo(expected.length.toLong()) val out = Buffer() body.writeTo(out) assertThat(out.readUtf8()).isEqualTo(expected) }
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.9K bytes - Viewed (0) -
docs/ru/docs/tutorial/query-params-str-validations.md
```Python q: str | None = None ``` //// //// tab | Python 3.9+ ```Python q: Union[str, None] = None ``` //// Мы «обернём» это в `Annotated`, и получится: //// tab | Python 3.10+ ```Python q: Annotated[str | None] = None ``` //// //// tab | Python 3.9+ ```Python q: Annotated[Union[str, None]] = None ``` ////
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 26.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java
assertEquals(1, notifications.size()); assertEquals(longFileName, notifications.get(0).getFileName()); } @Test @DisplayName("Test readParametersWireFormat with Unicode filename") void testReadParametersWireFormatUnicodeFilename() throws Exception { String unicodeFileName = "файл_测试_テスト.txt";
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.7K bytes - Viewed (0)