- Sort Score
- Result 10 results
- Languages All
Results 651 - 660 of 681 for delete (0.06 sec)
-
MultimapsCollectionTest.java
args) L156: throws Throwable { L157: throw new UnsupportedOperationException(); L158: } L159: }); L160: } L161: L162: @Override L163: protected Multimap<K, V> delegate() { L164: return unusableDelegate; L165: } L166: L167: @Override L168: public boolean put(K key, V value) { L169: map.put(key, value); L170: return true; L171: } L172: L173: SetMultimap<K, V> build() { L174: return...github.com/google/guava/android/guava-tests/tes...Wed Oct 30 16:15:19 UTC 2024 28.7K bytes -
ImmutableLongArray.java
@Override L546: public boolean equals(@CheckForNull Object object) { L547: if (object instanceof AsList) { L548: AsList that = (AsList) object; L549: return this.parent.equals(that.parent); L550: } L551: // We could delegate to super now but it would still box too much L552: if (!(object instanceof List)) { L553: return false; L554: } L555: List<?> that = (List<?>) object; L556: if (this.size() != that.size()) { L557: return false; L558:...github.com/google/guava/android/guava/src/com/g...Fri Oct 25 18:05:56 UTC 2024 22.3K bytes -
ImmutableIntArray.java
@Override L527: public boolean equals(@CheckForNull Object object) { L528: if (object instanceof AsList) { L529: AsList that = (AsList) object; L530: return this.parent.equals(that.parent); L531: } L532: // We could delegate to super now but it would still box too much L533: if (!(object instanceof List)) { L534: return false; L535: } L536: List<?> that = (List<?>) object; L537: if (this.size() != that.size()) { L538: return false; L539:...github.com/google/guava/guava/src/com/google/co...Fri Oct 25 18:05:56 UTC 2024 21.4K bytes -
DerReader.kt
consumed. */ L337: private class CountingSource(source: Source) : ForwardingSource(source) { L338: var bytesRead = 0L L339: L340: override fun read( L341: sink: Buffer, L342: byteCount: Long, L343: ): Long { L344: val result = delegate.read(sink, byteCount) L345: if (result == -1L) return -1L L346: bytesRead += result L347: return result L348: } L349: } L350:}...github.com/square/okhttp/okhttp-tls/src/main/ko...Mon Jan 08 01:13:22 UTC 2024 10.5K bytes -
ImmutableBiMap.java
safe since map is not writable L521: ImmutableBiMap<K, V> bimap = (ImmutableBiMap<K, V>) map; L522: // TODO(lowasser): if we need to make a copy of a BiMap because the L523: // forward map is a view, don't make a copy of the non-view delegate map L524: if (!bimap.isPartialView()) { L525: return bimap; L526: } L527: } L528: return copyOf(map.entrySet()); L529: } L530: L531: /** L532: * Returns an immutable bimap containing the given entries. The returned bimap...github.com/google/guava/android/guava/src/com/g...Wed Oct 16 21:21:17 UTC 2024 22.2K bytes -
RealWebSocket.kt
L156: .header("Upgrade", "websocket") L157: .header("Connection", "Upgrade") L158: .header("Sec-WebSocket-Key", key) L159: .header("Sec-WebSocket-Version", "13") L160: .header("Sec-WebSocket-Extensions", "permessage-deflate") L161: .build() L162: call = RealCall(webSocketClient, request, forWebSocket = true) L163: call!!.enqueue( L164: object : Callback { L165: override fun onResponse( L166: call: Call, L167: response: Response,...github.com/square/okhttp/okhttp/src/main/kotlin...Mon Apr 01 14:21:25 UTC 2024 22.1K bytes -
clipboard.min.js
his.e={}))[t]||[]).slice(),o=0,r=n.length;o<r;o++)n[o].fn.apply(n[o].ctx,e);return this},off:function(t,e){var n=this.e||(this.e={}),o=n[t],r=[];if(o&&e)for(var i=0,a=o.length;i<a;i++)o[i].fn!==e&&o[i].fn._!==e&&r.push(o[i]);return r.length?n[t]=r:delete n[t],this}},t.exports=n},function(t,e,n){var d=n(5),h=n(6);t.exports=function(t,e,n){if(!t&&!e&&!n)throw new Error("Missing required arguments");if(!d.string(e))throw new TypeError("Second argument must be a String");if(!d.fn(n))throw new TypeError("Third...github.com/codelibs/fess/src/main/webapp/js/cli...Sat May 28 04:16:16 UTC 2022 10.5K bytes -
Equivalence.java
L159: public final <S extends @Nullable T> Wrapper<S> wrap(@ParametricNullness S reference) { L160: return new Wrapper<>(this, reference); L161: } L162: L163: /** L164: * Wraps an object so that {@link #equals(Object)} and {@link #hashCode()} delegate to an {@link L165: * Equivalence}. L166: * L167: * <p>For example, given an {@link Equivalence} for {@link String strings} named {@code equiv} L168: * that tests equivalence using their lengths: L169: * L170: * <pre>{@code L171: * ...github.com/google/guava/android/guava/src/com/g...Thu May 16 14:34:47 UTC 2024 13.8K bytes -
MultimapsCollectionTest.java
args) L157: throws Throwable { L158: throw new UnsupportedOperationException(); L159: } L160: }); L161: } L162: L163: @Override L164: protected Multimap<K, V> delegate() { L165: return unusableDelegate; L166: } L167: L168: @Override L169: public boolean put(K key, V value) { L170: map.put(key, value); L171: return true; L172: } L173: L174: SetMultimap<K, V> build() { L175: return...github.com/google/guava/guava-tests/test/com/go...Wed Oct 30 16:15:19 UTC 2024 28.9K bytes -
Hpack.kt
Header, L314: ) { L315: var index = index L316: headerList.add(entry) L317: L318: var delta = entry.hpackSize L319: if (index != -1) { // Index -1 == new header. L320: delta -= dynamicTable[dynamicTableIndex(index)]!!.hpackSize L321: } L322: L323: // if the new or replacement header is too big, drop all entries. L324: if (delta > maxDynamicTableByteCount) { L325: clearDynamicTable() L326: return L327: } L328: L329:...github.com/square/okhttp/okhttp/src/main/kotlin...Mon Jan 08 01:13:22 UTC 2024 22.5K bytes