Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 594 for thar (0.02 seconds)

  1. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

            assertNotNull(FessWebResourceRoot.class, "FessWebResourceRoot class should exist");
        }
    
        @Test
        public void test_inheritance() {
            // Verify that FessWebResourceRoot extends StandardRoot
            assertTrue("FessWebResourceRoot should extend StandardRoot", StandardRoot.class.isAssignableFrom(FessWebResourceRoot.class));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java

            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        @Test
        public void test_instanceOfFessSystemException() {
            // Test that ThumbnailGenerationException is an instance of FessSystemException
            ThumbnailGenerationException exception = new ThumbnailGenerationException("Test");
    
            assertTrue(exception instanceof FessSystemException);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/entity/FessUserTest.java

        }
    
        @Test
        public void test_isEditable_custom() {
            // Test custom implementation that returns true
            FessUser user = new TestEditableFessUser("testuser", true);
            assertTrue(user.isEditable());
    
            // Test custom implementation that returns false
            user = new TestEditableFessUser("testuser", false);
            assertFalse(user.isEditable());
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java

            SamlAuthenticator authenticator = new SamlAuthenticator();
            assertNotNull(authenticator);
        }
    
        @Test
        public void test_defaultSettings_emailAddressCorrect() throws Exception {
            // Test that the email typo fix is correct: support@@example.com -> ******@****.***
            Map<String, Object> defaultSettings = createDefaultSettings();
    
            // Verify email addresses are correctly formatted (no double @)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 18.4K bytes
    - Click Count (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

     *
     * WARNING: Every val in here must not change for they same daemon. If it does, changes will go undetected,
     *          since this whole object is kept in the classloader between builds.
     *          Anything that changes must be in a val with a get() method that recomputes the value each time.
     */
    object BuildEnvironment {
    
        /**
         * A selection of environment variables injected into the environment by the `codeql-env.sh` script.
         */
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 25 08:51:12 GMT 2026
    - 4.9K bytes
    - Click Count (1)
  6. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java

            curtainFinallyHook.hook(assistantDirector);
    
            // Verify that the method completes without errors
            assertTrue(true); // Method completed successfully
        }
    
        // Test hook method when MultiThreadedHttpConnectionManager class is not available
        @Test
        public void test_hook_classNotFound() {
            // Create a custom hook that simulates class not found scenario
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/crawler/rule/CrawlerRuleMimeTypePatternTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    /**
     * Test class for MIME type patterns defined in crawler/rule.xml.
     * Verifies that regex patterns correctly match MIME types with special characters.
     *
     * This test ensures that the + character in MIME types like application/xhtml+xml
     * is properly escaped in regex patterns to match literally.
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Feb 04 14:24:39 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/query/QueryFieldConfigSetBasedLookupTest.java

        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            ComponentUtil.setFessConfig(null);
            super.tearDown(testInfo);
        }
    
        /**
         * Test that setting search fields creates both array and Set.
         */
        @Test
        public void test_setSearchFields_createsSet() {
            String[] fields = { "field1", "field2", "field3" };
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorErrorHandlingTest.java

     */
    public class RankFusionProcessorErrorHandlingTest extends UnitFessTestCase {
    
        private static final String ID_FIELD = "_id";
    
        /**
         * Test handling of searcher that throws RuntimeException.
         */
        @Test
        public void test_searcherThrowsRuntimeException() throws Exception {
            try (RankFusionProcessor processor = new RankFusionProcessor()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/entity/QueryContext.java

    /**
     * Context object that holds query-related information and state during search processing.
     * Contains the query string, query builder, sort criteria, and various metadata.
     */
    public class QueryContext {
    
        /** Prefix for queries that search only in URL fields. */
        protected static final String ALLINURL_FIELD_PREFIX = "allinurl:";
    
        /** Prefix for queries that search only in title fields. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Aug 19 14:09:36 GMT 2025
    - 9.4K bytes
    - Click Count (0)
Back to Top