Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 114 for EMPTY (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/mylasta/mail/LogNotificationPostcard.java

         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param level The parameter value of level. (NotNull)
         */
        public void setLevel(String level) {
            registerVariable("level", level);
        }
    
        /**
         * Set the value of hostname, used in parameter comment. <br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

                }
            }
    
            // An empty file should return no items
            assertEquals("Empty file should have no items", 0, result.size());
            assertEquals("Empty file should have no records", 0, result.getAllRecordCount());
            assertEquals("Empty file should have no pages", 0, result.getAllPageCount());
        }
    
        // Test selectList method with valid data
    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)
  3. src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java

            public Map<String, Object> toSource() {
                return null;
            }
    
            @Override
            public String getEventType() {
                return null;
            }
        }
    
        // Test empty values implementation
        private static class EmptySearchLogEvent implements SearchLogEvent {
            @Override
            public String getId() {
                return "";
            }
    
            @Override
    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/mylasta/action/FessUserBeanTest.java

        }
    
        @Test
        public void test_empty() {
            // Test empty user bean creation
            FessUserBean emptyBean = FessUserBean.empty();
            assertNotNull(emptyBean);
    
            // Test getUserId returns EMPTY_USER_ID
            assertEquals(Constants.EMPTY_USER_ID, emptyBean.getUserId());
    
            // Test hasRoles always returns true for empty user
            assertTrue(emptyBean.hasRoles(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)
  5. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

            // Assert deleteByQuery was called with the configured empty index
            assertTrue(deleteByQueryCalled);
            assertEquals("", deleteIndex);
    
            // Assert result is empty when successful
            assertEquals("", result);
        }
    
        @Test
        public void test_execute_withEmptyFieldName() {
            // Configure empty field name
            expiresFieldName = "";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/query/QueryFieldConfigSetBasedLookupTest.java

        }
    
        /**
         * Test isSortField with empty array - should return false, not throw exception.
         * This test addresses the Copilot AI concern about empty arrays.
         */
        @Test
        public void test_isSortField_withEmptyArray_returnsFalse() {
            String[] emptyFields = {};
            queryFieldConfig.setSortFields(emptyFields);
    
            // Set should be empty but not null
    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)
  7. src/main/webapp/css/chat.css

        .message-actions {
            opacity: 1;
        }
    
        .empty-state {
            padding: 2rem 1rem;
        }
    
        .empty-state-icon {
            width: 64px;
            height: 64px;
        }
    
        .empty-state-icon i {
            font-size: 1.5rem;
        }
    
        .empty-state-title {
            font-size: 1.125rem;
        }
    
        .empty-state-description {
            font-size: 0.875rem;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            generator.setCommandList(commands);
            assertTrue("Multiple commands should be settable", true);
    
            // Test with empty list
            generator.setCommandList(new ArrayList<>());
            assertTrue("Empty command list should be settable", true);
    
            // Test with single command
            generator.setCommandList(Collections.singletonList("single_command"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/entity/FacetInfoTest.java

            assertEquals(Long.valueOf(5), facetInfo.minDocCount);
            assertEquals("count.desc", facetInfo.sort);
            assertEquals("unknown", facetInfo.missing);
        }
    
        // Test init with empty fields
        @Test
        public void test_init_withEmptyFields() {
            FessConfig fessConfig = new FessConfig.SimpleImpl() {
                @Override
                public String getQueryFacetFields() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java

            // Execute
            OptionalThing<Locale> result = provider.findBusinessLocale(null, mockRequestManager);
    
            // Verify - should return empty when parameter name is blank
            assertFalse(result.isPresent());
        }
    
        // Test findBusinessLocale with null parameter name
        @Test
        public void test_findBusinessLocale_withNullParameterName() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.1K bytes
    - Click Count (0)
Back to Top