Search Options

Results per page
Sort
Preferred Languages
Advance

Results 491 - 500 of 681 for delete (0.04 sec)

  1. ForwardingConcurrentMap.java

    ForwardingConcurrentMap() {} L46: L47: @Override L48: protected abstract ConcurrentMap<K, V> delegate(); L49: L50: @CanIgnoreReturnValue L51: @Override L52: @CheckForNull L53: public V putIfAbsent(K key, V value) { L54: return delegate().putIfAbsent(key, value); L55: } L56: L57: @CanIgnoreReturnValue L58: @Override L59: public boolean remove(@CheckForNull Object key, @CheckForNull Object value) { L60: return delegate().remove(key, value); L61: } L62: L63: @CanIgnoreReturnValue L64: @Override L65:...
    github.com/google/guava/guava/src/com/google/co...
    Tue Jun 29 19:42:21 UTC 2021
      2.5K bytes
  2. DeferredSocketAdapter.kt

    getDelegate(sslSocket)?.getSelectedProtocol(sslSocket) L48: } L49: L50: @Synchronized private fun getDelegate(sslSocket: SSLSocket): SocketAdapter? { L51: if (this.delegate == null && socketAdapterFactory.matchesSocket(sslSocket)) { L52: this.delegate = socketAdapterFactory.create(sslSocket) L53: } L54: L55: return delegate L56: } L57: L58: interface Factory { L59: fun matchesSocket(sslSocket: SSLSocket): Boolean L60: L61: fun create(sslSocket: SSLSocket): SocketAdapter L62: }...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Mon Jan 08 01:13:22 UTC 2024
      2.1K bytes
  3. ConnectionPool.kt

    connections in the pool. */ L116: fun idleConnectionCount(): Int = delegate.idleConnectionCount() L117: L118: /** Returns total number of connections in the pool. */ L119: fun connectionCount(): Int = delegate.connectionCount() L120: L121: internal val connectionListener: ConnectionListener L122: get() = delegate.connectionListener L123: L124: /** Close and remove all idle connections in the pool. */ L125: fun evictAll() { L126: delegate.evictAll() L127: } L128: L129: /** L130: * Sets a policy...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Wed Apr 03 20:39:41 UTC 2024
      5.6K bytes
  4. ForwardingListTest.java

    t1, wrap(list1), wrap(list1)) L209: .addEqualityGroup(list2, wrap(list2)) L210: .testEquals(); L211: } L212: L213: private static <T> List<T> wrap(final List<T> delegate) { L214: return new ForwardingList<T>() { L215: @Override L216: protected List<T> delegate() { L217: return delegate; L218: } L219: }; L220: } L221:}...
    github.com/google/guava/android/guava-tests/tes...
    Mon Apr 17 15:49:06 UTC 2023
      5.9K bytes
  5. ForwardingSortedMultisetTest.java

    wrap(set1)) L224: .addEqualityGroup(set2, wrap(set2)) L225: .testEquals(); L226: } L227: L228: private static <T> SortedMultiset<T> wrap(final SortedMultiset<T> delegate) { L229: return new ForwardingSortedMultiset<T>() { L230: @Override L231: protected SortedMultiset<T> delegate() { L232: return delegate; L233: } L234: }; L235: } L236:}...
    github.com/google/guava/android/guava-tests/tes...
    Sat Oct 19 00:05:46 UTC 2024
      6.4K bytes
  6. ForwardingListTest.java

    t1, wrap(list1), wrap(list1)) L209: .addEqualityGroup(list2, wrap(list2)) L210: .testEquals(); L211: } L212: L213: private static <T> List<T> wrap(final List<T> delegate) { L214: return new ForwardingList<T>() { L215: @Override L216: protected List<T> delegate() { L217: return delegate; L218: } L219: }; L220: } L221:}...
    github.com/google/guava/guava-tests/test/com/go...
    Mon Apr 17 15:49:06 UTC 2023
      5.9K bytes
  7. ImmutableSortedSet.java

    comparator.equals(comparator2); L227: } L228: return false; L229: } L230: L231: // Assumes that delegate doesn't have null elements and comparator. L232: static <E> ImmutableSortedSet<E> unsafeDelegateSortedSet( L233: SortedSet<E> delegate, boolean isSubset) { L234: return delegate.isEmpty() L235: ? emptySet(delegate.comparator()) L236: : new RegularImmutableSortedSet<E>(delegate, isSubset); L237: } L238: L239: private final transient SortedSet<E> sortedDelegate; L240: L241:...
    github.com/google/guava/guava-gwt/src-super/com...
    Mon Aug 19 16:21:24 UTC 2024
      15.5K bytes
  8. AbstractScheduledService.java

    static final class FutureAsCancellable implements Cancellable { L496: private final Future<?> delegate; L497: L498: FutureAsCancellable(Future<?> delegate) { L499: this.delegate = delegate; L500: } L501: L502: @Override L503: @SuppressWarnings("Interruption") // We are propagating an interrupt from a caller. L504: public void cancel(boolean mayInterruptIfRunning) { L505: delegate.cancel(mayInterruptIfRunning); L506: } L507: L508: @Override L509: public boolean isCancelled()...
    github.com/google/guava/guava/src/com/google/co...
    Fri Oct 25 16:22:21 UTC 2024
      27.8K bytes
  9. ForwardingMultisetTest.java

    wrap(set1), wrap(set1)) L355: .addEqualityGroup(set2, wrap(set2)) L356: .testEquals(); L357: } L358: L359: private static <T> Multiset<T> wrap(final Multiset<T> delegate) { L360: return new ForwardingMultiset<T>() { L361: @Override L362: protected Multiset<T> delegate() { L363: return delegate; L364: } L365: }; L366: } L367:}...
    github.com/google/guava/android/guava-tests/tes...
    Sat Oct 19 00:05:46 UTC 2024
      11.8K bytes
  10. ForwardingNavigableMapTest.java

    L324: .addEqualityGroup(map2, wrap(map2)) L325: .testEquals(); L326: } L327: L328: private static <K, V> NavigableMap<K, V> wrap(final NavigableMap<K, V> delegate) { L329: return new ForwardingNavigableMap<K, V>() { L330: @Override L331: protected NavigableMap<K, V> delegate() { L332: return delegate; L333: } L334: }; L335: } L336:}...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Apr 19 19:24:36 UTC 2023
      9.5K bytes
Back to top