- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 574 for felter (0.03 sec)
-
src/main/webapp/WEB-INF/orig/view/footer.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> <footer role="contentinfo"> <div class="container text-center"> <p class="text-muted"> <la:message key="labels.footer.copyright" /> </p> </div>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 12 06:14:02 UTC 2025 - 233 bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/footer.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> <footer role="contentinfo"> <div class="container text-center"> <p class="text-muted"> <la:message key="labels.footer.copyright" /> </p> </div>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 12 06:14:02 UTC 2025 - 233 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
} /** * Adds a filter to the query processing chain. * The filter chain is recreated after adding the filter. * * @param filter the filter to add */ public void addFilter(final Filter filter) { filterList.add(filter); createFilterChain(); } /** * Creates the filter chain by combining all registered filters.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilterStrategies.java
*/ enum BloomFilterStrategies implements BloomFilter.Strategy { /** * See "Less Hashing, Same Performance: Building a Better Bloom Filter" by Adam Kirsch and Michael * Mitzenmacher. The paper argues that this trick doesn't significantly deteriorate the * performance of a Bloom filter (yet only needs two 32bit hash functions). */ MURMUR128_MITZ_32() { @Override public <T extends @Nullable Object> boolean put(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.6K 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 */ public void addBoostFunction(final QueryBuilder filter, final ScoreFunctionBuilder<?> scoreFunction) {
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/filter/WebApiFilter.java
/** * Servlet filter for processing web API requests. * This filter intercepts HTTP requests and delegates processing to appropriate web API managers. */ public class WebApiFilter implements Filter { /** * Default constructor. */ public WebApiFilter() { // Default constructor } /** * Initializes the web API filter. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/web.xml
</init-param> </filter> <filter> <filter-name>corsFilter</filter-name> <filter-class>org.codelibs.fess.filter.CorsFilter</filter-class> </filter> <filter> <filter-name>webApiFilter</filter-name> <filter-class>org.codelibs.fess.filter.WebApiFilter</filter-class> </filter> <filter> <filter-name>lastaPrepareFilter</filter-name>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue May 06 09:19:22 UTC 2025 - 7.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Sets.java
* java.util.stream.Stream#filter}. This method is not being deprecated, but we gently encourage * you to migrate to streams. */ // TODO(kevinb): how to omit that last sentence when building GWT javadoc? public static <E extends @Nullable Object> Set<E> filter( Set<E> unfiltered, Predicate<? super E> predicate) { if (unfiltered instanceof SortedSet) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 81.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
} catch (final Exception e) { logger.warn("Failed to delete url filters for {}", sid); } } final DuplicateHostHelper duplicateHostHelper = ComponentUtil.getDuplicateHostHelper(); // set urls split(urlsStr, "[\r\n]").of(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).distinct().forEach(urlValue -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
} /** * Adds a filter to the processing pipeline. * After adding a filter, the filter chain is recreated to include the new filter. * * @param filter the filter to add to the processing pipeline */ public void addFilter(final Filter filter) { filterList.add(filter); createFilterChain(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0)