Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for Trailers (1.03 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CookieJar.kt

       *
       * Note that this method may be called a second time for a single HTTP response if the response
       * includes a trailer. For this obscure HTTP feature, [cookies] contains only the trailer's
       * cookies.
       */
      fun saveFromResponse(
        url: HttpUrl,
        cookies: List<Cookie>,
      )
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

            saveToken();
            return asHtml(path_AdminWizard_AdminWizardStartJsp).useForm(StartCrawlingForm.class);
        }
    
        /**
         * Starts the crawling process for all configured crawlers.
         *
         * @param form the start crawling form
         * @return HTML response redirecting to the wizard index
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/HttpHeaders.java

       * Timing-Allow-Origin}</a> header field name.
       *
       * @since 15.0
       */
      public static final String TIMING_ALLOW_ORIGIN = "Timing-Allow-Origin";
    
      /** The HTTP {@code Trailer} header field name. */
      public static final String TRAILER = "Trailer";
    
      /** The HTTP {@code Transfer-Encoding} header field name. */
      public static final String TRANSFER_ENCODING = "Transfer-Encoding";
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 27 20:37:16 UTC 2025
    - 35.4K bytes
    - Viewed (0)
  4. docs/fr/README.md

    ![Admin UI](https://fess.codelibs.org/_images/fess_admin_dashboard.png)
    
    Vous pouvez enregistrer des cibles à explorer dans l'interface d'administration sur les pages de configuration des crawlers (Web, Fichiers, Data Store), puis démarrer manuellement le Crawler sur la [page du Planificateur](https://fess.codelibs.org/14.17/admin/scheduler-guide.html).
    
    ## Migration depuis un autre fournisseur de recherche
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                logger.info("Deleted completed document data. The execution time is {}ms.", systemHelper.getCurrentTimeAsLong() - execTime);
            }
        }
    
        /**
         * Forces all crawlers to stop immediately.
         * Sets the force stop flag and stops all active crawler instances.
         */
        private void forceStop() {
            systemHelper.setForceStop(true);
            if (crawlerList != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

        /**
         * Thread priority for crawler operations.
         */
        protected int crawlerPriority = Thread.NORM_PRIORITY;
    
        /**
         * Synchronized list of active crawlers.
         */
        protected final List<Crawler> crawlerList = Collections.synchronizedList(new ArrayList<>());
    
        /**
         * Initiates crawling for specified web and file configurations.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            options.webConfigIds = "web1";
            options.dataConfigIds = "data1";
    
            int result = crawler.doCrawl(options);
            assertEquals(Constants.EXIT_OK, result);
    
            // Verify both crawlers ran
            assertEquals(4, executionOrder.size());
            assertTrue(executionOrder.contains("web-start"));
            assertTrue(executionOrder.contains("web-end"));
            assertTrue(executionOrder.contains("data-start"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/CrawlJob.java

     * and data sources based on the configured crawling settings.
     *
     * <p>The job supports selective crawling by specifying configuration IDs for different
     * types of crawlers (web, file, data). It manages the crawler process lifecycle,
     * handles timeout scenarios, and ensures proper cleanup of resources.</p>
     *
     * <p>Key features:</p>
     * <ul>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/PluginHelper.java

     * This class provides functionality to discover, install, and manage various types of plugins
     * including data stores, themes, ingest processors, scripts, web applications, thumbnails, and crawlers.
     */
    public class PluginHelper {
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(PluginHelper.class);
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_nl.properties

    labels.schedule=Planning
    labels.enabled=Ingeschakeld
    labels.day_for_cleanup=Vorige documenten verwijderen
    labels.day=dagen
    labels.crawl_button_update=Bijwerken
    labels.none=Geen
    labels.crawling_thread_count=Aantal gelijktijdige crawlers
    labels.incremental_crawling=Controleer laatste wijzigingsdatum
    labels.search_log_enabled=Zoeklogboek
    labels.user_info_enabled=Gebruikerslogboek
    labels.user_favorite_enabled=Favorietenlogboek
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
Back to top