Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 572 for Be (0.02 seconds)

  1. src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.java

            assertNotNull(target2, "Second instance should not be null");
            assertNotSame(target1, target2, "Instances should be different objects");
        }
    
        @Test
        public void test_class_has_proper_annotations() {
            // Verify the class doesn't have any inappropriate annotations
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java

            assertNotNull(serialized, "Serialized data should not be null");
            assertTrue("Serialized data should not be empty", serialized.length > 0);
    
            Object deserialized = serializer.fromBinaryToObject(serialized);
            assertNotNull(deserialized, "Deserialized object should not be null");
            assertEquals("Deserialized string should match original", original, deserialized);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

        /** Array of fields to be included in standard search response */
        protected String[] responseFields;
    
        /** Array of fields to be included in scroll search response */
        protected String[] scrollResponseFields;
    
        /** Array of fields to be included in cache search response */
        protected String[] cacheResponseFields;
    
        /** Array of fields that can be highlighted in search results */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.9K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

            assertNotNull(target2, "Second instance should not be null");
            assertNotSame(target1, target2, "Instances should be different objects");
        }
    
        @Test
        public void test_class_has_proper_annotations() {
            // Verify the class doesn't have any inappropriate annotations
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  5. dbflute_fess/dfprop/conditionBeanMap.dfprop

    map:{
        ; String = map:{
            # [Include]
            # String columns may not be needed
            # to be set these condition-keys basically.
            #; GreaterThan = map:{}
            #; LessThan = map:{}
            #; GreaterEqual = map:{}
            #; LessEqual = map:{}
    
            # [Exclude]
            # Common columns of String type may not be needed
            # to be set these condition-keys basically.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/it/admin/StatsTests.java

            assertNotNull(res, "Response should not be null");
    
            // Verify status code
            Integer status = JsonPath.from(response).get("response.status");
            assertEquals(Integer.valueOf(0), status, "Status should be 0");
    
            // Verify version field exists
            String version = JsonPath.from(response).get("response.version");
            assertNotNull(version, "Version should not be null");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

            assertNotNull(ComponentUtil.getComponent("crawlingConfigHelper"), "CrawlingConfigHelper should be registered");
            assertNotNull(ComponentUtil.getSystemHelper(), "SystemHelper should be registered");
            assertNotNull(ComponentUtil.getFessConfig(), "FessConfig should be set");
            assertTrue("Component integration test should be fast", true);
        }
    
        @Test
        public void test_basic_functionality() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.9K bytes
    - Click Count (0)
  8. architecture/standards/0002-avoid-using-java-serialization.md

    * Existing usages of Java serialization should be migrated to use it.
    * It is ok for Serializer to be used as a replacement for Java serialization as a migration step.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 14:05:45 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

            assertNotNull(annotation, "Annotation should be present on field");
            assertEquals("protocolType should be WEB", ProtocolType.WEB, annotation.protocolType());
            assertEquals("message should be default", "{org.lastaflute.validator.constraints.UriType.message}", annotation.message());
            assertEquals("groups should be empty", 0, annotation.groups().length);
            assertEquals("payload should be empty", 0, annotation.payload().length);
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.3K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

            generator.addCondition("field2", "pattern.*");
    
            // Verify conditions can be added without errors
            assertNotNull(generator);
        }
    
        @Test
        public void test_getName() {
            // Test getName and setName methods
            generator = new TestThumbnailGenerator();
    
            // Default name should be null
            assertNull(generator.getName());
    
            // Set and get name
    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)
Back to Top