- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 2,843 for projet (0.07 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
initRepoSession(request, configuration); List<MavenProject> projects = new ArrayList<>(); if (pom != null) { MavenProject project = projectBuilder.build(pom, configuration).getProject(); projects.add(project); if (includeModules) { for (String module : project.getModules()) { File modulePom = new File(pom.getParentFile(), module);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
// Create a directory for this project $ mkdir awesome-project // Enter into that project directory $ cd awesome-project ``` </div> ## Create a Virtual Environment When you start working on a Python project **for the first time**, create a virtual environment **<abbr title="there are other options, this is a simple guideline">inside your project</abbr>**. /// tip You only need to do this **once per project**, not every time you work.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 24 03:16:23 UTC 2024 - 21.7K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t09/p0/p2/pom.xml
<build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <configuration> <tasks><echo>${project.parent.basedir}</echo></tasks> </configuration> </plugin> </plugins> </build>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 877 bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t10/p0/p1/pom.xml
<build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <configuration> <tasks><echo>${project.parent.basedir}</echo></tasks> </configuration> </plugin> </plugins> </build>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 877 bytes - Viewed (0) -
.gitignore
/src/main/webapp/WEB-INF/logs/fess* /.settings/ .project .classpath *.iml .idea .vscode .DS_Store /plugins/ /modules/ /tomcat.8080/ dbflute_fess/output/doc/lastadoc-fess.html dbflute_fess/schema/project-lastadoc-fess.json src/main/resources/fess_indices/fess_config.access_token/access_token.bulk src/main/resources/ga_client_secrets.p12 src/main/webapp/WEB-INF/project.properties /.apt_generated/
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 1023 bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java
final List<MavenProject> projects = event.getSession().getProjects(); for (MavenProject project : projects) { int len = lineLength - project.getName().length() - project.getPackaging().length() - 2; logger.info("{}{}[{}]", project.getName(), chars(' ', (len > 0) ? len : 1), project.getPackaging());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.2K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts
currentReleasedVersion = ReleasedVersion( project.findProperty("currentReleasedVersion").toString(), project.findProperty("currentReleasedVersionBuildTimestamp").toString() ) } tasks.register<UpdateReleasedVersions>("updateReleasedVersionsToLatestNightly") { currentReleasedVersion = project.provider {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 18:33:20 UTC 2024 - 2.1K bytes - Viewed (0) -
container-tests/build.gradle.kts
onlyIf("By default not in CI") { System.getenv("CI") == null || (project.hasProperty("containerTests") && project.property("containerTests").toString().toBoolean()) } jvmArgs( "-Dokhttp.platform=$platform", ) if (platform == "loom") { jvmArgs( "-Djdk.tracePinnedThreads=short", ) } val javaToolchains = project.extensions.getByType<JavaToolchainService>()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 17 14:46:34 UTC 2024 - 1.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionResult.java
boolean hasExceptions(); /** * Gets the build summary for the specified project. * * @param project The project to get the build summary for, must not be {@code null}. * @return The build summary for the project or {@code null} if the project has not been built (yet). */ BuildSummary getBuildSummary(MavenProject project); /** * Add the specified build summary. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.cache-miss-monitor.gradle.kts
*/ fun isCacheMissMonitoredTask(task: Task) = task.isCompileCacheMissMonitoredTask() || task.project.isAsciidoctorCacheMissTask() fun Task.isCompileCacheMissMonitoredTask() = isMonitoredCompileTask() && !project.isExpectedCompileCacheMiss() fun Project.isAsciidoctorCacheMissTask() = isMonitoredAsciidoctorTask() && !isExpectedAsciidoctorCacheMiss()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Mar 07 05:49:29 UTC 2024 - 4.6K bytes - Viewed (0)