Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for flatMap (0.07 sec)

  1. 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 Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed May 28 11:34:42 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

                .flatMap { it.functionalTests }
                .filter { it.os == os && !it.testType.crossVersionTests }
                .forEach {
                    buildType(FlakyTestQuarantine(model, stage, it))
                }
    
            model.stages
                .filter { it.stageName <= StageName.READY_FOR_RELEASE }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. 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 Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri May 16 18:26:52 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java

            }
    
            // Check profiles for dependencyManagement
            boolean profileChanges = root.child(PROFILES).stream()
                    .flatMap(profiles -> profiles.children(PROFILE))
                    .map(profile -> profile.child(DEPENDENCY_MANAGEMENT)
                            .flatMap(dm -> dm.child(DEPENDENCIES))
                            .map(deps -> removeManagedDependenciesFromSection(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 27.6K bytes
    - Viewed (0)
  5. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/PluginIdExtensionsFacade.kt

        val memberName: String,
        val pluginId: String,
        val implementationClass: String
    )
    
    
    private
    fun pluginExtensionsFrom(jars: Iterable<File>): Sequence<PluginExtension> =
        jars.asSequence().flatMap(::pluginExtensionsFrom)
    
    
    private
    fun pluginExtensionsFrom(file: File): Sequence<PluginExtension> =
        pluginEntriesFrom(file)
            .asSequence()
            .map { (id, implementationClass) ->
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Jun 28 08:29:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

            val pairs =
                durations.flatMap { scenarioDurations ->
                    val scenario = Scenario.fromTestId(scenarioDurations["scenario"] as String)
                    (scenarioDurations["durations"] as List<Map<String, Any>>).flatMap { duration ->
                        val testProject = duration["testProject"] as String
                        duration.entries
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Jul 10 02:18:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/util/ConfigurationExtensions.kt

            }
            it.firstOrNull()?.asFile
        }
    }
    
    fun NamedDomainObjectProvider<Configuration>.getSingleFileProvider(): Provider<File> {
        return this.flatMap { configuration ->
            configuration.getSingleFileProvider()
        }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 18 18:02:41 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProject.java

        }
    
        @Override
        @Nonnull
        public List<Profile> getEffectiveProfiles() {
            return Stream.iterate(this.project, Objects::nonNull, MavenProject::getParent)
                    .flatMap(project -> project.getModel().getDelegate().getProfiles().stream())
                    .toList();
        }
    
        @Override
        @Nonnull
        public List<Profile> getDeclaredActiveProfiles() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Mar 24 22:23:23 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                String defaulModelId = DefaultLifecycleRegistry.DEFAULT_LIFECYCLE_MODELID;
                List<String> unversionedPlugins = buildPlan
                        .allSteps()
                        .flatMap(step -> step.mojos.values().stream().flatMap(map -> map.values().stream()))
                        .map(MojoExecution::getPlugin)
                        .filter(p -> p.getLocation("version") != null
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/ImmutableBiMapFloodingTest.java

    @NullUnmarked
    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 Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Jul 28 19:11:14 UTC 2025
    - 4.5K bytes
    - Viewed (0)
Back to top