Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 134 for Be (0.01 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/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)
  3. 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)
  4. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

            assertNotNull(annotation, "Annotation should be present on field");
            assertEquals("Default message should match", "{jakarta.validation.constraints.Size.message}", getDefaultMessage());
            assertEquals("Default groups should be empty", 0, getDefaultGroups().length);
            assertEquals("Default payload should be empty", 0, getDefaultPayload().length);
            assertEquals("Default minKey should be empty", StringUtil.EMPTY, getDefaultMinKey());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  5. 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)
  6. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            assertTrue(result);
            // Only fess_config indices should be rebuilt (2 config indices: scheduled_job, access_token)
            // Each creates 2 indices (backup + rebuild) = 4 creates
            assertEquals("Only fess_config indices should be rebuilt", 4, testClient.createdIndices.size());
            // Verify no user/log indices were touched
    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)
  7. src/main/resources/fess_message.properties

    # ---------------
    constraints.AssertFalse.message = {item} must be false.
    constraints.AssertTrue.message = {item} must be true.
    constraints.DecimalMax.message = {item} must be less than {value}.
    constraints.DecimalMin.message = {item} must be greater than {value}.
    constraints.Digits.message = {item} must be a number. (expected: <number>.<number>)
    constraints.Future.message = {item} must be a future value.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  8. src/main/resources/fess_message_en.properties

    # ---------------
    constraints.AssertFalse.message = {item} must be false.
    constraints.AssertTrue.message = {item} must be true.
    constraints.DecimalMax.message = {item} must be less than {value}.
    constraints.DecimalMin.message = {item} must be greater than {value}.
    constraints.Digits.message = {item} must be a number. (expected: <number>.<number>)
    constraints.Future.message = {item} must be a future value.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessJsonResourceProviderTest.java

            assertNotNull(mappingOption, "Mapping option should not be null");
            OptionalThing<JsonFieldNaming> fieldNamingOpt = mappingOption.getFieldNaming();
            assertTrue("Field naming should be present", fieldNamingOpt.isPresent());
            assertEquals("Field naming should be CAMEL_TO_LOWER_SNAKE", JsonFieldNaming.CAMEL_TO_LOWER_SNAKE, fieldNamingOpt.get());
        }
    
        @Test
        public void test_instanceCreation() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java

            assertNotNull(responseHeaders.get("Access-Control-Allow-Methods"), "Allow-Methods header should be set");
            assertNotNull(responseHeaders.get("Access-Control-Allow-Headers"), "Allow-Headers header should be set");
            assertNotNull(responseHeaders.get("Access-Control-Max-Age"), "Max-Age header should be set");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 26.3K bytes
    - Click Count (0)
Back to Top