- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 413 for SPECIAL (0.04 sec)
-
docs/config/README.md
``` KEY: etcd federate multiple clusters for IAM and Bucket DNS ARGS:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.1K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
assertEquals("", user.getName()); // Test with null name user = new TestFessUser(null, new String[] {}, new String[] {}, new String[] {}); assertNull(user.getName()); // Test with special characters in name user = new TestFessUser("******@****.***", new String[] {}, new String[] {}, new String[] {}); assertEquals("******@****.***", user.getName()); // Test with Unicode characters
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
} catch (ConfigPropertyNotFoundException e) { // Expected exception assertNotNull(e); } } // Test special characters in property values public void test_get_specialCharacters() { String testKey = "special.chars"; String specialValue = "!@#$%^&*()_+-=[]{}|;':\",./<>?"; System.setProperty(Constants.FESS_CONFIG_PREFIX + testKey, specialValue);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/SmbShareInfoTest.java
// HashCode for empty string assertEquals(0, info.hashCode()); // Empty string has hashCode of 0 } @Test @DisplayName("Test with special characters in names") void testWithSpecialCharacters() { String specialName = "Share$\\Special/Name:*?"; String specialRemark = "Remark with\nnewline\tand\rtabs"; SmbShareInfo info = new SmbShareInfo(specialName, 0, specialRemark);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/MimeMapTest.java
assertEquals(expectedMimeType, mimeMap.getMimeType(extension)); } @Test @DisplayName("Should handle extensions with special characters") void testSpecialCharacterExtensions() throws IOException { // Test extensions that are definitely not in the map assertEquals("application/octet-stream", mimeMap.getMimeType("file.ext"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.1K bytes - Viewed (0) -
guava/src/com/google/common/base/Objects.java
* Generates a hash code for multiple values. The hash code is generated by calling {@link * Arrays#hashCode(Object[])}. Note that array arguments to this method, with the exception of a * single Object array, do not get any special handling; their hash codes are based on identity * and not contents. * * <p>This is useful for implementing {@link Object#hashCode()}. For example, in an object that
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 28 22:51:26 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComReadAndXResponse.java
bufferIndex += 12; // 10 reserved return bufferIndex - start; } @Override protected int readBytesWireFormat(final byte[] buffer, final int bufferIndex) { // handled special in SmbTransport.doRecv() return 0; } @Override public String toString() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
assertEquals(3, result.length); assertEquals("日本語", result[0]); assertEquals("한국어", result[1]); assertEquals("\"中文\"", result[2]); // Emoji and special symbols - quotes preserved value = "\"🚀rocket\",\"@symbol\",\"#hashtag\""; result = KuromojiCSVUtil.parse(value); assertEquals(3, result.length); assertEquals("🚀rocket", result[0]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
assertNull(exception.getCause()); } public void test_constructor_withSpecialCharacters() { // Test constructor with special characters String type = "Token-Type_123!@#"; String message = "Error: Token contains special characters <>&\"'"; InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message); assertEquals(type, exception.getType());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java
// Setup final String message = "Error: Failed to authenticate user <******@****.***> with special chars: #$%&*()!@"; final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsSsoLoginError(UserMessages.GLOBAL_PROPERTY_KEY); final Exception cause = new RuntimeException("Special cause: \n\t\r"); // Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.7K bytes - Viewed (0)