Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 165 for FlatMap (0.12 sec)

  1. build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report.gradle.kts

        reportTask {
            sources.from(kotlinMainSourceSet.sourceDirectories)
        }
    }
    
    tasks.named("check") { dependsOn(reportTask) }
    
    consumableVariant("txt", reportTask.flatMap { it.textReportFile })
    consumableVariant("html", reportTask.flatMap { it.htmlReportFile })
    
    fun consumableVariant(reportType: String, artifact: Provider<RegularFile>) = configurations.create("incubatingReport${reportType.capitalize()}") {
        isVisible = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 13:19:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. 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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 14:00:14 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

            }
    
            // second step get parameter names of all plugin goals
            Set<String> parametersNamesAll = mojoDescriptor.getPluginDescriptor().getMojos().stream()
                    .flatMap(m -> m.getParameters().stream())
                    .flatMap(this::getParameterNames)
                    .collect(Collectors.toSet());
    
            unknownParameters = getUnknownParameters(mojoExecution, parametersNamesAll);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinCompositeDeclarationProvider.kt

        }
    
        override fun getAllClassesByClassId(classId: ClassId): Collection<KtClassOrObject> {
            return providers.flatMap { it.getAllClassesByClassId(classId) }
        }
    
        override fun getAllTypeAliasesByClassId(classId: ClassId): Collection<KtTypeAlias> {
            return providers.flatMap { it.getAllTypeAliasesByClassId(classId) }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplier.java

                "SOFTWARE\\Wow6432Node\\JavaSoft\\Java Development Kit",
                "SOFTWARE\\Wow6432Node\\JavaSoft\\Java Runtime Environment"
            ).stream().map(this::findJvms).flatMap(List::stream);
            return Stream.concat(openJdkInstallations, jvms)
                .map(javaHome -> InstallationLocation.autoDetected(new File(javaHome), getSourceName()))
                .collect(Collectors.toSet());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/parsingUtil.kt

            when (currentFailures.size) {
                0 -> evaluate(object : CheckBarrierContext {})
                1 -> currentFailures.single()
                else -> MultipleFailuresResult(currentFailures.flatMap { if (it is MultipleFailuresResult) it.failures else listOf(it as SingleFailureResult) })
            }
    
        fun <T> syntacticIfNoFailures(evaluate: CheckBarrierContext.() -> SyntacticResult<T>): SyntacticResult<T> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. .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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. build-logic/packaging/src/main/kotlin/gradlebuild/shade/tasks/ShadedJar.kt

                        jarOutputStream.addJarEntry(relativePath, it)
                    }
                }
            }
        }
    
        private
        fun readEntryPoints() = entryPointsConfiguration.files.flatMap { readJson<List<String>>(it) }
    
        private
        fun readClassTrees() = classTreesConfiguration.files.map { readJson<Map<String, List<String>>>(it) }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 10:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

                    )
                }
            }
    
            val firScopes = towerDataElementsIndexed.flatMap { (index, towerDataElement) ->
                val availableScopes = towerDataElement
                    .getAvailableScopes { coneType -> withSyntheticPropertiesScopeOrSelf(coneType) }
                    .flatMap { flattenFirScope(it) }
                availableScopes.map { IndexedValue(index, it) }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

            val declarationGenerators = session.extensionService.declarationGenerators
    
            val generatedTopLevelClassifiers = declarationGenerators
                .asSequence()
                .flatMap {
                    // FIXME this function should be called only once during plugin's lifetime, so this usage is not really correct (2)
                    it.getTopLevelClassIds()
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top