Search Options

Results per page
Sort
Preferred Languages
Advance

Results 551 - 560 of 1,961 for isobject (0.05 sec)

  1. ElevateWordDbm.java

    public void acceptPrimaryKeyMap(Entity entity, Map<String, ? extends Object> primaryKeyMap) { L252: } L253: L254: @Override L255: public void acceptAllColumnMap(Entity entity, Map<String, ? extends Object> allColumnMap) { L256: } L257: L258: @Override L259: public Map<String, Object> extractPrimaryKeyMap(Entity entity) { L260: return null; L261: } L262: L263: @Override L264: public Map<String, Object> extractAllColumnMap(Entity entity) { L265: return null; L266:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.8K bytes
  2. FilteredKeyListMultimap.java

    Implementation of {@link Multimaps#filterKeys(ListMultimap, Predicate)}. L27: * L28: * @author Louis Wasserman L29: */ L30:@GwtCompatible L31:@ElementTypesAreNonnullByDefault L32:final class FilteredKeyListMultimap<K extends @Nullable Object, V extends @Nullable Object> L33: extends FilteredKeyMultimap<K, V> implements ListMultimap<K, V> { L34: FilteredKeyListMultimap(ListMultimap<K, V> unfiltered, Predicate<? super K> keyPredicate) { L35: super(unfiltered, keyPredicate); L36: } L37: L38: ...
    github.com/google/guava/android/guava/src/com/g...
    Tue Jun 15 21:08:00 UTC 2021
      1.8K bytes
  3. TestCharacterListGenerator.java

    Chars(); L35: } L36: L37: @Override L38: public List<Character> create(Object... elements) { L39: Character[] array = new Character[elements.length]; L40: int i = 0; L41: for (Object e : elements) { L42: array[i++] = (Character) e; L43: } L44: return create(array); L45: } L46: L47: /** L48: * Creates a new collection containing the given elements; implement this method instead of {@link L49: * #create(Object...)}. L50: */ L51: protected abstract List<Character> create(Character[]...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Feb 21 16:49:06 UTC 2024
      1.8K bytes
  4. ConnectInterceptor.kt

    ealInterceptorChain L23: L24:/** L25: * Opens a connection to the target server and proceeds to the next interceptor. The network might L26: * be used for the returned response, or to validate a cached response with a conditional GET. L27: */ L28:object ConnectInterceptor : Interceptor { L29: @Throws(IOException::class) L30: override fun intercept(chain: Interceptor.Chain): Response { L31: val realChain = chain as RealInterceptorChain L32: val exchange = realChain.call.initExchange(realChain)...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Wed Dec 20 23:27:07 UTC 2023
      1.5K bytes
  5. Jdk9PlatformTest.kt

    assertThat(Jdk9Platform().toString()).isEqualTo("Jdk9Platform") L54: } L55: L56: @Test L57: fun selectedProtocolIsNullWhenSslSocketThrowsExceptionForApplicationProtocol() { L58: platform.assumeJdk9() L59: val applicationProtocolUnsupported = L60: object : DelegatingSSLSocket(null) { L61: override fun getApplicationProtocol(): String { L62: throw UnsupportedOperationException("Mock exception") L63: } L64: } L65: assertThat(Jdk9Platform().getSelectedProtocol(applicat...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Mon Jan 08 01:13:22 UTC 2024
      2.1K bytes
  6. 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
  7. 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
  8. BsUserCQ.java

    businessCategory) { L333: setBusinessCategory_GreaterThan(businessCategory, null); L334: } L335: L336: public void setBusinessCategory_GreaterThan(String businessCategory, ConditionOptionCall<RangeQueryBuilder> opLambda) { L337: final Object _value = businessCategory; L338: RangeQueryBuilder builder = regRangeQ("businessCategory", ConditionKey.CK_GREATER_THAN, _value); L339: if (opLambda != null) { L340: opLambda.callback(builder); L341: } L342: } L343:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      326.1K bytes
  9. 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
  10. Streams.java

    <a L341: * href="http://gee.cs.oswego.edu/dl/html/StreamParallelGuidance.html">efficiently splittable</a>. L342: * This may harm parallel performance. L343: */ L344: @Beta L345: public static <A extends @Nullable Object, B extends @Nullable Object, R extends @Nullable Object> L346: Stream<R> zip( L347: Stream<A> streamA, Stream<B> streamB, BiFunction<? super A, ? super B, R> function) { L348: checkNotNull(streamA); L349: checkNotNull(streamB); L350: checkNotNull(function);...
    github.com/google/guava/guava/src/com/google/co...
    Thu Oct 31 14:20:11 UTC 2024
      36.8K bytes
Back to top