- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 33 for flatMap (0.05 sec)
-
build-logic-settings/build-environment/src/main/kotlin/gradlebuild.build-environment.settings.gradle.kts
buildEnvironmentExtension.gitCommitId = service.flatMap { it.gitCommitId } buildEnvironmentExtension.gitBranch = service.flatMap { it.gitBranch } buildEnvironmentExtension.repoRoot = this@with buildEnvironmentExtension.rootProjectBuildDir = service.flatMap { it.parameters.rootProjectBuildDir } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 26 07:44:12 UTC 2024 - 1.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/PerformanceTestSpec.kt
get() = PerformanceTestType.adHoc override val failsStage: Boolean get() = false val buildSpecs: List<FlameGraphGenerationBuildSpec> get() = scenarios.flatMap { scenario -> Os.values().flatMap { os -> val arch = if (os == Os.MACOS) Arch.AARCH64 else Arch.AMD64 if (os == Os.WINDOWS) { listOf("jprofiler") } else {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 3.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/CollectSpliteratorsTest.java
.expect("A", "B", "C", "D", "E"); } public void testFlatMap() { SpliteratorTester.of( () -> CollectSpliterators.flatMap( Arrays.spliterator(new String[] {"abc", "", "de", "f", "g", ""}), (String str) -> charactersOf(str).spliterator(),
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:20:11 UTC 2024 - 4.1K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java
task.setGroup("release notes"); task.setDescription("Transforms generated release notes."); task.getHtmlFile().convention(releaseNotesMarkdown.flatMap(RenderMarkdown::getDestinationFile)); task.getBaseCssFile().convention(extension.getReleaseNotes().getBaseCssFile()); task.getReleaseNotesCssFile().convention(extension.getReleaseNotes().getReleaseNotesCssFile());
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 26 08:15:16 UTC 2024 - 5.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java
spec.getSourceRoots().from(extension.getKotlinDslSource()); spec.getSourceRoots().from(runtimeExtensions.flatMap(GradleKotlinDslRuntimeGeneratedSources::getGeneratedSources)); spec.getClasspath().from(extension.getClasspath()); spec.getClasspath().from(runtimeExtensions.flatMap(GradleKotlinDslRuntimeGeneratedSources::getGeneratedClasses));
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 7.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
private val buckets: Map<TestCoverage, List<BuildTypeBucket>> by lazy { val uuidToTestCoverage = model.stages.flatMap { it.functionalTests }.associateBy { it.uuid } val testCoverageAndBuckets = JSON.parseArray(testBucketsJson.readText()) as JSONArray testCoverageAndBuckets.associate { testCoverageAndBucket ->
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 12 09:50:29 UTC 2024 - 9K bytes - Viewed (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
} } } } } @Test fun buildsContainFailureConditionForPotentialCredentialsLeaks() { val allBuildTypes = rootProject.subProjects.flatMap { it.buildTypes } allBuildTypes.forEach { val credentialLeakCondition = it.failureConditions.items.find { it.type.equals("BuildFailureOnMessage") } as BuildFailureOnText
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 13.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FluentIterable.java
* iterator supports it. * * <p><b>{@code Stream} equivalent:</b> to concatenate an arbitrary number of streams, use {@code * Stream.of(stream1, stream2, ...).flatMap(s -> s)}. If the sources are iterables, use {@code * Stream.of(iter1, iter2, ...).flatMap(Streams::stream)}. * * @throws NullPointerException if any of the provided iterables is {@code null} * @since 20.0 */ @SafeVarargs
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 24 13:42:31 UTC 2024 - 35.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableBiMapFloodingTest.java
@GwtIncompatible public class ImmutableBiMapFloodingTest extends AbstractHashFloodingTest<BiMap<Object, Object>> { public ImmutableBiMapFloodingTest() { super( EnumSet.allOf(ConstructionPathway.class).stream() .flatMap( path -> Stream.<Construction<BiMap<Object, Object>>>of( keys -> path.create(transform(keys, key -> immutableEntry(key, new Object()))),
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 4.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactManager.java
String id = id(nonNull(artifact, "artifact")); if (session.getMavenSession().getAllProjects() != null) { session.getMavenSession().getAllProjects().stream() .flatMap(this::getProjectArtifacts) .filter(a -> Objects.equals(id, id(a))) .forEach(a -> a.setFile(path != null ? path.toFile() : null)); } if (path == null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0)