Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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
  2. 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
  3. 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
  4. 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
  5. AbstractInvocationHandler.java

    .checker.nullness.qual.Nullable; L23: L24:/** L25: * Abstract implementation of {@link InvocationHandler} that handles {@link Object#equals}, {@link L26: * Object#hashCode} and {@link Object#toString}. For example: L27: * L28: * <pre> L29: * class Unsupported extends AbstractInvocationHandler { L30: * protected Object handleInvocation(Object proxy, Method method, Object[] args) { L31: * throw new UnsupportedOperationException(); L32: * } L33: * } L34: * L35: * CharSequence unsupported = ...
    github.com/google/guava/guava/src/com/google/co...
    Wed Jan 05 17:43:40 UTC 2022
      5.2K bytes
  6. 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
  7. 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
  8. BsFavoriteLogBhv.java

    "favorite_log"; L65: } L66: L67: @Override L68: public FavoriteLogDbm asDBMeta() { L69: return FavoriteLogDbm.getInstance(); L70: } L71: L72: @Override L73: protected <RESULT extends FavoriteLog> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setCreatedAt(toLocalDateTime(source.get("createdAt"))); L77: result.setDocId(DfType...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.5K bytes
  9. BsRoleBhv.java

    asEsSearchType() { L64: return "role"; L65: } L66: L67: @Override L68: public RoleDbm asDBMeta() { L69: return RoleDbm.getInstance(); L70: } L71: L72: @Override L73: protected <RESULT extends Role> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setName(DfTypeUtil.toString(source.get("name"))); L77: return updateEntity(source, result);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      8.8K bytes
  10. BsBadWordBhv.java

    return "bad_word"; L65: } L66: L67: @Override L68: public BadWordDbm asDBMeta() { L69: return BadWordDbm.getInstance(); L70: } L71: L72: @Override L73: protected <RESULT extends BadWord> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { L74: try { L75: final RESULT result = entityType.newInstance(); L76: result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy"))); L77: result.setCreatedT...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.4K bytes
Back to top