- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 3,211 for List (0.02 sec)
-
.teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt
val buckets: List<List<PerformanceTestDuration>> = splitIntoBuckets(list, toIntFunction, largeElementSplitFunction, smallElementAggregateFunction, expectedBucketNumber, Integer.MAX_VALUE, { listOf() }) .filter { it.isNotEmpty() } buckets.mapIndexed { index: Int, classesInBucket: List<PerformanceTestDuration> ->
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Feb 19 11:22:56 UTC 2024 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 20.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/Lists.java
public static <T extends @Nullable Object> List<List<T>> partition(List<T> list, int size) { checkNotNull(list); checkArgument(size > 0); return (list instanceof RandomAccess) ? new RandomAccessPartition<>(list, size) : new Partition<>(list, size); } private static class Partition<T extends @Nullable Object> extends AbstractList<List<T>> { final List<T> list; final int size;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 43.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/SortedListsTest.java
if (list.contains(key)) { assertEquals(list.lastIndexOf(key), answer); return; } break; case ANY_PRESENT: if (list.contains(key)) { assertEquals(key, list.get(answer)); return; } break; case FIRST_AFTER: if (list.contains(key)) { assertEquals(list.lastIndexOf(key) + 1, answer); return; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
final ListResultBean<WebConfig> list = new ListResultBean<>(); list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W1")); list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W2")); list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W3")); return list; } }, WebConfigBhv.class.getCanonicalName());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 23.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
this.source = source; this.profiles = profiles != null ? List.copyOf(profiles) : List.of(); this.activeProfileIds = activeProfileIds != null ? List.copyOf(activeProfileIds) : List.of(); this.inactiveProfileIds = inactiveProfileIds != null ? List.copyOf(inactiveProfileIds) : List.of(); this.systemProperties =
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 13.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java
assertEquals(pageSize, list.size()); assertEquals(allRecordCount, list.getAllRecordCount()); assertEquals(100, list.getAllPageCount()); assertEquals(20, list.getCurrentEndRecordNumber()); assertEquals(2, list.getCurrentPageNumber()); assertEquals(11, list.getCurrentStartRecordNumber()); assertEquals(0, list.getOffset());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 25.6K bytes - Viewed (0) -
dbflute_fess/dfprop/conditionBeanMap.dfprop
#; !GreaterThan = map:{ $$ALL$$ = list:{ $$VersionNo$$ } } #; !LessThan = map:{ $$ALL$$ = list:{ $$VersionNo$$ } } #; !GreaterEqual = map:{ $$ALL$$ = list:{ $$VersionNo$$ } } #; !LessEqual = map:{ $$ALL$$ = list:{ $$VersionNo$$ } } #; !RangeOf = map:{ $$ALL$$ = list:{ $$VersionNo$$ } } #; !InScope = map:{ $$ALL$$ = list:{ $$VersionNo$$ } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 4K bytes - Viewed (0) -
dbflute_fess/dfprop/databaseInfoMap.dfprop
# #; objectTypeTargetList = list:{TABLE ; VIEW} # o tableExceptList: (NotRequired - Default list:{}) # If you want to exclude some tables in generating target, # you should specify the list of excepted table hints. # e.g. list:{PRODUCT_STATUS ; prefix:TMP_} # This is only for the main schema. Additional schemas are unconcerned.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 7.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/PeekingIteratorTest.java
} @Override protected void verify(List<T> elements) { // verify same objects were removed from reference and target assertEquals(elements, targetList); } } private <T extends @Nullable Object> void actsLikeIteratorHelper(final List<T> list) { // Check with modifiable copies of the list new PeekingIteratorTester<T>(list).test(); // Check with unmodifiable lists
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 8.6K bytes - Viewed (0)