- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 833 for iterated (0.05 seconds)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/DataService.java
*/ List<RESULT> getAccessResultList(String url, boolean hasData); /** * Iterates over access results for the given session ID and applies the callback. * * @param sessionId the session ID * @param accessResultCallback the callback to apply to each access result */ void iterate(String sessionId, final AccessResultCallback<RESULT> accessResultCallback);Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Mar 15 06:52:00 GMT 2025 - 2.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/LinkedListMultimap.java
* added. The collections generated by {@link #entries()}, {@link #keys()}, and {@link #values} * iterate across the key-value mappings in the order they were added to the multimap. * * <p>The {@link #values()} and {@link #entries()} methods both return a {@code List}, instead of * the {@code Collection} specified by the {@link ListMultimap} interface. *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 27K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/MojoExecutionXPathContainer.java
} public MojoExecutionXPathContainer(MojoExecution mojoExecution) throws IOException { context = JXPathContext.newContext(mojoExecution); } public Iterator<?> getIteratorForXPathExpression(String expression) { return context.iterate(expression); } public boolean containsXPathExpression(String expression) { return context.getValue(expression) != null; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.1K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/harness/PomTestWrapper.java
} public void setValueOnModel(String expression, Object value) { context.setValue(expression, value); } public Iterator<?> getIteratorForXPathExpression(String expression) { return context.iterate(expression); } public boolean containsXPathExpression(String expression) { return context.getValue(expression) != null; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 2.8K bytes - Click Count (0) -
guava/src/com/google/common/collect/ConsumingQueueIterator.java
import com.google.common.annotations.GwtCompatible; import java.util.Queue; import org.jspecify.annotations.Nullable; /** * An Iterator implementation which draws elements from a queue, removing them from the queue as it * iterates. This class is not thread safe. */ @GwtCompatible final class ConsumingQueueIterator<T extends @Nullable Object> extends AbstractIterator<T> { private final Queue<T> queue;
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 1.4K bytes - Click Count (0) -
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
} } return new String(buf); } /** * {@link Iterator} that iterates over {@link DateFormat}s corresponding to the styles held by the locale. * * @author koichik */ protected static class DateFormatIterator implements Iterator<DateFormat> { /** The locale. */ protected final Locale locale;Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 19.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableMultiset.java
} else { return RegularImmutableMultiset.create(entries); } } ImmutableMultiset() {} @Override public UnmodifiableIterator<E> iterator() { Iterator<Entry<E>> entryIterator = entrySet().iterator(); return new UnmodifiableIterator<E>() { int remaining; @Nullable E element; @Override public boolean hasNext() {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 20.6K bytes - Click Count (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
} } return new String(buf); } /** * An {@link Iterator} that iterates over {@link DateFormat} instances corresponding to the styles supported by the locale. * * @author koichik */ protected static class DateFormatIterator implements Iterator<DateFormat> { /** Locale */ protected final Locale locale;Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 20.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
} } return new String(buf); } /** * An {@link Iterator} that iterates over {@link DateFormat} instances corresponding to the styles supported by the locale. * * @author koichik */ protected static class DateFormatIterator implements Iterator<DateFormat> { /** Locale */ protected final Locale locale;Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 20.6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingNavigableMap.java
/** * A sensible definition of {@link #pollFirstEntry} in terms of the {@code iterator} of {@code * entrySet}. If you override {@code entrySet}, you may wish to override {@code pollFirstEntry} to * forward to this implementation. */ protected @Nullable Entry<K, V> standardPollFirstEntry() { return Iterators.pollNext(entrySet().iterator()); } @Override public @Nullable Entry<K, V> pollLastEntry() {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 14.1K bytes - Click Count (0)