- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 186 for Ordered (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
guava/src/com/google/common/collect/MultimapBuilder.java
} }; } /** Uses an insertion-ordered hash-based {@code Set} to store value collections. */ public SetMultimapBuilder<K0, @Nullable Object> linkedHashSetValues() { return linkedHashSetValues(DEFAULT_EXPECTED_VALUES_PER_KEY); } /** * Uses an insertion-ordered hash-based {@code Set} to store value collections, initialized toCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 18K bytes - Click Count (0) -
guava/src/com/google/common/collect/LinkedHashMultimap.java
return Spliterators.spliterator( entries(), Spliterator.DISTINCT | Spliterator.ORDERED | Spliterator.NONNULL); } @Override Iterator<V> valueIterator() { return Maps.valueIterator(entryIterator()); } @Override Spliterator<V> valueSpliterator() { return CollectSpliterators.map(entrySpliterator(), Spliterator.ORDERED, Entry::getValue); } /**
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:08:09 GMT 2025 - 20K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
cb.query().addOrderBy_CreatedTime_Asc(); // search } /** * Retrieves a list of all available related content entities. * Results are ordered by term and limited by the configured maximum fetch size. * * @return a list of all available RelatedContent entities */ public List<RelatedContent> getAvailableRelatedContentList() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
} load(); } /** * Retrieves a list of all available related query entities from the data store. * The results are ordered by term and limited by the configured maximum fetch size. * * @return a list of RelatedQuery entities containing all available related queries */ public List<RelatedQuery> getAvailableRelatedQueryList() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 5.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
// setup condition cb.query().addOrderBy_Name_Asc(); // search } /** * Retrieves all available groups ordered by name in ascending order. * Limited by the configured maximum fetch size for groups. * * @return a list of all available groups */ public List<Group> getAvailableGroupList() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.7K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/EndpointPairIterator.java
return false; } node = nodeIterator.next(); successorIterator = graph.successors(node).iterator(); return true; } /** * If the graph is directed, each ordered [source, target] pair will be visited once if there is * an edge connecting them. */ private static final class Directed<N> extends EndpointPairIterator<N> { private Directed(BaseGraph<N> graph) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 4.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/SignedBytesTest.java
assertThat(SignedBytes.join(",", (byte) -128, (byte) -1)).isEqualTo("-128,-1"); } @J2ktIncompatible // b/285319375 public void testLexicographicalComparator() { List<byte[]> ordered = Arrays.asList( new byte[] {}, new byte[] {LEAST}, new byte[] {LEAST, LEAST}, new byte[] {LEAST, (byte) 1}, new byte[] {(byte) 1},
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 11 20:45:32 GMT 2025 - 7K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/package-info.java
* instance of {@code BiMap}. * <dt>{@link Table} * <dd>A new type, which is similar to {@link java.util.Map}, but which indexes its values by an * ordered pair of keys, a row key and column key. * <dt>{@link Multiset} * <dd>An extension of {@link java.util.Collection} that may contain duplicate values like aCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 14:50:24 GMT 2024 - 5K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 12.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/graph/ValueGraphTest.java
assertThat(graph.hasEdgeConnecting(EndpointPair.ordered(1, 2))).isFalse(); assertThat(graph.hasEdgeConnecting(EndpointPair.ordered(2, 1))).isFalse(); } @Test public void edgeValueOrDefault_directed_correct() { graph = ValueGraphBuilder.directed().build(); graph.putEdgeValue(1, 2, "A"); assertThat(graph.edgeValueOrDefault(EndpointPair.ordered(1, 2), "default")).isEqualTo("A"); } @Test
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 19:26:39 GMT 2026 - 17.9K bytes - Click Count (0)