- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 39 for toSet (0.02 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java
// in first step get parameter names of current goal Set<String> parametersNamesGoal = mojoDescriptor.getParameters().stream() .flatMap(this::getParameterNames) .collect(Collectors.toSet()); Set<String> unknownParameters = getUnknownParameters(mojoExecution, parametersNamesGoal); if (unknownParameters.isEmpty()) { return; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Mar 25 09:45:07 GMT 2025 - 7.3K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt
// Filter out the ghost user that replaces deleted users .filter { it.user.login != "ghost" } .map { it.user.login } .toSet() .map { getUserInfo(it) } .toSet() } private fun <T> invokeGitHubApi(uri: String, klass: Class<T>): T { val request = HttpRequest.newBuilder() .uri(URI(uri))Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Jun 24 07:54:08 GMT 2025 - 5.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java
import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; import java.util.function.Predicate; import static java.util.stream.Collectors.toSet; /** * Container for storing the request from the user to activate or de-activate certain profiles and optionally fail the * build if those profiles do not exist. */ public class ProfileActivation {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 5.6K bytes - Click Count (0) -
build-logic/build.gradle.kts
val rootProperties = readProperties(rootPropertiesFile.asFile) val jvmArgs = listOf(buildLogicProperties, rootProperties).map { it.getProperty("org.gradle.jvmargs") }.toSet() if (jvmArgs.size > 1) { throw GradleException("gradle.properties and build-logic/gradle.properties have different org.gradle.jvmargs " +
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Mar 14 02:17:00 GMT 2025 - 1.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/MavenScopeDependenciesValidator.java
.filter(a -> a.getVersion().startsWith("3.")) .map(a -> a.getGroupId() + ":" + a.getArtifactId() + ":" + a.getVersion()) .collect(Collectors.toSet()); if (!mavenArtifacts.isEmpty()) { pluginValidationManager.reportPluginValidationIssue( PluginValidationManager.IssueLocality.EXTERNAL, session,
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RouteDatabase.kt
* preferred. */ class RouteDatabase { private val _failedRoutes = mutableSetOf<Route>() val failedRoutes: Set<Route> @Synchronized get() = _failedRoutes.toSet() /** Records a failure connecting to [failedRoute]. */ @Synchronized fun failed(failedRoute: Route) { _failedRoutes.add(failedRoute) } /** Records success connecting to [route]. */Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 1.5K bytes - Click Count (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts
val rootModuleComponents = rootDependencies.map { (it as ResolvedDependencyResult).selected.id } val candidateExternalComponents = (rootModuleComponents + externallyAccessible).filterIsInstance<ModuleComponentIdentifier>().toSet() return candidateExternalComponents - locallyAccessibleCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri May 16 18:26:52 GMT 2025 - 4.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/Maven2DependenciesValidator.java
d.getGroupId() + ":" + d.getArtifactId())) .map(Artifact::getVersion) .filter(v -> v.startsWith("2.")) .collect(Collectors.toSet()); if (!maven2Versions.isEmpty()) { pluginValidationManager.reportPluginValidationIssue( PluginValidationManager.IssueLocality.EXTERNAL, session,
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.6K bytes - Click Count (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
functionalTests: List<BaseGradleBuildType>, ) { val splitSubProjectNames = functionalTests.map { it.getSubProjectSplitName() }.toSet() val expectedProjectNames = (1..functionalTests.size).map { "${subProjectName}_$it" }.toSet() assertEquals(expectedProjectNames, splitSubProjectNames) } fun assertCorrectParameters( subProjectName: String,
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 16 01:27:05 GMT 2025 - 14.6K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/BuildScanInfoCollectingServices.kt
parameters.monitoredTaskPaths = allTasks.filter(taskFilter).map { if (isInBuildLogic) ":build-logic${it.path}" else it.path }.toSet() } gradle.serviceOf<BuildEventsListenerRegistry>().onTaskCompletion(buildService)
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Jun 10 05:45:46 GMT 2025 - 3.1K bytes - Click Count (0)