- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 154 for punycode (0.49 sec)
-
android/guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java
HashFunctionEnum hashFunctionEnum; private String[] strings; static final int SAMPLES = 0x100; static final int SAMPLE_MASK = 0xFF; /** * Compute arrays of valid unicode text, and store it in 3 forms: byte arrays, Strings, and * StringBuilders (in a CharSequence[] to make it a little harder for the JVM). */ @BeforeExperiment void setUp() { long seed = 99;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 5.3K 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) -
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
LdapOperationException exception = new LdapOperationException(message); assertEquals(message, exception.getMessage()); } public void test_unicodeMessage() { // Test with Unicode characters in message String message = "LDAP エラー: 接続失敗 🔒 ñ ü é"; LdapOperationException exception = new LdapOperationException(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.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_withUnicodeInMessage() { // Test with Unicode characters in message String message = "エラー発生: スクリプトエンジン例外 😱"; ScriptEngineException exception = new ScriptEngineException(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/org/codelibs/fess/util/KuromojiCSVUtilTest.java
result = KuromojiCSVUtil.parse(value); assertEquals(2, result.length); assertEquals("with\rcarriage", result[0]); assertEquals("return", result[1]); // Unicode characters value = "\"日本語\",\"한국어\",\"中文\""; result = KuromojiCSVUtil.parse(value); assertEquals(3, result.length); assertEquals("日本語", result[0]); assertEquals("한국어", result[1]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
guava/src/com/google/common/hash/Murmur3_32HashFunction.java
shift += 24; len += 3; } else { int codePoint = Character.codePointAt(input, i); if (codePoint == c) { // not a valid code point; let the JDK handle invalid Unicode return hashBytes(input.toString().getBytes(charset)); } i++; buffer |= codePointToFourUtf8Bytes(codePoint) << shift;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 11.8K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmMessage.java
/** * NTLMSSP Type 3 message identifier. */ protected static final int NTLMSSP_TYPE3 = 0x3; private static final String OEM_ENCODING = SmbConstants.DEFAULT_OEM_ENCODING; /** * Unicode encoding used for NTLM messages. */ protected static final String UNI_ENCODING = "UTF-16LE"; private int flags; /** * Returns the flags currently in use for this message. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
schema/naming.go
package schema import ( "crypto/sha1" "encoding/hex" "regexp" "strings" "unicode/utf8" "github.com/jinzhu/inflection" "golang.org/x/text/cases" "golang.org/x/text/language" ) // Namer namer interface type Namer interface { TableName(table string) string SchemaName(table string) string ColumnName(table, column string) string JoinTableName(joinTable string) string RelationshipFKName(Relationship) string
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Jun 12 03:46:59 UTC 2024 - 5.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java
discloser.setSubject("テスト件名 🚀"); discloser.setPlainText("テスト内容です。\n改行もあります。"); String result = notificationHelper.toSlackMessage(discloser); assertNotNull(result); // Unicode characters may be escaped in JSON assertTrue(result.contains("テスト") || result.contains("\\u")); } public void test_toGoogleChatMessage_withUnicodeContent() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 19.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/FileEntryTest.java
static Stream<Arguments> nameProvider() { return Stream.of(Arguments.of("", "empty string is allowed"), Arguments.of(" ", "single space is preserved"), Arguments.of("复杂名.txt", "unicode name is preserved"), Arguments.of(null, "null name is passed through")); } @ParameterizedTest(name = "getName returns as-set: [{0}] - {1}") @MethodSource("nameProvider")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10K bytes - Viewed (0)