- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 78 for setValue4 (0.06 sec)
-
android/guava/src/com/google/common/collect/Table.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 10.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java
// Expected. } assertInvariants(map); } public void testEntrySetSetValue() { // TODO: Investigate the extent to which, in practice, maps that support // put() also support Entry.setValue(). if (!supportsPut) { return; } Map<K, V> map; V valueToSet; try { map = makePopulatedMap(); valueToSet = getValueNotInPopulatedMap();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 43.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingMapEntry.java
@Override @ParametricNullness public V getValue() { return delegate().getValue(); } @Override @ParametricNullness @CanIgnoreReturnValue public V setValue(@ParametricNullness V value) { return delegate().setValue(value); } @Override public boolean equals(@Nullable Object object) { return delegate().equals(object); } @Override public int hashCode() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 4.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMapEntry.java
} @Override @ParametricNullness public final V getValue() { return super.getValue(); } @Override @ParametricNullness public final V setValue(@ParametricNullness V value) { return super.setValue(value); } @Nullable ImmutableMapEntry<K, V> getNextInKeyBucket() { return null; } @Nullable ImmutableMapEntry<K, V> getNextInValueBucket() { return null; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 01 21:42:29 UTC 2025 - 4.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/PopulatedCachesTest.java
cache.invalidate(1); assertEquals(0, cache.size()); entry.setValue(3); assertEquals(1, cache.size()); assertEquals(3, cache.getIfPresent(1)); checkValidState(cache); assertThrows(NullPointerException.class, () -> entry.setValue(null)); checkValidState(cache); } } /* ---------------- Local utilities -------------- */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 15.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/LinkedListMultimap.java
} @Override public void add(Entry<K, V> e) { throw new UnsupportedOperationException(); } void setValue(@ParametricNullness V value) { checkState(current != null); current.setValue(value); } } /** An {@code Iterator} over distinct keys in key head order. */ private final class DistinctKeyIterator implements Iterator<K> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 26.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java
} public void test_register_complexObject() { RenderData data = new RenderData(); ComplexObject obj = new ComplexObject(); obj.setValue("complex value"); RenderDataUtil.register(data, "complex", obj); Object result = data.getDataMap().get("complex"); assertEquals(obj, result); // Non-entity objects are registered as-is
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsRoleType.java
this.updatedTime = value; } public String getValue() { checkSpecifiedProperty("value"); return convertEmptyToNull(value); } public void setValue(String value) { registerModifiedProperty("value"); this.value = value; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/Helpers.java
return value; } @Override public V setValue(V value) { throw new UnsupportedOperationException(); } @SuppressWarnings("unchecked") @Override public boolean equals(@Nullable Object o) { if (o instanceof Entry) { Entry<K, V> e = (Entry<K, V>) o; e.setValue(value); // muhahaha!
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsLabelType.java
this.updatedTime = value; } public String getValue() { checkSpecifiedProperty("value"); return convertEmptyToNull(value); } public void setValue(String value) { registerModifiedProperty("value"); this.value = value; } public String getVirtualHost() { checkSpecifiedProperty("virtualHost");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.5K bytes - Viewed (0)