- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 55 for folders (0.04 sec)
-
guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java
} public void testMutableValues() { IntHolder holderA = new IntHolder(1); IntHolder holderB = new IntHolder(2); Map<String, IntHolder> map = ImmutableSortedMap.of("a", holderA, "b", holderB); holderA.value = 3; assertTrue(map.entrySet().contains(immutableEntry("a", new IntHolder(3))));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java
@GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 5; } public void testMutableValues() { IntHolder holderA = new IntHolder(1); IntHolder holderB = new IntHolder(2); Map<String, IntHolder> map = ImmutableMap.of("a", holderA, "b", holderB); holderA.value = 3; assertTrue(map.entrySet().contains(immutableEntry("a", new IntHolder(3))));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
} /** * Sets up the database query conditions for listing crawling information records. * Applies filters based on the pager criteria such as ID and session ID, * and orders results by creation time in descending order. * * @param cb the condition bean for building the database query * @param crawlingInfoPager the pager containing filter criteria
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/query/parser/QueryParser.java
* This class provides a flexible architecture using a chain of filters to process and transform * queries before they are parsed by the underlying Lucene query parser. * * <p>The parser supports configuration of default field, analyzer, wildcard settings, * and default operator. It also allows adding custom filters to modify query behavior.</p> * */ public class QueryParser { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
queryContext.addSorts(defaultSortBuilders); } return queryContext; } /** * Builds virtual host query filters to restrict search results to the current virtual host. * This method adds filters based on the virtual host key, except for admin searches. * * @param queryContext the query context to modify
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/core/lang/ClassLoaderIterator.java
import java.util.Iterator; import java.util.NoSuchElementException; import org.codelibs.core.exception.ClUnsupportedOperationException; /** * An {@link Iterator} that iterates through the hierarchy of class loaders towards their parent class loaders. * <p> * Usage example: * </p> * * <pre> * import static org.codelibs.core.lang.ClassLoaderIterator.*; * * ClassLoader classLoader = ...;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
* @param envSupplier The environment supplier. * @return The directory context holder. */ protected DirContextHolder getDirContext(final Supplier<Hashtable<String, String>> envSupplier) { DirContextHolder holder = contextLocal.get(); if (holder != null) { holder.inc(); return holder; } final Hashtable<String, String> env = envSupplier.get();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
import jakarta.annotation.PostConstruct; /** * Query processor component that handles query filters and commands. * This class provides a pipeline for processing Lucene queries by applying * a chain of filters and executing registered query commands. * * <p>The processor maintains a map of query commands indexed by query class names * and a list of filters that are applied in order during query processing.</p> */ public class QueryProcessor {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/WebApiFilter.java
// nothing } /** * Destroys the web API filter and cleans up resources. */ @Override public void destroy() { // nothing } /** * Filters HTTP requests and processes them through appropriate web API managers. * * @param request The servlet request * @param response The servlet response * @param chain The filter chain
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/java/org/codelibs/fess/app/pager/FailureUrlPager.java
import org.codelibs.fess.util.ComponentUtil; /** * A pager class for managing pagination of failure URL records. * This class provides functionality to handle pagination of failed crawler URLs * with search filters and navigation capabilities. */ public class FailureUrlPager implements Serializable { /** Serial version UID for serialization compatibility. */ private static final long serialVersionUID = 1L; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0)