Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 104 for NO (0.07 seconds)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'crawler.document.file.no.title.label'. <br>
         * The value is, e.g. No title. <br>
         * comment: Label to use when a file has no title.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCrawlerDocumentFileNoTitleLabel();
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  2. src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java

            assertNotNull(functionBuilders);
            assertEquals(0, functionBuilders.size()); // No data loaded
        }
    
        @Test
        public void test_load_emptyState() {
            try {
                int result = keyMatchHelper.load();
                assertEquals(0, result); // No data loaded in test environment
            } catch (Exception e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

            // Test with editable user
            testUser.setEditable(true);
            assertTrue(fessUserBean.isEditable());
        }
    
        @Test
        public void test_hasRole() {
            // Test with no roles
            testUser.setRoleNames(new String[] {});
            assertFalse(fessUserBean.hasRole("admin"));
    
            // Test with single role - matching
            testUser.setRoleNames(new String[] { "admin" });
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/timer/LogNotificationTargetTest.java

        }
    
        @Test
        public void test_expired_emptyBuffer() {
            // expired() with empty buffer is no-op (no exception)
            logNotificationTarget.expired();
        }
    
        @Test
        public void test_flush_callsExpired() {
            // flush() delegates to expired(); with empty buffer, no-op (no exception)
            logNotificationTarget.flush();
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 4.7K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/it/admin/FailureUrlTests.java

            List<Map<String, Object>> logs = JsonPath.from(response).getList("response.logs");
    
            if (logs.isEmpty()) {
                logger.warn("No failure URL logs found, skipping testReadFailureUrlLog");
                return;
            }
    
            String logId = logs.get(0).get("id").toString();
    
            // Get the specific log
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java

            String result = pingSearchEngineJob.execute();
    
            // Assert
            assertEquals("Status of test-cluster is changed to GREEN.", result);
        }
    
        // Test normal operation with YELLOW status and no state change
        @Test
        public void test_execute_yellowStatusNoChange() {
            // Setup mock components
            SearchEngineClient searchEngineClient = new SearchEngineClient() {
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

        }
    
        // Test initializeProbes
        @Test
        public void test_initializeProbes() {
            try {
                SuggestCreator.initializeProbes();
                // If no exception thrown, test passes
                assertTrue(true);
            } catch (Exception e) {
                fail("initializeProbes should not throw exception: " + e.getMessage());
            }
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

            assertNotNull(getMockRequest().getAttribute(Constants.HIGHLIGHT_QUERIES));
            assertNotNull(getMockRequest().getAttribute(Constants.FIELD_LOGS));
        }
    
        // Test constructor with isQuery true and no existing field logs
        @Test
        public void test_constructor_isQueryTrueNoExistingFieldLogs() {
            queryContext = new QueryContext("test", true);
            assertEquals("test", queryContext.getQueryString());
    
    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)
  9. src/test/java/org/codelibs/fess/ldap/LdapUserTest.java

            assertEquals("role1", roleNames[0]);
            assertEquals("role2", roleNames[1]);
        }
    
        @Test
        public void test_getRoleNames_empty() {
            // Test when no roles match the prefix
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                @Override
                public String getRoleSearchRolePrefix() {
                    return "R";
                }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.9K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            final boolean result = testClient.reindexConfigIndices(false, empty);
    
            assertTrue(result);
            assertEquals("No indices should be created with empty targets", 0, testClient.createdIndices.size());
            assertEquals("No reindex should occur with empty targets", 0, testClient.reindexPairs.size());
        }
    
        // ==========================================================================
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
Back to Top