- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 1,875 for isobject (0.05 sec)
-
JobLogDbm.java
public void acceptPrimaryKeyMap(Entity entity, Map<String, ? extends Object> primaryKeyMap) { L257: } L258: L259: @Override L260: public void acceptAllColumnMap(Entity entity, Map<String, ? extends Object> allColumnMap) { L261: } L262: L263: @Override L264: public Map<String, Object> extractPrimaryKeyMap(Entity entity) { L265: return null; L266: } L267: L268: @Override L269: public Map<String, Object> extractAllColumnMap(Entity entity) { L270: return null; L271:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 11K bytes -
PathMappingDbm.java
public void acceptPrimaryKeyMap(Entity entity, Map<String, ? extends Object> primaryKeyMap) { L261: } L262: L263: @Override L264: public void acceptAllColumnMap(Entity entity, Map<String, ? extends Object> allColumnMap) { L265: } L266: L267: @Override L268: public Map<String, Object> extractPrimaryKeyMap(Entity entity) { L269: return null; L270: } L271: L272: @Override L273: public Map<String, Object> extractAllColumnMap(Entity entity) { L274: return null; L275:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 11.3K bytes -
NetworkBuilder.java
super(directed); L85: } L86: L87: /** Returns a {@link NetworkBuilder} for building directed networks. */ L88: public static NetworkBuilder<Object, Object> directed() { L89: return new NetworkBuilder<>(true); L90: } L91: L92: /** Returns a {@link NetworkBuilder} for building undirected networks. */ L93: public static NetworkBuilder<Object, Object> undirected() { L94: return new NetworkBuilder<>(false); L95: } L96: L97: /** L98: * Returns a {@link NetworkBuilder} initialized with all...github.com/google/guava/android/guava/src/com/g...Fri Jun 03 01:21:31 UTC 2022 7.4K bytes -
Maps.java
ValueDifference<V>> entriesDiffering() { L663: return differences; L664: } L665: L666: @Override L667: public boolean equals(@CheckForNull Object object) { L668: if (object == this) { L669: return true; L670: } L671: if (object instanceof MapDifference) { L672: MapDifference<?, ?> other = (MapDifference<?, ?>) object; L673: return entriesOnlyOnLeft().equals(other.entriesOnlyOnLeft()) L674: && entriesOnlyOnRight().equals(other.entriesOnlyOnRight())...github.com/google/guava/guava/src/com/google/co...Sat Oct 19 00:05:46 UTC 2024 167.4K bytes -
TestThread.java
TestThread} instances are instantiated in a L36: * test with reference to the same "lock-like object", and then their interactions with that object L37: * are choreographed via the various methods on this class. L38: * L39: * <p>A "lock-like object" is really any object that may be used for concurrency control. If the L40: * {@link #callAndAssertBlocks} method is ever called in a test, the lock-like object must have a L41: * method equivalent to {@link java.util.concurrent.locks.ReentrantLock#hasQ...github.com/google/guava/guava-tests/test/com/go...Fri Oct 18 22:10:29 UTC 2024 10.7K bytes -
ProtwordsTests.java
{ L64: return DICT_TYPE; L65: } L66: L67: @Override L68: protected Map<String, Object> createTestParam(int id) { L69: final Map<String, Object> requestBody = new HashMap<>(); L70: final String keyProp = NAME_PREFIX + id; L71: requestBody.put(KEY_PROPERTY, keyProp); L72: return requestBody; L73: } L74: L75: @Override L76: protected Map<String, Object> getUpdateMap() { L77: fail(); // Unreachable L78: return null; L79: } L80: L81:...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes -
FilteredEntrySetMultimap.java
Implementation of {@link Multimaps#filterEntries(SetMultimap, Predicate)}. L28: * L29: * @author Louis Wasserman L30: */ L31:@GwtCompatible L32:@ElementTypesAreNonnullByDefault L33:final class FilteredEntrySetMultimap<K extends @Nullable Object, V extends @Nullable Object> L34: extends FilteredEntryMultimap<K, V> implements FilteredSetMultimap<K, V> { L35: L36: FilteredEntrySetMultimap(SetMultimap<K, V> unfiltered, Predicate<? super Entry<K, V>> predicate) { L37: super(unfiltered, predicate); L38:...github.com/google/guava/guava/src/com/google/co...Tue Jun 15 21:08:00 UTC 2021 2K bytes -
Maps.java
ValueDifference<V>> entriesDiffering() { L662: return differences; L663: } L664: L665: @Override L666: public boolean equals(@CheckForNull Object object) { L667: if (object == this) { L668: return true; L669: } L670: if (object instanceof MapDifference) { L671: MapDifference<?, ?> other = (MapDifference<?, ?>) object; L672: return entriesOnlyOnLeft().equals(other.entriesOnlyOnLeft()) L673: && entriesOnlyOnRight().equals(other.entriesOnlyOnRight())...github.com/google/guava/android/guava/src/com/g...Sat Oct 19 00:05:46 UTC 2024 161.6K bytes -
ForwardingImmutableSet.java
L37: } L38: L39: @Override L40: public UnmodifiableIterator<E> iterator() { L41: return Iterators.unmodifiableIterator(delegate.iterator()); L42: } L43: L44: @Override L45: public boolean contains(@Nullable Object object) { L46: return object != null && delegate.contains(object); L47: } L48: L49: @Override L50: public boolean containsAll(Collection<?> targets) { L51: return delegate.containsAll(targets); L52: } L53: L54: @Override L55: public int size() { L56: return delegate.size();...github.com/google/guava/guava-gwt/src-super/com...Tue Jan 23 18:43:40 UTC 2024 2.2K bytes -
NullPointerTester.java
(isPrimitiveOrNullable(invokable.getParameters().get(paramIndex))) { L359: return; // there's nothing to test L360: } L361: @Nullable Object[] params = buildParamList(invokable, paramIndex); L362: try { L363: @SuppressWarnings("unchecked") // We'll get a runtime exception if the type is wrong. L364: Invokable<Object, ?> unsafe = (Invokable<Object, ?>) invokable; L365: unsafe.invoke(instance, params); L366: Assert.fail( L367: "No exception thrown for parameter at...github.com/google/guava/android/guava-testlib/s...Tue Jun 11 16:13:05 UTC 2024 22.6K bytes