- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 398 for basedir (0.05 sec)
-
guava-testlib/src/com/google/common/collect/testing/SortedMapTestSuiteBuilder.java
import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.Set; import junit.framework.TestSuite; import org.jspecify.annotations.Nullable; /** * Creates, based on your criteria, a JUnit test suite that exhaustively tests a SortedMap * implementation. */ @GwtIncompatible public class SortedMapTestSuiteBuilder<K, V> extends MapTestSuiteBuilder<K, V> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
@Resource protected FessLoginAssist fessLoginAssist; /** Fess configuration for system settings */ @Resource protected FessConfig fessConfig; /** * Retrieves a paginated list of users based on the provided pager criteria. * Updates the pager with pagination information including total count and page navigation. * * @param userPager the pager containing search criteria and pagination settings
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/RegularImmutableMap.java
* input. */ @VisibleForTesting static final double HASH_FLOODING_FPP = 0.001; /** * Maximum allowed length of a hash table bucket before falling back to a j.u.HashMap based * implementation. Experimentally determined. */ static final int MAX_HASH_BUCKET_LENGTH = 8; // entries in insertion order @VisibleForTesting final transient Entry<K, V>[] entries;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 15.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/ConcurrentNavigableMapTestSuiteBuilder.java
package com.google.common.collect.testing; import static com.google.common.collect.testing.Helpers.copyToList; import com.google.common.annotations.GwtIncompatible; import java.util.List; /** * Creates, based on your criteria, a JUnit test suite that exhaustively tests a * ConcurrentNavigableMap implementation. * * @author Louis Wasserman */ @GwtIncompatible public class ConcurrentNavigableMapTestSuiteBuilder<K, V>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
import org.codelibs.core.stream.StreamUtil; import org.codelibs.fess.util.ComponentUtil; import jakarta.annotation.PostConstruct; /** * Helper class for managing file type mappings based on MIME types. * This class provides functionality to map MIME types to file types and * retrieve appropriate file type classifications for documents during indexing. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
import jakarta.annotation.PostConstruct; /** * Helper class for managing related query configurations. * This class provides functionality to load, cache, and retrieve related queries * based on search terms and virtual hosts. Related queries are used to suggest * alternative or supplementary search terms to improve search results. */ public class RelatedQueryHelper extends AbstractConfigHelper {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultimapEntriesTester.java
* We are comparing Multimaps of the same type, so as long as they have value collections that * implement equals() (as with ListMultimap or SetMultimap, as opposed to a QueueMultimap or * something), our equality check is value-based. */ @SuppressWarnings("UndefinedEquals") public void testRetainAllPropagatesToMultimap() { multimap().entries().retainAll(singleton(mapEntry(k0(), v0())));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 21:10:54 UTC 2025 - 5.4K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/SetMultimapTestSuiteBuilder.java
import java.util.Collections; import java.util.EnumSet; import java.util.List; import java.util.Map.Entry; import java.util.Set; import junit.framework.TestSuite; /** * Creates, based on your criteria, a JUnit test suite that exhaustively tests a {@code SetMultimap} * implementation. * * @author Louis Wasserman */ @GwtIncompatible public class SetMultimapTestSuiteBuilder<K, V>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 5.6K bytes - Viewed (0) -
guava/src/com/google/common/graph/SuccessorsFunction.java
* } * * This works because those types each implement {@code SuccessorsFunction}. It will also work with * any other implementation of this interface. * * <p>If you have your own graph implementation based around a custom node type {@code MyNode}, * which has a method {@code getChildren()} that retrieves its successors in a graph: * * {@snippet : * someGraphAlgorithm(startNode, MyNode::getChildren); * } *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/stream/StreamUtil.java
return new StreamOf<>(() -> values != null ? Arrays.stream(values) : Collections.<T> emptyList().stream()); } /** * Splits the given string into an array of substrings based on the specified regular expression * and returns a stream of those substrings. * * @param value the string to be split; if {@code null}, the method returns an empty stream
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.4K bytes - Viewed (0)