Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 215 for SPECIAL (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            value = "${var1${var2}}"; // The ${var2} part gets replaced first
            assertEquals("${var1value2}", ResourceUtil.resolve(value));
    
            // Test with special characters in replacement
            System.setProperty("special", "value$with\\backslash");
            value = "${special}";
            assertEquals("value$with\\backslash", ResourceUtil.resolve(value));
    
            // Test with numeric property names
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

                    // Simulate a normal stack trace output
                    writer.println("Special test exception");
                    writer.flush();
                }
            };
    
            monitorTarget.appendException(buf, exception);
            assertTrue(buf.toString().contains("Special test exception"));
        }
    
        // Test multiple appends to the same buffer
        public void test_multipleAppends() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Throwables.java

       * available for all platforms and configurations. If that implementation is unavailable, this
       * method falls back to {@code getStackTrace}. Callers that require the special implementation can
       * check its availability with {@link #lazyStackTraceIsLazy()}.
       *
       * <p>The expected (but not guaranteed) performance of the special implementation differs from
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

    /**
     * A utility class for building query strings with proper escaping and parameters.
     * This class provides methods to construct search queries from various parameters,
     * handle special characters, and format the final query string for search operations.
     */
    public class QueryStringBuilder {
    
        private static final String OR_ALT = " || ";
    
        private static final String OR = " OR ";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  10. src/test/java/jcifs/MsrpcDfsRootEnumTest.java

                assertNotNull(enumInstance.info);
            }
        }
    
        @Test
        @DisplayName("getEntries should properly convert DFS roots with special characters")
        void testGetEntries_specialCharacters() throws Exception {
            // Create array with special character names
            netdfs.DfsEnumArray200 specialArray = new netdfs.DfsEnumArray200();
            specialArray.count = 3;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.9K bytes
    - Viewed (0)
Back to top