- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for isInteracting (0.09 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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)