- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 954 for Nullable (1 sec)
-
guava/src/com/google/common/collect/ImmutableMapEntry.java
* in the value bucket (or vice versa). */ private final transient @Nullable ImmutableMapEntry<K, V> nextInKeyBucket; NonTerminalImmutableMapEntry( K key, V value, @Nullable ImmutableMapEntry<K, V> nextInKeyBucket) { super(key, value); this.nextInKeyBucket = nextInKeyBucket; } @Override final @Nullable ImmutableMapEntry<K, V> getNextInKeyBucket() { return nextInKeyBucket;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Jul 01 21:42:29 UTC 2025 - 4.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MapsTransformValuesUnmodifiableIteratorTest.java
public void testTransformEntrySetContains() { Map<@Nullable String, @Nullable Boolean> underlying = new HashMap<>(); underlying.put("a", null); underlying.put("b", true); underlying.put(null, true); Map<@Nullable String, @Nullable Boolean> map = transformValues( underlying, new Function<@Nullable Boolean, @Nullable Boolean>() { @Override
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 16:03:47 UTC 2025 - 12.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingMultimap.java
delegate().clear(); } @Override public boolean containsEntry(@Nullable Object key, @Nullable Object value) { return delegate().containsEntry(key, value); } @Override public boolean containsKey(@Nullable Object key) { return delegate().containsKey(key); } @Override public boolean containsValue(@Nullable Object value) { return delegate().containsValue(value); } @Override
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 21:10:54 UTC 2025 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingMultimap.java
delegate().clear(); } @Override public boolean containsEntry(@Nullable Object key, @Nullable Object value) { return delegate().containsEntry(key, value); } @Override public boolean containsKey(@Nullable Object key) { return delegate().containsKey(key); } @Override public boolean containsValue(@Nullable Object value) { return delegate().containsValue(value); } @Override
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 21:10:54 UTC 2025 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/Synchronized.java
private static class SynchronizedMultimap<K extends @Nullable Object, V extends @Nullable Object> extends SynchronizedObject implements Multimap<K, V> { transient @Nullable Set<K> keySet; transient @Nullable Collection<V> valuesCollection; transient @Nullable Collection<Map.Entry<K, V>> entries; transient @Nullable Map<K, Collection<V>> asMap; transient @Nullable Multiset<K> keys; @SuppressWarnings("unchecked")
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Aug 08 15:11:10 UTC 2025 - 56.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Synchronized.java
private static class SynchronizedMultimap<K extends @Nullable Object, V extends @Nullable Object> extends SynchronizedObject implements Multimap<K, V> { transient @Nullable Set<K> keySet; transient @Nullable Collection<V> valuesCollection; transient @Nullable Collection<Map.Entry<K, V>> entries; transient @Nullable Map<K, Collection<V>> asMap; transient @Nullable Multiset<K> keys; @SuppressWarnings("unchecked")
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Aug 08 15:11:10 UTC 2025 - 53K bytes - Viewed (0) -
guava/src/com/google/common/base/Suppliers.java
*/ public static <F extends @Nullable Object, T extends @Nullable Object> Supplier<T> compose( Function<? super F, T> function, Supplier<F> supplier) { return new SupplierComposition<>(function, supplier); } private static final class SupplierComposition< F extends @Nullable Object, T extends @Nullable Object> implements Supplier<T>, Serializable {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Table.java
* @param <V> the type of the mapped values * @since 7.0 */ @DoNotMock("Use ImmutableTable, HashBasedTable, or another implementation") @GwtCompatible public interface Table< R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object> { // TODO(jlevy): Consider adding methods similar to ConcurrentMap methods. // Accessors /**Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 10.5K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JSpecifyNullabilityChangesTest.kt
""" ) { assertHasNoError() assertHasWarnings( "Field finalField: Nullability changed from nullable to non-nullable", "Method com.example.Source.foo(java.lang.String): Return nullability changed from nullable to non-nullable" ) assertHasNoInformation() } } @TestRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu May 15 17:05:08 UTC 2025 - 18K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java
@Nonnull ProtoSession session, @Nullable RequestTrace trace, @Nullable Source installationSettingsSource, @Nullable Source projectSettingsSource, @Nullable Source userSettingsSource, @Nullable UnaryOperator<String> interpolationSource) { super(session, trace);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 9.4K bytes - Viewed (0)