- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 535 for Unicode (0.08 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt
assertThat(parse(ascii, "a=b; domain=bar.elb.amazonaws.com")).isNull() assertThat(parse(ascii, "a=b; domain=com")).isNull() val unicode = "https://長.長.長崎.jp".toHttpUrl() assertThat(parse(unicode, "a=b; domain=長.長崎.jp")).isNotNull() assertThat(parse(unicode, "a=b; domain=長崎.jp")).isNull() val punycode = "https://xn--ue5a.xn--ue5a.xn--8ltr62k.jp".toHttpUrl()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 24.4K bytes - Viewed (0) -
android/guava/src/com/google/common/escape/Escapers.java
* <li>{@code safeMax == Character.MAX_VALUE} * <li>{@code unsafeReplacement == null} * </ul> * * <p>For performance reasons escapers created by this builder are not Unicode aware and will not * validate the well-formedness of their input. */ public static Builder builder() { return new Builder(); } /** * A builder for simple, fast escapers. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/util/StringUtilTest.java
} @Test @DisplayName("Should handle Unicode characters in delimiter") void testJoinWithUnicodeDelimiter() { String result = StringUtil.join("→", "left", "right"); assertEquals("left→right", result); } @Test @DisplayName("Should handle Unicode characters in elements") void testJoinWithUnicodeElements() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
int size = 64; final boolean unicode = getFlag(NTLMSSP_NEGOTIATE_UNICODE); final String oemCp = unicode ? null : getOEMEncoding(); final String domainName = getDomain(); byte[] domainBytes = null; if (domainName != null && domainName.length() != 0) { domainBytes = unicode ? domainName.getBytes(UNI_ENCODING) : domainName.getBytes(oemCp);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
hmac.update(clientChallenge); hmac.digest(response, 0, 16); System.arraycopy(clientChallenge, 0, response, 16, 8); return response; } /** * Generate the Unicode MD4 hash for the password associated with these credentials. * * @param password the password to hash * @param challenge the server challenge bytes * @return the calculated response
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
*/ int FLAGS2_PERMIT_READ_IF_EXECUTE_PERM = 0x2000; /** * Use 32-bit status codes flag. */ int FLAGS2_STATUS32 = 0x4000; /** * Strings are Unicode flag. */ int FLAGS2_UNICODE = 0x8000; /** * No capabilities. */ int CAP_NONE = 0x0000; /** * Raw mode transfers are supported capability. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java
assertEquals(message, exception.getMessage()); } public void test_unicodeCharactersInMessage() { // Test with Unicode characters in message String message = "LDAP設定エラー: 接続失敗 🚫 ñ é ü ß"; LdapConfigurationException exception = new LdapConfigurationException(message); assertEquals(message, exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComDeleteDirectoryTest.java
assertEquals(0, result); } /** * Test writeBytesWireFormat. */ @Test void testWriteBytesWireFormat() { // Assuming path is ASCII and does not use unicode String dirName = "\testDir"; SmbComDeleteDirectory sdd = new SmbComDeleteDirectory(dirName); sdd.useUnicode = false; // format byte + path + null terminator
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
} // Test append with Unicode characters public void test_append_unicodeCharacters() { StringBuilder buf = new StringBuilder(); Supplier<Object> supplier = () -> "テスト 测试 테스트 🎉"; monitorTarget.append(buf, "unicodeKey", supplier); // Unicode characters are escaped in JSON format
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
/** * */ private static final long serialVersionUID = -2832037191318016836L; /** The ANSI password hash */ private byte[] ansiHash; /** The Unicode password hash */ private byte[] unicodeHash; /** Flag indicating if hashes are externally provided */ private boolean hashesExternal = false; /** The CIFS context for this authentication */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.3K bytes - Viewed (0)