- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 681 for delete (0.04 sec)
-
MultimapsTransformValuesAsMapTest.java
Integer>create(), Functions.<Integer>identity()) L41: .asMap(); L42: } L43: L44: @Override L45: protected Map<String, Collection<Integer>> makePopulatedMap() { L46: ListMultimap<String, Integer> delegate = ArrayListMultimap.create(); L47: populate(delegate); L48: return Multimaps.transformValues(delegate, Functions.<Integer>identity()).asMap(); L49: } L50:}...github.com/google/guava/android/guava-tests/tes...Mon Feb 19 20:34:55 UTC 2024 1.6K bytes -
SingletonImmutableList.java
L30:final class SingletonImmutableList<E> extends ForwardingImmutableList<E> { L31: L32: final transient List<E> delegate; L33: // This reference is used both by the custom field serializer, and by the L34: // GWT compiler to infer the elements of the lists that needs to be L35: // serialized. L36: E element; L37: L38: SingletonImmutableList(E element) { L39: this.delegate = singletonList(checkNotNull(element)); L40: this.element = element; L41: } L42: L43: @Override L44: List<E>...github.com/google/guava/guava-gwt/src-super/com...Tue Jan 23 18:43:40 UTC 2024 1.4K bytes -
MapMakerInternalMap.java
= valueEquivalence; L2889: this.concurrencyLevel = concurrencyLevel; L2890: this.delegate = delegate; L2891: } L2892: L2893: @Override L2894: protected ConcurrentMap<K, V> delegate() { L2895: return delegate; L2896: } L2897: L2898: void writeMapTo(ObjectOutputStream out) throws IOException { L2899: out.writeInt(delegate.size()); L2900: for (Entry<K, V> entry : delegate.entrySet()) { L2901: out.writeObject(entry.getKey()); L2902: out.writeObjec...github.com/google/guava/guava/src/com/google/co...Fri Oct 18 20:24:49 UTC 2024 90.8K bytes -
SequentialExecutor.java
this method throws, e.g. a {@code RejectedExecutionException} from the delegate executor, L99: * execution of tasks will stop until a call to this method is made. L100: */ L101: @Override L102: public void execute(Runnable task) { L103: checkNotNull(task); L104: Runnable submittedTask; L105: long oldRunCount; L106: synchronized (queue) { L107: // If the worker is already running (or execute() on the delegate returned successfully, and L108: // the worker has yet to start)...github.com/google/guava/android/guava/src/com/g...Thu Feb 01 21:46:34 UTC 2024 10.6K bytes -
SequentialExecutor.java
this method throws, e.g. a {@code RejectedExecutionException} from the delegate executor, L99: * execution of tasks will stop until a call to this method is made. L100: */ L101: @Override L102: public void execute(Runnable task) { L103: checkNotNull(task); L104: Runnable submittedTask; L105: long oldRunCount; L106: synchronized (queue) { L107: // If the worker is already running (or execute() on the delegate returned successfully, and L108: // the worker has yet to start)...github.com/google/guava/guava/src/com/google/co...Thu Feb 01 21:46:34 UTC 2024 10.6K bytes -
Tables.java
implements Serializable { L559: final Table<? extends R, ? extends C, ? extends V> delegate; L560: L561: UnmodifiableTable(Table<? extends R, ? extends C, ? extends V> delegate) { L562: this.delegate = checkNotNull(delegate); L563: } L564: L565: @SuppressWarnings("unchecked") // safe, covariant cast L566: @Override L567: protected Table<R, C, V> delegate() { L568: return (Table<R, C, V>) delegate; L569: } L570: L571: @Override L572: public Set<Cell<R, C, V>> cellSet()...github.com/google/guava/android/guava/src/com/g...Wed Oct 16 21:21:17 UTC 2024 26.3K bytes -
EquivalenceTester.java
private static final int REPETITIONS = 3; L56: L57: private final Equivalence<? super T> equivalence; L58: private final RelationshipTester<T> delegate; L59: private final List<T> items = Lists.newArrayList(); L60: L61: private EquivalenceTester(Equivalence<? super T> equivalence) { L62: this.equivalence = checkNotNull(equivalence); L63: this.delegate = new RelationshipTester<>(equivalence, "equivalent", "hash", new ItemReporter()); L64: } L65: L66: public static <T> EquivalenceTester<T>...github.com/google/guava/android/guava-testlib/s...Tue Apr 25 11:57:12 UTC 2023 4K bytes -
EquivalenceTester.java
private static final int REPETITIONS = 3; L56: L57: private final Equivalence<? super T> equivalence; L58: private final RelationshipTester<T> delegate; L59: private final List<T> items = Lists.newArrayList(); L60: L61: private EquivalenceTester(Equivalence<? super T> equivalence) { L62: this.equivalence = checkNotNull(equivalence); L63: this.delegate = new RelationshipTester<>(equivalence, "equivalent", "hash", new ItemReporter()); L64: } L65: L66: public static <T> EquivalenceTester<T>...github.com/google/guava/guava-testlib/src/com/g...Tue Apr 25 11:57:12 UTC 2023 4K bytes -
Exchange.kt
responseDone = false, e = null) L206: } L207: L208: /** A request body that fires events when it completes. */ L209: private inner class RequestBodySink( L210: delegate: Sink, L211: /** The exact number of bytes to be written, or -1L if that is unknown. */ L212: private val contentLength: Long, L213: ) : ForwardingSink(delegate) { L214: private var completed = false L215: private var bytesReceived = 0L L216: private var closed = false L217: L218: @Throws(IOException::class) L219:...github.com/square/okhttp/okhttp/src/main/kotlin...Mon Jan 08 01:13:22 UTC 2024 9.2K bytes -
ServiceManagerTest.java
public final Service startAsync() { L570: return delegate.startAsync(); L571: } L572: L573: @Override L574: public final Service stopAsync() { L575: return delegate.stopAsync(); L576: } L577: L578: @Override L579: public final void awaitRunning() { L580: delegate.awaitRunning(); L581: } L582: L583: @Override L584: public final void awaitRunning(long timeout, TimeUnit unit) throws TimeoutException...github.com/google/guava/android/guava-tests/tes...Sat Oct 19 00:51:36 UTC 2024 25.5K bytes