Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for aurons (0.03 seconds)

  1. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

     * to ensure thread isolation of bindings.</p>
     *
     * <p>Note on class-level isolation: Compiled Script classes are cached and reused.
     * Class-level state (static fields, metaclass mutations) persists across evaluations
     * of the same script. In Fess, scripts are short expressions configured by
     * administrators (e.g., "data1 &gt; 10", "10 * boost1 + boost2") and do not use
     * static state, so this is acceptable.</p>
     *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

    /**
     * Helper for inter-instance coordination via OpenSearch.
     * Provides heartbeat registration, distributed operation locking, and event notification
     * to prevent concurrent execution of maintenance operations across multiple Fess instances.
     */
    public class CoordinatorHelper {
    
        private static final Logger logger = LogManager.getLogger(CoordinatorHelper.class);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            }
            return "Unknown";
        }
    
        /**
         * Gets the instance ID for this Fess instance.
         * Combines scheduler.target.name (if configured), hostname, and PID
         * to ensure uniqueness across multiple JVMs on the same host.
         *
         * @return The instance ID.
         */
        public String getInstanceId() {
            final String targetName = ComponentUtil.getFessConfig().getSchedulerTargetName();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
Back to Top