- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 18 for hashMap (0.05 seconds)
-
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
} /** * Creates and returns a new instance of {@link HashMap}. * * @param <K> the key type of {@link HashMap} * @param <V> the value type of {@link HashMap} * @return a new instance of {@link HashMap} * @see HashMap#HashMap() */ public static <K, V> HashMap<K, V> newHashMap() { return new HashMap<>(); } /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 49.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/MapsTest.java
Map<@Nullable String, String> hashmap = new HashMap<>(); hashmap.put("foo", "bar"); hashmap.put(null, "baz"); assertThat(Maps.toStringImpl(hashmap)).isEqualTo(hashmap.toString()); } public void testToStringImplWithNullValues() throws Exception { Map<String, @Nullable String> hashmap = new HashMap<>(); hashmap.put("foo", "bar"); hashmap.put("baz", null);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 63.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java
final List<Map<String, Object>> documents = new ArrayList<>(); final Map<String, Object> doc1 = new HashMap<>(); doc1.put("title", "Doc 1"); doc1.put("content", "<h1>Title</h1><p>Content 1</p>"); documents.add(doc1); final Map<String, Object> doc2 = new HashMap<>(); doc2.put("title", "Doc 2"); doc2.put("content", "<ul><li>Item A</li><li>Item B</li></ul>");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 53K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
import java.io.PrintWriter; import java.io.StringWriter; import java.net.URLDecoder; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Collections; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.UUID; import java.util.function.Supplier; import org.apache.commons.lang3.ArrayUtils;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1) -
guava-tests/test/com/google/common/cache/CacheLoadingTest.java
import com.google.common.util.concurrent.ListenableFuture; import com.google.common.util.concurrent.UncheckedExecutionException; import java.io.IOException; import java.lang.ref.WeakReference; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.concurrent.Callable; import java.util.concurrent.ConcurrentMap; import java.util.concurrent.CountDownLatch;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 91K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
protected boolean useGoogleOffOn = true; /** Map storing field pruning rules */ protected Map<String, Boolean> fieldPrunedRuleMap = new HashMap<>(); /** Cache for storing parsed pruned tags by configuration ID */ protected Map<String, PrunedTag[]> prunedTagsCache = new HashMap<>(); /** * Default constructor. */ public FessXpathTransformer() { super(); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 55.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java
import com.google.common.util.concurrent.ListenableFuture; import com.google.common.util.concurrent.UncheckedExecutionException; import java.io.IOException; import java.lang.ref.WeakReference; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.concurrent.Callable; import java.util.concurrent.ConcurrentMap; import java.util.concurrent.CountDownLatch;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 91K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
/** Initial facet parameter mappings */ protected final Map<String, String> initFacetParamMap = new HashMap<>(); /** Initial geographic parameter mappings */ protected final Map<String, String> initGeoParamMap = new HashMap<>(); /** List of facet query views */ protected final List<FacetQueryView> facetQueryViewList = new ArrayList<>();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 52.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
import java.io.IOException; import java.net.URI; import java.net.URLEncoder; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.concurrent.ExecutionException; import java.util.concurrent.TimeUnit; import java.util.stream.Collectors;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:03:27 GMT 2026 - 56.8K bytes - Click Count (0)