- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 273 for SPECIAL (0.04 sec)
-
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
} public void test_execute_withSpecialCharactersInConfig() { // Configure field and index names with special characters expiresFieldName = "expires-field.with@special#chars"; documentUpdateIndex = "fess.update-index$special%chars"; // Re-register FessConfig with updated values fessConfig = new TestFessConfig() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java
assertEquals("abc", permissionHelper.encode("abc")); assertEquals("abc", permissionHelper.decode("abc")); assertEquals("special@chars", permissionHelper.encode("special@chars")); assertEquals("special@chars", permissionHelper.decode("special@chars")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
} public void test_toString_withSpecialCharacters() { // Test toString with special characters String name = "special[]param"; String[] values = { "[value]", ",comma,", "quote\"test" }; RequestParameter param = new RequestParameter(name, values); String expected = "[special[]param, [[value], ,comma,, quote\"test]]"; assertEquals(expected, param.toString()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestWithPathTest.java
@Test @DisplayName("Test with special characters in paths") void testWithSpecialCharacters() { // Test path with spaces and special characters String specialPath = "/share/folder name/file with spaces & special!@#$%.txt"; testImplementation.setPath(specialPath); assertEquals(specialPath, testImplementation.getPath()); // Test UNC path with special characters
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvTargetNameTest.java
} /** * Test with special characters in the target name. */ @Test void testSpecialCharacters() { String specialChars = "サーバー名/ドメイン.com-123!@#$"; // Japanese characters and symbols AvTargetName avTargetName = new AvTargetName(specialChars); assertEquals(specialChars, avTargetName.getTargetName(), "Special characters should be handled correctly"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java
assertEquals(Long.valueOf(Long.MAX_VALUE), event.getVersionNo()); } // Test special characters in strings public void test_specialCharactersInStrings() { // Test special characters in ID TestSearchLogEvent event1 = new TestSearchLogEvent("id-with-special-!@#$%^&*()", 1L, "type"); assertEquals("id-with-special-!@#$%^&*()", event1.getId()); // Test unicode in event type
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
generator.generate("test_id", outputFile); assertTrue("Should handle special characters in paths", true); } catch (final Exception e) { assertTrue("Exception handling for special characters", true); } finally { if (outputFile.exists()) { outputFile.delete(); } } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
docs/minio-limits.md
> **This list is non exhaustive, it depends on the operating system and filesystem under use - please consult your operating system vendor for a more comprehensive list of special characters**. MinIO recommends using Linux operating system for production workloads.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 6K 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); assertEquals(specialMessage, exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2.kt
if (flags == 0) return "" when (type) { // Special case types that have 0 or 1 flag. TYPE_SETTINGS, TYPE_PING -> return if (flags == FLAG_ACK) "ACK" else BINARY[flags] TYPE_PRIORITY, TYPE_RST_STREAM, TYPE_GOAWAY, TYPE_WINDOW_UPDATE -> return BINARY[flags] } val result = if (flags < FLAGS.size) FLAGS[flags]!! else BINARY[flags] // Special case types that have overlap flag values. return when {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 5.7K bytes - Viewed (0)