- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for sumOf (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
.teamcity/src/main/kotlin/model/BucketExtensions.kt
return noElementSplitFunction(expectedBucketNumber) } if (expectedBucketNumber == 1) { return listOf(smallElementAggregateFunction(list)) } val roughSizeOfEachBucket = list.sumOf(toIntFunction) / expectedBucketNumber if (roughSizeOfEachBucket == 0) { // The elements in the list are so small that they can't even be divided into {expectedBucketNumber}.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 12 09:12:03 GMT 2025 - 5.7K bytes - Click Count (0) -
.teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt
} data class TestProjectDuration( val testProject: String, val scenarioDurations: List<PerformanceTestDuration>, ) { val totalTime: Int = scenarioDurations.sumOf { it.durationInMs } fun split(expectedBucketNumber: Int): List<PerformanceTestBucket> = if (expectedBucketNumber == 1 || scenarioDurations.size == 1) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jan 29 01:37:22 GMT 2026 - 17.2K bytes - Click Count (0)