- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 97 for LOCATION (0.11 sec)
-
compat/maven-model/src/main/java/org/apache/maven/model/InputLocation.java
* * @param location the API model InputLocation to convert from */ public InputLocation(org.apache.maven.api.model.InputLocation location) { this.lineNumber = location.getLineNumber(); this.columnNumber = location.getColumnNumber(); this.source = location.getSource() != null ? new InputSource(location.getSource()) : null;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 13.5K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java
InputLocation location = profile.getLocation(""); assertNotNull(location, "Profile location should not be null for profile: " + profile.getId()); assertTrue( location.getLineNumber() > 0, "Profile location line number should be positive, but was: " + location.getLineNumber()
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 33.7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java
if (Files.exists(location)) { load(location); } } public MavenProperties(boolean substitute) { this.substitute = substitute; } public MavenProperties(Path location, boolean substitute) { this.location = location; this.substitute = substitute; } public void load(Path location) throws IOException {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 09:03:48 UTC 2025 - 38.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
if (Files.exists(location)) { load(location); } } public MavenProperties(boolean substitute) { this.substitute = substitute; } public MavenProperties(Path location, boolean substitute) { this.location = location; this.substitute = substitute; } public void load(Path location) throws IOException {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 38.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java
* This method is the converse of {@link #location()}. * * @param location identification of a path in the {@code javax.tool} API * @return Java path type associated to the given location */ public static Optional<JavaPathType> valueOf(JavaFileManager.Location location) { for (JavaPathType type : JavaPathType.values()) { if (location.equals(type.location)) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Dec 15 11:13:42 UTC 2025 - 15.7K bytes - Viewed (1) -
okhttp/src/jvmTest/kotlin/okhttp3/WholeOperationTimeoutTest.kt
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 10.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java
String location = inputLocation.getSource().getLocation(); if (location != null) { if (location.contains("://")) { stringBuilder.append(" (").append(location).append(")"); } else { Path topDirectory = mavenSession.getTopDirectory(); Path locationPath = Paths.get(location).toAbsolutePath().normalize();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:32 UTC 2025 - 17.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
} private static File pickAnyJarFile() throws IOException { for (ClassPath.LocationInfo location : ClassPath.locationsFrom(ClassPathTest.class.getClassLoader())) { if (!location.file().isDirectory() && location.file().exists()) { return location.file(); } } throw new AssertionError("Failed to find a jar file"); }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 21:00:51 UTC 2025 - 23K bytes - Viewed (0) -
android/guava/pom.xml
<location>${project.basedir}/javadoc-link/j2objc-annotations</location> </offlineLink> <offlineLink> <url>https://errorprone.info/api/latest/</url> <location>${project.basedir}/javadoc-link/error_prone_annotations</location> </offlineLink> </offlineLinks> <links>Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 21:36:50 UTC 2025 - 9.8K bytes - Viewed (0) -
fastapi/openapi/docs.py
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 10.1K bytes - Viewed (0)