Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 230 for probes (0.05 sec)

  1. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

            }
        }
    
        /**
         * Initializes the necessary probes for monitoring system resources.
         */
        static void initializeProbes() {
            // Force probes to be loaded
            ProcessProbe.getInstance();
            OsProbe.getInstance();
            JvmInfo.jvmInfo();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/Crawler.java

            }
    
        }
    
        /**
         * Initializes OpenSearch monitoring probes.
         * Forces the loading of process, OS, and JVM monitoring probes
         * to ensure they are available for system monitoring during crawling.
         */
        static void initializeProbes() {
            // Force probes to be loaded
            ProcessProbe.getInstance();
            OsProbe.getInstance();
            JvmInfo.jvmInfo();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.2.md

      * Liveness and readiness probes now support more configuration parameters:
    periodSeconds, successThreshold, failureThreshold
      * The new ReplicaSet API (Beta) in the Extensions API group is similar to
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_nl.properties

    errors.login.failure = Inloggen mislukt.
    errors.app.illegal.transition = Illegale overgang. Probeer het opnieuw.
    errors.app.db.already.deleted = Mogelijk is het al verwijderd door een ander proces. Probeer de bewerking opnieuw.
    errors.app.db.already.updated = Mogelijk is het al bijgewerkt door een ander proces. Probeer de bewerking opnieuw.
    errors.app.db.already.exists = Gegevens bestaan al. Probeer de bewerking opnieuw.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/CrawlJob.java

        }
    
        /**
         * Executes the crawler process in a separate JVM.
         * This method constructs the command line arguments, sets up the classpath,
         * and launches the crawler as an external process. It handles process lifecycle,
         * monitors output, and ensures proper cleanup.
         *
         * @throws JobProcessingException if the crawler process fails or times out
         */
        protected void executeCrawler() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

            } catch (final IOException e) {
                throw new JobProcessingException("Crawler Process terminated.", e);
            }
        }
    
        /**
         * Destroys the process associated with the given session ID.
         *
         * @param sessionId unique identifier for the process session
         * @return exit code of the destroyed process, or -1 if the process was not found
         */
        public int destroyProcess(final String sessionId) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_2x.md

        connection takes more than 10 seconds to complete, you’ll need to adjust
        the timeouts manually.
    
     *  **OkHttp now rejects request headers that contain invalid characters.** This
        includes potential security problems (newline characters) as well as simple
        non-ASCII characters (including international characters and emoji).
    
     *  **Call canceling is more reliable.**  We had a bug where a socket being
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

     * corresponding entries will be dropped from the cache. If an error occurs while writing a cache
     * value, the edit will fail silently. Callers should handle other problems by catching
     * `IOException` and responding appropriately.
     *
     * @constructor Create a cache which will reside in [directory]. This cache is lazily initialized on
     *     first access and will be created if it does not exist.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 34.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/ByteStreams.java

        int available = in.available();
        return available == 0 ? 0 : in.skip(min(available, n));
      }
    
      /**
       * Process the bytes of the given input stream using the given processor.
       *
       * @param input the input stream to process
       * @param processor the object to which to pass the bytes of the stream
       * @return the result of the byte processor
       * @throws IOException if an I/O error occurs
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 31.1K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_pl.properties

    errors.login.failure = Logowanie nie powiodło się.
    errors.app.illegal.transition = Nieprawidłowe przejście. Spróbuj ponownie.
    errors.app.db.already.deleted = Mogło zostać już usunięte przez inny proces. Spróbuj ponownie.
    errors.app.db.already.updated = Mogło zostać już zaktualizowane przez inny proces. Spróbuj ponownie.
    errors.app.db.already.exists = Dane już istnieją. Spróbuj ponownie.
    errors.app.double.submit.request = To żądanie mogło zostać już przetworzone. Spróbuj ponownie.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
Back to top