- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 596 for Characters (0.07 sec)
-
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) -
src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java
assertEquals(longMessage, exception.getMessage()); } public void test_specialCharactersInMessage() { // Test with special characters in message String specialMessage = "Error: \n\t\r Special chars: 日本語 中文 한국어 émojis 😀 🎉"; ScheduledJobException exception = new ScheduledJobException(specialMessage);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java
StorageException exception = new StorageException(message); assertEquals(message, exception.getMessage()); } public void test_specialCharactersInMessage() { // Test with special characters in message String message = "Storage error: \n\t\r\"'<>&"; StorageException exception = new StorageException(message); assertEquals(message, exception.getMessage()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacUnicodeStringTest.java
*/ @Test void testCheck_withInvalidLength_throwsException() { // Length is 10 bytes, so expected string length is 5 characters PacUnicodeString pacString = new PacUnicodeString((short) 10, (short) 20, 100); String testString = "too-long"; // Length is 8 // Expect a PACDecodingException to be thrown
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.7K bytes - Viewed (0) -
cmd/object-api-input-checks.go
return ObjectNameInvalid{Bucket: bucket, Object: object} } if runtime.GOOS == globalWindowsOSName && strings.Contains(object, "\\") { // Objects cannot be contain \ in Windows and is listed as `Characters to Avoid`. return ObjectNameInvalid{Bucket: bucket, Object: object} } return nil } // Checks for all ListObjects arguments validity.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Apr 04 12:04:40 UTC 2024 - 5.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
// Test with file path containing special characters Path tempDir = Files.createTempDirectory("test-スレッドダンプ-dir"); Path tempFile = tempDir.resolve("thread-dump-テスト.txt"); try { ThreadDumpUtil.writeThreadDump(tempFile.toString()); assertTrue("File with special characters should be created", Files.exists(tempFile));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralResponseBuffer.java
// Default constructor } private int pathConsumed; private int numReferrals; private int tflags; private Referral[] referrals; /** * Get the number of characters consumed from the path * * @return the pathConsumed */ public final int getPathConsumed() { return this.pathConsumed; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/UrlEscaperTesting.java
assertUnescaped(e, 'a'); assertUnescaped(e, 'z'); assertUnescaped(e, 'A'); assertUnescaped(e, 'Z'); assertUnescaped(e, '0'); assertUnescaped(e, '9'); // Unreserved characters used in java.net.URLEncoder assertUnescaped(e, '-'); assertUnescaped(e, '_'); assertUnescaped(e, '.'); assertUnescaped(e, '*'); assertEscaping(e, "%00", '\u0000'); // nul
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/EditForm.java
public String id; /** * The username of the user who last updated this file authentication configuration. * Used for audit trail purposes to track who made changes. * Maximum length is 255 characters. */ @Size(max = 255) public String updatedBy; /** * The timestamp when this file authentication configuration was last updated.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/EditForm.java
public String id; /** * The username of the user who last updated this key match configuration. * Used for audit trail purposes to track who made changes. * Maximum length is 255 characters. */ @Size(max = 255) public String updatedBy; /** * The timestamp when this key match configuration was last updated. * Stored as a long value representing milliseconds since epoch.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0)