- Sort Score
- Result 10 results
- Languages All
Results 671 - 680 of 681 for delete (0.04 sec)
-
AbstractFutureTest.java
// unlike the above this indirection defeats the trivial cycle detection and causes a SOE L992: orig.setFuture( L993: new ForwardingListenableFuture<Object>() { L994: @Override L995: protected ListenableFuture<Object> delegate() { L996: return orig; L997: } L998: }); L999: assertThat(orig.toString()) L1000: .contains("Exception thrown from implementation: class java.lang.StackOverflowError"); L1001: } L1002: L1003: // Regression test...github.com/google/guava/android/guava-tests/tes...Fri Oct 18 22:10:29 UTC 2024 47.1K bytes -
ImmutableBiMap.java
safe since map is not writable L537: ImmutableBiMap<K, V> bimap = (ImmutableBiMap<K, V>) map; L538: // TODO(lowasser): if we need to make a copy of a BiMap because the L539: // forward map is a view, don't make a copy of the non-view delegate map L540: if (!bimap.isPartialView()) { L541: return bimap; L542: } L543: } L544: return copyOf(map.entrySet()); L545: } L546: L547: /** L548: * Returns an immutable bimap containing the given entries. The returned bimap...github.com/google/guava/guava/src/com/google/co...Wed Oct 30 16:15:19 UTC 2024 22.6K bytes -
ListsTest.java
L854: return realDelegate.size(); L855: } L856: L857: @Override L858: public ListIterator<E> listIterator(int index) { L859: return realDelegate.listIterator(index); L860: } L861: L862: @Override L863: protected List<E> delegate() { L864: throw new UnsupportedOperationException("This list only supports ListIterator"); L865: } L866: } L867: L868: private static void assertTransformIterator(List<String> list) { L869: Iterator<String> iterator = list.iterator();...github.com/google/guava/android/guava-tests/tes...Wed Oct 30 16:15:19 UTC 2024 35K bytes -
ListsTest.java
L854: return realDelegate.size(); L855: } L856: L857: @Override L858: public ListIterator<E> listIterator(int index) { L859: return realDelegate.listIterator(index); L860: } L861: L862: @Override L863: protected List<E> delegate() { L864: throw new UnsupportedOperationException("This list only supports ListIterator"); L865: } L866: } L867: L868: private static void assertTransformIterator(List<String> list) { L869: Iterator<String> iterator = list.iterator();...github.com/google/guava/guava-tests/test/com/go...Wed Oct 30 16:15:19 UTC 2024 35K bytes -
IterablesTest.java
queue) { L1186: this.queue = queue; L1187: } L1188: L1189: @Override L1190: public Iterator<T> iterator() { L1191: throw new UnsupportedOperationException(); L1192: } L1193: L1194: @Override L1195: protected Queue<T> delegate() { L1196: return queue; L1197: } L1198: } L1199: L1200: public void testIndexOf_empty() { L1201: List<String> list = new ArrayList<>(); L1202: assertEquals(-1, Iterables.indexOf(list, equalTo(""))); L1203: } L1204: L1205: public...github.com/google/guava/android/guava-tests/tes...Wed Oct 30 19:12:33 UTC 2024 45K bytes -
TypeTokenTest.java
Exception { L1441: class Bar<T> {} L1442: class SubBar<T> extends Bar<T> { L1443: @SuppressWarnings("unused") L1444: Bar<T> delegate; L1445: L1446: TypeToken<SubBar<T>> fieldTypeAsSubBar() { L1447: return new TypeToken<SubBar<T>>() {}; L1448: } L1449: } L1450: L1451: Field delegateField = SubBar.class.getDeclaredField("delegate"); L1452: // barType is Bar<T>, a ParameterizedType with no generic arguments specified L1453: TypeToken<?> barType = TypeToken.o...github.com/google/guava/android/guava-tests/tes...Mon Oct 21 21:13:09 UTC 2024 89.1K bytes -
Iterators.java
iterator.remove(); L1012: return next; L1013: } L1014: L1015: @Override L1016: public String toString() { L1017: return "Iterators.consumingIterator(...)"; L1018: } L1019: }; L1020: } L1021: L1022: /** L1023: * Deletes and returns the next value from the iterator, or returns {@code null} if there is no L1024: * such value. L1025: */ L1026: @CheckForNull L1027: static <T extends @Nullable Object> T pollNext(Iterator<T> iterator) { L1028: if (iterator.hasNext())...github.com/google/guava/android/guava/src/com/g...Wed Oct 30 16:15:19 UTC 2024 50.3K bytes -
jquery-3.7.1.min.map
offset","setOffset","curPosition","curLeft","curCSSTop","curTop","curOffset","curCSSLeft","curElem","using","rect","win","pageYOffset","pageXOffset","offsetParent","parentOffset","scrollTo","Height","Width","","defaultExtra","funcName","unbind","delegate","undelegate","hover","fnOver","fnOut","rtrim","proxy","holdReady","hold","parseJSON","isNumeric","isNaN","trim","define","amd","_jQuery","_$","$","noConflict"],"mappings":";CAUA,SAAYA,EAAQC,GAEnB,aAEuB,iBAAXC,QAAiD,iBAAnBA,OAAOC,QAShDD,OAAOC,QA...github.com/codelibs/fess/src/main/webapp/js/jqu...Sat Oct 26 01:07:52 UTC 2024 131.6K bytes -
changelog_3x.md
L91: silently leak connections when an interceptor retries without closing the response body. With L92: 3.14 we detect this problem but the exception was not helpful. L93: L94:## Version 3.14.0 L95: L96:_2019-03-14_ L97: L98: * **This release deletes the long-deprecated `OkUrlFactory` and `OkApacheClient` APIs.** These L99: facades hide OkHttp's implementation behind another client's API. If you still need this please L100: copy and paste [ObsoleteUrlFactory.java][obsolete_url_factory] or...github.com/square/okhttp/docs/changelogs/change...Sun Feb 06 14:55:54 UTC 2022 50.8K bytes -
popper.min.js.map
/**\n * Applies the computed styles to the popper element.\n *\n * All the DOM manipulations are limited to this modifier. This is useful in case\n * you want to integrate Popper.js inside a framework or view library and you\n * want to delegate all the DOM manipulations to it.\n *\n * Note that if you disable this modifier, you must make sure the popper element\n * has its position set to `absolute` before Popper.js can do its work!\n *\n * Just disable this modifier and define...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 120.9K bytes