Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isInteracting (0.95 sec)

  1. src/main/webapp/js/bootstrap.min.js.map

    this.hide()\n    }, this._config.delay)\n  }\n\n  _onInteraction(event, isInteracting) {\n    switch (event.type) {\n      case 'mouseover':\n      case 'mouseout': {\n        this._hasMouseInteraction = isInteracting\n        break\n      }\n\n      case 'focusin':\n      case 'focusout': {\n        this._hasKeyboardInteraction = isInteracting\n        break\n      }\n\n      default: {\n        break\n      }\n    }\n\n    if (isInteracting) {\n      this._clearTimeout()\n      return\n    }\n\n    const...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 211.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Ticker.java

    /**
     * A time source; returns a time value representing the number of nanoseconds elapsed since some
     * fixed but arbitrary point in time. Note that most users should use {@link Stopwatch} instead of
     * interacting with this class directly.
     *
     * <p><b>Warning:</b> this interface can only be used to measure elapsed time, not wall time.
     *
     * @author Kevin Bourrillion
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

         */
        public SuggestCreator() {
            // do nothing
        }
    
        private static final Logger logger = LogManager.getLogger(SuggestCreator.class);
    
        /** The search engine client for interacting with OpenSearch. */
        @Resource
        public SearchEngineClient searchEngineClient;
    
        /**
         * A nested class for parsing command-line options.
         */
        protected static class Options {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java

        // Attribute
        // =========
        /** The search helper for performing search operations. */
        @Resource
        protected SearchHelper searchHelper;
    
        /** The search engine client for interacting with OpenSearch. */
        @Resource
        protected SearchEngineClient searchEngineClient;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

        @Resource
        protected LabelTypeBhv labelTypeBhv;
    
        /** Configuration settings for Fess application */
        @Resource
        protected FessConfig fessConfig;
    
        /** Client for interacting with the search engine */
        @Resource
        protected SearchEngineClient searchEngineClient;
    
        /**
         * Retrieves a paginated list of elevate words based on the provided pager criteria.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

        // ===================================================================================
        // Attribute
        // =========
    
        /** Client for interacting with the search engine. */
        @Resource
        protected SearchEngineClient searchEngineClient;
    
        /** Helper for building and parsing search queries. */
        @Resource
        protected QueryHelper queryHelper;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
  7. docs/changelogs/changelog_2x.md

     *  Fix: Resurrect http/2 frame logging.
     *  Fix: Limit to 20 authorization attempts.
    
    ## Version 2.1.0
    
    _2014-11-11_
    
     *  New: Typesafe APIs for interacting with cipher suites and TLS versions.
     *  Fix: Don't crash when mixing authorization challenges with upload retries.
    
    
    ## Version 2.1.0-RC1
    
    _2014-11-04_
    
    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. CHANGELOG/CHANGELOG-1.2.md

      * <strong>New GUI</strong> (dashboard) allows you to get started quickly and enables the same
    functionality found in the CLI as a more approachable and discoverable way of
    interacting with the system. Note: the GUI is enabled by default in 1.2 clusters.
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

    import com.fasterxml.jackson.databind.ObjectMapper;
    import com.google.common.io.BaseEncoding;
    
    import jakarta.annotation.PostConstruct;
    import jakarta.annotation.PreDestroy;
    
    /**
     * Client for interacting with OpenSearch search engine.
     * Provides document indexing, searching, and administrative operations.
     */
    public class SearchEngineClient implements Client {
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top