Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for hot (0.01 sec)

  1. src/main/java/org/codelibs/fess/timer/HotThreadMonitorTarget.java

    import org.opensearch.action.admin.cluster.node.hotthreads.NodesHotThreadsResponse;
    import org.opensearch.common.unit.TimeValue;
    
    /**
     * Monitor target for tracking hot threads in the OpenSearch cluster.
     * This class extends MonitorTarget to provide monitoring functionality for
     * hot threads, which helps identify performance bottlenecks and resource
     * usage issues in the search engine cluster.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/CrawlJob.java

         * -2: use system default, -1: never expire, 0 or positive: expire after specified days.
         */
        protected int documentExpires = -2;
    
        /**
         * Hot thread monitoring interval in seconds.
         * -1: disabled, positive value: enable hot thread monitoring with specified interval.
         * Used for performance analysis and debugging of the crawler process.
         */
        protected int hotThreadInterval = -1;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/Crawler.java

            public String expires;
    
            /** Interval in milliseconds for hot thread monitoring and logging. */
            @Option(name = "-h", aliases = "--hotThread", metaVar = "hotThread", usage = "Interval for Hot Thread logging")
            public Integer hotThread;
    
            /**
             * Default constructor for Options.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    crawler.system.monitor.interval=60
    # Whether to ignore idle threads in hot thread monitoring.
    crawler.hotthread.ignore_idle_threads=true
    # Interval for hot thread monitoring (e.g., 500ms).
    crawler.hotthread.interval=500ms
    # Number of snapshots for hot thread monitoring.
    crawler.hotthread.snapshots=10
    # Number of threads for hot thread monitoring.
    crawler.hotthread.threads=3
    # Timeout for hot thread monitoring (e.g., 30s).
    crawler.hotthread.timeout=30s
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

        /**
         * Get the value for the key 'lasta_di.smart.deploy.mode'. <br>
         * The value is, e.g. warm <br>
         * comment: The mode of Lasta Di's smart-deploy, should be cool in production (e.g. hot, cool, warm)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getLastaDiSmartDeployMode();
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
  6. android/guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java

                new ArrayBlockingQueue<Runnable>(1000));
        executorService.prestartAllCoreThreads();
        AtomicInteger integer = new AtomicInteger();
        // Execute a bunch of tasks to ensure that our threads are allocated and hot
        for (int i = 0; i < NUM_THREADS * 10; i++) {
          @SuppressWarnings("unused") // https://errorprone.info/bugpattern/FutureReturnValueIgnored
          Future<?> possiblyIgnoredError =
              executorService.submit(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java

            assertEquals("******@****.***", specialMailEnv.getMailReturnPath());
        }
    
        // Test deploy mode variations
        public void xtest_deployModeVariations() {
            String[] deployModes = { "hot", "cool", "warm" };
    
            for (String mode : deployModes) {
                FessEnv.SimpleImpl deployEnv = new FessEnv.SimpleImpl() {
                    protected Properties prepareProperties() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/ComponentUtil.java

    import org.lastaflute.di.core.exception.AutoBindingFailureException;
    import org.lastaflute.di.core.exception.ComponentNotFoundException;
    import org.lastaflute.di.core.factory.SingletonLaContainerFactory;
    import org.lastaflute.di.core.smart.hot.HotdeployUtil;
    import org.lastaflute.job.JobManager;
    import org.lastaflute.web.servlet.request.RequestManager;
    import org.lastaflute.web.servlet.request.ResponseManager;
    
    /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

        }
    
        /*
         * These methods "should" call checkNotNull. However, I'm wary of accidentally introducing
         * anything that might slow down execution on such a hot path. Given that the methods are only
         * package-private, I feel OK with just not testing them for NPE.
         *
         * Note that testing casValue is particularly dangerous because it uses Unsafe under some
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Whether to ignore idle threads in hot thread monitoring.
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isCrawlerHotthreadIgnoreIdleThreads();
    
        /**
         * Get the value for the key 'crawler.hotthread.interval'. <br>
         * The value is, e.g. 500ms <br>
         * comment: Interval for hot thread monitoring (e.g., 500ms).
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top