- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 209 for optall (0.08 sec)
-
android/guava/src/com/google/common/collect/Tables.java
@ParametricNullness R columnKey, @ParametricNullness V value) { return original.put(columnKey, rowKey, value); } @Override public void putAll(Table<? extends C, ? extends R, ? extends V> table) { original.putAll(transpose(table)); } @Override public @Nullable V remove(@Nullable Object rowKey, @Nullable Object columnKey) { return original.remove(columnKey, rowKey);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/UserInfo.java
fields.put(key, value); } @Override public Map<String, Object> toSource() { final Map<String, Object> sourceMap = super.toSource(); if (fields != null) { sourceMap.putAll(fields); } return sourceMap; } @Override protected void addFieldToSource(final Map<String, Object> sourceMap, final String field, final Object value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java
moreToPut.put("four", 4); moreToPut.put("five", 5); ImmutableSortedMap<String, Integer> map = ImmutableSortedMap.<String, Integer>naturalOrder().putAll(toPut).putAll(moreToPut).build(); assertMapEquals(map, "five", 5, "four", 4, "one", 1, "three", 3, "two", 2); } public void testBuilderReuse() { Builder<String, Integer> builder = ImmutableSortedMap.naturalOrder();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/exentity/Group.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.8K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java
return super.put(key, value); } @Override public void putAll(Map<? extends Class<? extends @NonNull B>, ? extends B> map) { Map<Class<? extends @NonNull B>, B> copy = new LinkedHashMap<>(map); for (Entry<? extends Class<? extends @NonNull B>, B> entry : copy.entrySet()) { cast(entry.getKey(), entry.getValue()); } super.putAll(copy); } @CanIgnoreReturnValue @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:10:29 UTC 2025 - 6.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/SetMultimapPutAllTester.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 1.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableTable.java
* copied table may have different iteration orders. For more control over the ordering, create a * {@link Builder} and call {@link Builder#orderRowsBy}, {@link Builder#orderColumnsBy}, and * {@link Builder#putAll} * * <p>Despite the method name, this method attempts to avoid actually copying the data when it is * safe to do so. The exact circumstances under which a copy will or will not be performed are
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/DataStoreParams.java
* Adds all key-value pairs from the specified map to this parameter container. * * @param map the map containing parameters to add, must not be null */ public void putAll(final Map<String, String> map) { params.putAll(map); } /** * Checks if the specified key exists in the parameter map. * * @param key the key to check for existence
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/FavoriteLog.java
return getCreatedAt(); } @Override public Map<String, Object> toSource() { final Map<String, Object> sourceMap = super.toSource(); if (fields != null) { sourceMap.putAll(fields); } return sourceMap; } @Override protected void addFieldToSource(final Map<String, Object> sourceMap, final String field, final Object value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.7K bytes - Viewed (0)