Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 133 for Crawling (0.11 sec)

  1. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

            try {
                crawlingInfoHelper.store(sessionId, true);
                fail("Should throw FessSystemException");
            } catch (FessSystemException e) {
                assertEquals("No crawling session.", e.getMessage());
                assertTrue(e.getCause() instanceof RuntimeException);
            }
        }
    
        public void test_updateParams() {
            final String sessionId = "update-session";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_message.properties

    errors.design_file_name_is_invalid = The file name is invalid.
    errors.design_file_is_unsupported_type = This file type is unsupported.
    errors.failed_to_create_crawling_config_at_wizard = Failed to create a crawling config at a wizard.
    errors.design_editor_disabled = This feature is disabled.
    errors.not_found_on_file_system = Not found. Cause: {0}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_en.properties

    errors.design_file_name_is_invalid = The file name is invalid.
    errors.design_file_is_unsupported_type = This file type is unsupported.
    errors.failed_to_create_crawling_config_at_wizard = Failed to create a crawling config at a wizard.
    errors.design_editor_disabled = This feature is disabled.
    errors.not_found_on_file_system = Not found. Cause: {0}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_de.properties

    errors.design_file_name_is_invalid = Der Dateiname ist ungültig.
    errors.design_file_is_unsupported_type = Dieser Dateityp wird nicht unterstützt.
    errors.failed_to_create_crawling_config_at_wizard = Fehler beim Erstellen einer Crawling-Konfiguration in einem Assistenten.
    errors.design_editor_disabled = Diese Funktion ist deaktiviert.
    errors.not_found_on_file_system = Nicht gefunden. Ursache: {0}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 100 */
        String PAGE_CRAWLING_INFO_PARAM_MAX_FETCH_SIZE = "page.crawling.info.param.max.fetch.size";
    
        /** The key of the configuration. e.g. 1000 */
        String PAGE_CRAWLING_INFO_MAX_FETCH_SIZE = "page.crawling.info.max.fetch.size";
    
        /** The key of the configuration. e.g. 100 */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java

    import jakarta.annotation.Resource;
    
    /**
     * API action for admin job log management.
     * Provides RESTful API endpoints for viewing and managing job execution logs in the Fess search engine.
     * Job logs contain information about crawling jobs, indexing tasks, and system maintenance operations.
     *
     */
    public class ApiAdminJoblogAction extends FessApiAdminAction {
    
        private static final Logger logger = LogManager.getLogger(ApiAdminJoblogAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

         * Caches encoding information to improve performance on subsequent requests.
         *
         * @param parentUrl the parent URL to get encoding for
         * @param sessionId the session ID for the crawling session
         * @return the character encoding, or null if not found
         */
        default String getParentEncoding(final String parentUrl, final String sessionId) {
            final String key = sessionId + ":" + parentUrl;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

                assertTrue("Multiple operations should handle exceptions quickly", true);
            }
        }
    
        public void test_configuration_validation() {
            // Test configuration without actual crawling
            dataIndexHelper.setCrawlingExecutionInterval(1L);
            dataIndexHelper.setCrawlerPriority(Thread.NORM_PRIORITY);
            assertTrue("Configuration should be fast", true);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/ApiAdminPathmapAction.java

    /**
     * API action for admin path mapping management.
     * Provides RESTful API endpoints for managing path mapping settings in the Fess search engine.
     * Path mappings define URL path transformations and redirections for crawling and indexing.
     */
    public class ApiAdminPathmapAction extends FessApiAdminAction {
    
        private static final Logger logger = LogManager.getLogger(ApiAdminPathmapAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

     * including navigation controls and search/filter parameters.
     *
     * <p>Duplicate hosts allow administrators to define hostname patterns that should
     * be treated as equivalent during crawling, helping to avoid duplicate content
     * from the same logical site accessed via different hostnames.</p>
     */
    public class DuplicateHostPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top