Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 164 for compiled (0.09 seconds)

  1. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

        @Test
        public void test_constructorWithThrowableCause_ChainedErrorsAndExceptions() {
            // Test with mixed Errors and Exceptions in cause chain
            String url = "http://example.com/complex-error";
            String message = "Complex error during crawling";
    
            NullPointerException innerException = new NullPointerException("Null reference");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.java

            assertTrue(exception instanceof java.io.Serializable);
        }
    
        @Test
        public void test_getMessage_withComplexCause() {
            // Test getMessage behavior with complex cause structure
            final Exception innerCause = new NullPointerException("NPE occurred");
            final Exception outerCause = new IllegalStateException("State error", innerCause);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java

        }
    
        @Test
        public void test_escapeLDAPSearchFilter_withComplexInjectionAttempt() {
            LdapManager ldapManager = new LdapManager();
            ldapManager.init();
    
            // Complex injection attempt should be fully escaped
            String injectionAttempt = "admin)(|(password=*";
            String expected = "admin\\29\\28|\\28password=\\2a";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

            ComponentUtil.setFessConfig(mockConfig);
    
            try {
                // Add multiple conditions for same field (like in fess_thumbnail.xml)
                // When same key is added multiple times, patterns are combined with |
                generator.addCondition("mimetype", "image/jpeg");
                generator.addCondition("mimetype", "image/png");
                generator.addCondition("mimetype", "image/svg" + "\\" + "+xml");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Feb 04 14:24:39 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

        }
    
        @Test
        public void test_constructorWithThrowableCause_MixedErrorAndException() {
            // Test with mixed Error and Exception in cause chain
            String message = "SSO complex failure";
            IllegalStateException innerException = new IllegalStateException("Invalid state");
            OutOfMemoryError middleError = new OutOfMemoryError("Memory exhausted");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

            assertEquals("custom_field", queryContext.getDefaultField());
    
            queryContext.setDefaultField(null);
            assertNull(queryContext.getDefaultField());
        }
    
        // Test complex scenario with multiple operations
        @Test
        public void test_complexScenario() {
            getMockRequest().setAttribute(Constants.FIELD_LOGS, new HashMap<String, List<String>>());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.6K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java

        public void test_query_complexFessSyntax() {
            final String query = "title:\"security policy\"^2 OR (+security +policy (guide OR document))";
            final IntentDetectionResult result = IntentDetectionResult.search(query, "complex query");
    
            assertEquals(query, result.getQuery());
        }
    
        @Test
        public void test_faq_complexFessSyntax() {
            final String query = "+\"OpenSearch\" (configuration OR settings OR config)";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

            }
        }
    
        @Test
        public void test_execute_withComplexBooleanQuery() {
            // Test executing BoostQuery with a complex BooleanQuery containing multiple clauses
            BooleanQuery.Builder boolBuilder = new BooleanQuery.Builder();
            boolBuilder.add(new TermQuery(new Term("title", "fess")), BooleanClause.Occur.MUST);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

         *
         * @param <T> the type of the destination class
         * @param src the source bean object
         * @param destClass the class of the destination bean
         * @return a new instance of the destination class with copied properties
         */
        protected static <T> T copyBeanToNewBean(final Object src, final Class<T> destClass) {
            return BeanUtil.copyBeanToNewBean(src, destClass);
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 15K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java

            assertNotSame(unknownException.getMessageCode(), parseException.getMessageCode());
        }
    
        @Test
        public void test_complexMessageCode() {
            // Setup - test with a complex message code that includes parameters
            final String queryString = "field:value AND (";
            final VaMessenger<FessMessages> complexMessageCode =
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.9K bytes
    - Click Count (0)
Back to Top