- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 20 for forEachRemaining (0.08 seconds)
-
guava/src/com/google/common/collect/CollectSpliterators.java
} @Override public final void forEachRemaining(OutConsumerT action) { if (prefix != null) { prefix.forEachRemaining(action); prefix = null; } from.forEachRemaining( fromElement -> { OutSpliteratorT elements = function.apply(fromElement); if (elements != null) { elements.forEachRemaining(action); } });Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Nov 17 22:50:48 GMT 2025 - 19.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/CollectSpliterators.java
} @Override public final void forEachRemaining(OutConsumerT action) { if (prefix != null) { prefix.forEachRemaining(action); prefix = null; } from.forEachRemaining( fromElement -> { OutSpliteratorT elements = function.apply(fromElement); if (elements != null) { elements.forEachRemaining(action); } });Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 20.5K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java
extends GeneralSpliterator<E> { GeneralSpliteratorOfObject(Spliterator<E> spliterator) { super(spliterator); } @Override void forEachRemaining(Consumer<? super E> action) { spliterator.forEachRemaining(action); } @Override boolean tryAdvance(Consumer<? super E> action) { return spliterator.tryAdvance(action); } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 12.5K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java
extends GeneralSpliterator<E> { GeneralSpliteratorOfObject(Spliterator<E> spliterator) { super(spliterator); } @Override void forEachRemaining(Consumer<? super E> action) { spliterator.forEachRemaining(action); } @Override boolean tryAdvance(Consumer<? super E> action) { return spliterator.tryAdvance(action); } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 12.1K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/RestTestTransformer.java
} } } currentNode.elements() .forEachRemaining(node -> { traverseTest(testContext, node, parentKeyName, objectKeyFinders, arrayByObjectKeyFinders); }); } else if (currentNode.isObject()) { currentNode.fields().forEachRemaining(entry -> { List<RestTestTransformByParentObject> transforms = objectKeyFinders.get(entry.getKey());Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Jul 12 17:42:01 GMT 2021 - 8.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/CollectSpliteratorsTest.java
Multiset<String> multiset = TreeMultiset.create(); multiset.add("a", 3); multiset.add("b", 1); multiset.add("c", 2); List<String> actualValues = new ArrayList<>(); multiset.spliterator().forEachRemaining(actualValues::add); assertThat(multiset).containsExactly("a", "a", "a", "b", "c", "c").inOrder(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 4.1K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ValidateJsonNoKeywordsTask.java
try { final ObjectNode keywordsNode = ((ObjectNode) mapper.readTree(this.jsonKeywords)); keywordsNode.fieldNames().forEachRemaining(eachLanguage -> { keywordsNode.get(eachLanguage).elements().forEachRemaining(e -> { final String eachKeyword = e.textValue();Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 7.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingIterator.java
* href="https://docs.oracle.com/javase/7/docs/api/java/util/Iterator.html">before {@code default} * methods were introduced</a>. For newer methods, like {@code forEachRemaining}, it inherits their * default implementations. When those implementations invoke methods, they invoke methods on the * {@code ForwardingIterator}. * * @author Kevin Bourrillion * @since 2.0 */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 2.1K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/warnings/RemoveWarnings.java
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jul 15 08:50:42 GMT 2021 - 2.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingIterator.java
* href="https://docs.oracle.com/javase/7/docs/api/java/util/Iterator.html">before {@code default} * methods were introduced</a>. For newer methods, like {@code forEachRemaining}, it inherits their * default implementations. When those implementations invoke methods, they invoke methods on the * {@code ForwardingIterator}. * * @author Kevin Bourrillion * @since 2.0 */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 2.1K bytes - Click Count (0)