- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getLocationURI (0.18 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FileModelSource.java
if (Files.isRegularFile(relatedPom) && Files.isReadable(relatedPom)) { return new FileModelSource(relatedPom.normalize()); } return null; } @Override public URI getLocationURI() { return getFile().toURI(); } @Override public boolean equals(Object obj) { if (this == obj) { return true; }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Apr 14 13:42:17 GMT 2025 - 2.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java
Source rel = source.resolve(relPath); return rel != null ? new SourceWrapper(rel) : null; } @Override public URI getLocationURI() { Path path = source.getPath(); return path != null ? path.toUri() : URI.create(source.getLocation()); } }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Sep 13 09:44:11 GMT 2025 - 8.8K bytes - Click Count (0)