Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 548 for crawled (0.05 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

    import com.google.common.cache.LoadingCache;
    
    import jakarta.annotation.PostConstruct;
    import jakarta.annotation.PreDestroy;
    
    /**
     * Helper class for managing crawler statistics and performance metrics.
     * This class provides functionality to track, record, and report statistics
     * about crawler operations including timing data, performance metrics, and
     * operational events. It uses an internal cache to maintain statistics
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  2. docs/fr/README.md

    * [LastaFlute](https://github.com/lastaflute/lastaflute "LastaFlute") : Framework Web
    * [Lasta Job](https://github.com/lastaflute/lasta-job "Lasta Job") : Planificateur de tâches
    * [Fess Crawler](https://github.com/codelibs/fess-crawler "Fess Crawler") : Crawler Web
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

                final SAXParserFactory factory = SAXParserFactory.newInstance();
                factory.setFeature(org.codelibs.fess.crawler.Constants.FEATURE_SECURE_PROCESSING, true);
                factory.setFeature(org.codelibs.fess.crawler.Constants.FEATURE_EXTERNAL_GENERAL_ENTITIES, false);
                factory.setFeature(org.codelibs.fess.crawler.Constants.FEATURE_EXTERNAL_PARAMETER_ENTITIES, false);
                final SAXParser parser = factory.newSAXParser();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  4. README.md

    * [LastaFlute](https://github.com/lastaflute/lastaflute "LastaFlute"): Web Framework
    * [Lasta Job](https://github.com/lastaflute/lasta-job "Lasta Job"): Job Scheduler
    * [Fess Crawler](https://github.com/codelibs/fess-crawler "Fess Crawler"): Web Crawler
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 06:34:32 UTC 2025
    - 7.2K bytes
    - Viewed (2)
  5. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        protected DynamicProperties systemProperties;
    
        /** Service for managing web crawler configurations */
        @Resource
        protected WebConfigService webConfigService;
    
        /** Service for managing file crawler configurations */
        @Resource
        protected FileConfigService fileConfigService;
    
        /** Helper for managing crawler processes */
        @Resource
        protected ProcessHelper processHelper;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager class for file crawler configuration management.
     * This class provides pagination functionality for file configuration listings
     * and contains form fields for file crawler configuration parameters.
     */
    public class FileConfigPager implements Serializable {
    
        /** Serial version UID for serialization */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_pl.properties

    labels.crawling_info_delete_all_cancel=Anuluj
    labels.crawling_info_thread_dump=Zrzut wątków
    labels.crawling_info_CrawlerStartTime=Czas rozpoczęcia crawlera
    labels.crawling_info_CrawlerEndTime=Czas zakończenia crawlera
    labels.crawling_info_CrawlerExecTime=Czas wykonania crawlera
    labels.crawling_info_CrawlerStatus=Status crawlera
    labels.crawling_info_WebFsCrawlExecTime=Czas wykonania indeksowania (Web/Plik)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 44.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            if (artifactType != ArtifactType.CRAWLER) {
                return false;
            }
    
            if ("fess-crawler".equals(name)//
                    || "fess-crawler-db".equals(name)//
                    || "fess-crawler-db-h2".equals(name)//
                    || "fess-crawler-db-mysql".equals(name)//
                    || "fess-crawler-es".equals(name)//
                    || "fess-crawler-opensearch".equals(name)//
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        /** The document paths to exclude from search results (pattern-based). */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedDocPaths;
    
        /** Additional configuration parameters for the file crawler. */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String configParameter;
    
        /** The maximum crawling depth (0 to 2147483647, 0 means unlimited). */
        @Min(value = 0)
        @Max(value = 2147483647)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Crawler Start Time */
        public static final String LABELS_crawling_info_CrawlerStartTime = "{labels.crawling_info_CrawlerStartTime}";
    
        /** The key of the message: Crawler End Time */
        public static final String LABELS_crawling_info_CrawlerEndTime = "{labels.crawling_info_CrawlerEndTime}";
    
        /** The key of the message: Crawler Execution Time */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 146.4K bytes
    - Viewed (0)
Back to top