- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 659 for directory (0.09 sec)
-
compat/maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-expected.xml
<groupId>inheritance</groupId> <artifactId>child-artifact-id</artifactId> <version>11-SNAPSHOT</version> <name>Model urls inheritance test child</name> <description>Flat directory structure case: module = ../child directory path + child directory path != child-artifact-id</description> <!-- 5 inherited urls with ../${project.artifactId} added to parent --> <url>http://www.apache.org/path/to/parent/../child-artifact-id/</url> <scm>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-parent.xml
<version>11-SNAPSHOT</version> <name>Model urls inheritance test parent</name> <description>Flat directory structure case: module = ../child directory path + child directory path != child-artifact-id</description> <modules> <module>../inheritance</module><!-- current directory == inheritance --> </modules> <!-- 5 urls in the pom will be inherited with path added -->
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/missing-resource-directory-pom.xml
Guillaume Nodet <******@****.***> 1729859506 +0200
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-child.xml
Guillaume Nodet <******@****.***> 1729859506 +0200
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java
this.classifier = classifier; } @Override public String getDirectory() { if (directory == null) { return getPackaging() + "s"; } return directory; } public void setDirectory(final String directory) { this.directory = directory; } @Override public String getPackaging() { if (packaging == null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
internal/store/queuestore.go
} return &QueueStore[I]{ directory: directory, entryLimit: limit, fileExt: ext, entries: make(map[string]int64, limit), } } // Open - Creates the directory if not present. func (store *QueueStore[_]) Open() error { store.Lock() defer store.Unlock() if err := os.MkdirAll(store.directory, os.FileMode(0o770)); err != nil { return err } files, err := store.list()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 8.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
* of the project. * * @return the path of the pom * @see #getBasedir() */ @Nonnull Path getPomPath(); /** * Returns the project base directory, i.e. the directory containing the project. * A project is usually read from the file system and this will point to * the directory containing the POM file. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 7.8K bytes - Viewed (0) -
build-logic-commons/basics/src/test/kotlin/gradlebuild/basics/tasks/PackageListGeneratorIntegrationTest.kt
} private fun someClasses(): Sequence<Path> { val directory = projectDir.resolve("classes") touchFile(directory.resolve("com/acme/Foo.class")) touchFile(directory.resolve("com/acme/internal/FooInternal.class")) touchFile(directory.resolve("com/foo/internal/FooInternal.class")) touchFile(directory.resolve("javax/servlet/http/HttpServletRequest.class"))
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 19:14:16 UTC 2024 - 5K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/IoTestCase.java
if (testFileUrl == null) { throw new RuntimeException("unable to locate testdata directory"); } if (testFileUrl.getProtocol().equals("file")) { try { File testFile = new File(testFileUrl.toURI()); testDir = testFile.getParentFile(); // the testdata directory } catch (Exception ignore) { // probably URISyntaxException or IllegalArgumentException
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 31 12:36:13 UTC 2024 - 5.6K 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)