- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 2,883 for Project (0.06 sec)
-
docs/distributed/samples/bootstrap-partial.ldif
ou: groups description: groups branch # Create project groups dn: cn=projectx,ou=groups,ou=hwengg,dc=min,dc=io objectclass: groupofnames cn: projectx description: Project X group members member: uid=alice1,ou=people,ou=hwengg,dc=min,dc=io member: uid=bobfisher,ou=people,ou=hwengg,dc=min,dc=io dn: cn=projecty,ou=groups,ou=hwengg,dc=min,dc=io objectclass: groupofnames cn: projecty description: Project Y group members
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 15:59:00 UTC 2024 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
* is a prerequisite of the given project. * * @param project The project whose upstream projects should be retrieved, must not be {@code null}. * @param transitive A flag whether to retrieve all direct and indirect upstream projects or just the immediate * upstream projects.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
build.gradle.kts
} } } } /** Configure building for Java+Kotlin projects. */ subprojects { val project = this@subprojects if (project.name == "okhttp-bom") return@subprojects if (project.name == "okhttp-android") return@subprojects if (project.name == "android-test") return@subprojects if (project.name == "regression-test") return@subprojects if (project.name == "android-test-app") return@subprojects
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Jun 23 17:02:02 UTC 2024 - 9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
return Collections.unmodifiableMap( new PropertiesAsMap(((DefaultProject) project).getProject().getProperties())); } @Override public Optional<Project> getExecutionProject(Project project) { // Session keep tracks of the Project per project id, // so we cannot use session.getProject(p) for forked projects
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
* filtering. This causes build ordering issues in concurrent builders. */ private List<MavenProject> applyFilter( Collection<? extends MavenProject> projects, boolean transitive, boolean upstream) { List<MavenProject> filtered = new ArrayList<>(projects.size()); for (MavenProject project : projects) { if (whiteList.containsKey(project)) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java
* from any repository but are present among the set of specified projects will not cause an exception. Instead, * those unresolved artifacts will be returned in the result set, allowing the caller to take special care of * artifacts that haven't been build yet. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/DefaultProjectDependenciesResolver.java
for (MavenProject project : projects) { request.setArtifact(new ProjectArtifact(project)); request.setArtifactDependencies(project.getDependencyArtifacts()); request.setManagedVersionMap(project.getManagedVersionMap()); request.setRemoteRepositories(project.getRemoteArtifactRepositories());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java
* @param time The build time of the project in milliseconds. * @param cause The cause of the build failure, may be {@code null}. */ public BuildFailure(MavenProject project, long time, Throwable cause) { this(project, time, time, cause); } /** * Creates a new build summary for the specified project. * * @param project The project being summarized, must not be {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDslReferencePlugin.java
*/ public class GradleDslReferencePlugin implements Plugin<Project> { @Override public void apply(Project project) { ProjectLayout layout = project.getLayout(); TaskContainer tasks = project.getTasks(); ObjectFactory objects = project.getObjects(); GradleDocumentationExtension extension = project.getExtensions().getByType(GradleDocumentationExtension.class);
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 5.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/locator/ModelLocator.java
/** * Locates the POM file within the specified project directory. In case the given project directory does not exist * or does not contain a POM file, the return value indicates the expected path to the POM file. Subdirectories of * the project directory will not be considered when locating the POM file. The return value will be an absolute * path if the project directory is given as an absolute path. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0)