Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for be (0.02 sec)

  1. 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 */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/FileUtil.java

         *     throw new SecurityException("Path traversal attempt detected");
         * }
         * </pre>
         *
         * @param pathToCheck the path to validate (must not be {@literal null})
         * @param baseDirectory the base directory that the path must be within (must not be {@literal null})
         * @return true if the path is safe (within the base directory), false otherwise
         */
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/AbstractIntervalController.java

        /**
         * Indicates whether exceptions during the delay process should be ignored.
         * If set to true, exceptions will be caught and ignored. If set to false,
         * exceptions will be re-thrown as {@link CrawlerSystemException}.
         * Default value is true.
         */
        protected boolean ignoreException = true;
    
        /**
         * Constructs a new AbstractIntervalController.
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:58:39 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractorTest.java

                assertEquals("The inputstream is null.", e.getMessage());
                // Note: validateCalled will be false because exception is thrown
                // before the flag can be set, which is the expected behavior
                assertFalse("validateCalled should be false as exception thrown before flag set", extractor.isValidateCalled());
            }
        }
    
        /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CrawlingParameterUtil.java

     * This class provides methods to set and get various parameters related to the crawling process.
     *
     * <p>This class is final and cannot be instantiated.</p>
     *
     * <p>The following parameters are managed:</p>
     * <ul>
     *   <li>{@link UrlQueue} - The queue of URLs to be crawled.</li>
     *   <li>{@link CrawlerContext} - The context of the current crawling process.</li>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

            // Test crawl-delay with invalid values
            // Invalid number should be ignored, valid ones should work
            assertEquals(0, robotsTxt.getCrawlDelay("GoodBot")); // invalid values ignored
    
            // Test MultiColonBot - colons in paths should be preserved
            assertFalse(robotsTxt.allows("http://example.com:8080/path", "MultiColonBot"));
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/SuggesterResourceLoadingTest.java

            }
    
            assertNotNull("Mappings should be loaded", mappings);
            assertNotNull("Settings should be loaded", settings);
            assertTrue("Mappings should not be empty", mappings.length() > 0);
            assertTrue("Settings should not be empty", settings.length() > 0);
        }
    
        /**
         * Test resource loading with UTF-8 encoding.
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CrawlingParameterUtilTest.java

        public void test_urlQueue_setAndGet() {
            // Initially should be null
            assertNull(CrawlingParameterUtil.getUrlQueue());
    
            // Create and set a mock UrlQueue
            UrlQueue<?> urlQueue = createMockUrlQueue("test-session", "http://example.com");
            CrawlingParameterUtil.setUrlQueue(urlQueue);
    
            // Verify it can be retrieved
            UrlQueue<?> retrieved = CrawlingParameterUtil.getUrlQueue();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/io/SerializeUtil.java

                }
            }
    
            // Reject everything else
            return ObjectInputFilter.Status.REJECTED;
        };
    
        /**
         * Tests if the object can be serialized.
         *
         * @param obj the object to be serialized (must not be {@literal null})
         * @return the deserialized object
         */
        public static Object serialize(final Object obj) {
            assertArgumentNotNull("obj", obj);
    
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/io/FileUtilTest.java

            final File safeFile = new File(baseDir, "subdir/file.txt");
            final File unsafeFile = new File(baseDir, "../../../etc/passwd");
    
            assertTrue("Safe file should be allowed", FileUtil.isPathSafe(safeFile, baseDir));
            assertFalse("Unsafe file should be blocked", FileUtil.isPathSafe(unsafeFile, baseDir));
        }
    
        /**
         * Test isPathSafe with path inside base directory
         *
         * @throws Exception
         */
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top