Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java

            Boolean result = invokeIsValidUploadPath(maliciousFile, baseDir);
            assertFalse("Path traversal with ../ should be blocked", result);
        }
    
        @Test
        public void test_isValidUploadPath_pathTraversal_encoded() throws Exception {
            // Test path traversal that would be decoded
            File baseDir = new File(tempDir.toFile(), "images");
            baseDir.mkdirs();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java

            // onclick attribute should be removed
            assertFalse(result.contains("onclick"));
        }
    
        @Test
        public void test_render_xss_javascriptProtocol() {
            String malicious = "[Click me](javascript:alert('XSS'))";
            String result = markdownRenderer.render(malicious);
            // javascript: protocol should be blocked
            assertFalse(result.contains("javascript:"));
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

                // Check return type
                assertEquals("Return type should be String", String.class, method.getReturnType());
    
                // Check that it's static
                assertTrue("Method should be static", java.lang.reflect.Modifier.isStatic(method.getModifiers()));
    
                // Check that it's public
                assertTrue("Method should be public", java.lang.reflect.Modifier.isPublic(method.getModifiers()));
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt

     * Validates and optionally fixes the computed target runtimes for projects
     * in the Gradle build.
     *
     * Each project may require a set of "target runtimes" that it must be able to run on.
     * Each target runtime reflects a runtime environment where code is executed. For one
     * project to be able to run in a given runtime, all of its dependencies must also
     * support running in that runtime.
     *
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 13.8K bytes
    - Click Count (0)
Back to Top