- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 214 for applies (0.5 sec)
-
.github/dependabot.yml
# directory: "/" # schedule: # interval: "weekly" # groups: # dependencies: # applies-to: version-updates # patterns: # - "*" # - package-ecosystem: "maven" # directory: "/android" # schedule: # interval: "weekly" # groups: # dependencies: # applies-to: version-updates # patterns: # - "*" - package-ecosystem: "github-actions"
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Mar 21 21:15:53 UTC 2025 - 762 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
} /** * Adds a boost function with a filter to modify document scoring during search. * This method adds a boost function that applies only to documents matching the filter. * * @param filter the query filter to determine which documents the boost applies to * @param scoreFunction the score function to add for boosting */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/SearchEngineUtil.java
return getXContentBuilderOutputStream((builder, params) -> xContent.toXContent(builder, params), mediaType); } /** * Scrolls through all documents in the specified index and applies the callback function to each hit. * * @param index the name of the index to scroll through * @param callback the function to apply to each search hit, returning true to continue or false to stop
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
while (!crawlerRunning) { ThreadUtil.sleepQuietly(crawlerWaitMillis); } } /** * Applies delay based on the configured interval rules. * This method calculates the appropriate delay for the current time * and applies it by sleeping the current thread. */ public void delayByRules() { final long delay = getDelay(); if (delay > 0) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java
return new NoOpScheduledExecutorService(); } /** * Creates a scheduled executor service that runs each task in the thread that invokes {@code * execute/submit/schedule}, as in {@link CallerRunsPolicy}. This applies both to individually * submitted tasks and to collections of tasks submitted via {@code invokeAll}, {@code invokeAny}, * {@code schedule}, {@code scheduleAtFixedRate}, and {@code scheduleWithFixedDelay}. In the case
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/EncodingFilter.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ClosingFuture.java
* @param <U> the type of the result of the function */ public interface ClosingFunction<T extends @Nullable Object, U extends @Nullable Object> { /** * Applies this function to an input, or throws an exception if unable to do so. * * <p>Any objects that are passed to {@link DeferredCloser#eventuallyClose(Object, Executor)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 23 15:26:56 UTC 2025 - 97.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/BooleanFunction.java
* Represents a function that accepts one argument and produces a boolean result. * @param <T> the type of the input to the function */ @FunctionalInterface public interface BooleanFunction<T> { /** * Applies this function to the given argument. * @param t the function argument * @return the function result */ boolean apply(T t);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java
* This class handles URL conversion based on duplicate host rules, allowing multiple * hostnames or URLs to be treated as equivalent for crawling and indexing purposes. * It maintains a list of DuplicateHost rules and applies them to URLs. * */ public class DuplicateHostHelper { private static final Logger logger = LogManager.getLogger(DuplicateHostHelper.class); /** List of duplicate host rules for URL conversion */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/stream/StreamUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.4K bytes - Viewed (0)