- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 460 for LOCATION (0.03 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.api.services.xml; public interface Location { /** * Return the line number where the current event ends, * returns -1 if none is available. * @return the current line number */ int getLineNumber(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Mar 25 10:50:01 UTC 2024 - 1.9K bytes - Viewed (0) -
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/MavenPropertiesLoader.java
if (st.countTokens() > 0) { String location; do { location = nextLocation(st); if (location != null) { boolean mandatory = true; if (location.startsWith("?")) { mandatory = false; location = location.substring(1); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 6.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapImage.java
this.caption = caption; } /** * Gets the geographic location of the image. * @return the geographic location */ public String getGeoLocation() { return geoLocation; } /** * Sets the geographic location of the image. * @param geoLocation the geographic location to set */ public void setGeoLocation(final String geoLocation) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 3.8K bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/InputSource.java
return this.modelId; } // -- String getModelId() /** * Set the path/URL of the POM or {@code null} if unknown. * * @param location */ public void setLocation(String location) { this.location = location; } // -- void setLocation( String ) /** * Set the identifier of the POM in the format {@code * <groupId>:<artifactId>:<version>}. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 5.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingException.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jul 26 19:15:57 UTC 2025 - 6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java
} private void addDom(Xpp3Dom parent, String childName, String childValue, InputLocation location) { if (StringUtils.isNotEmpty(childValue)) { parent.addChild(newDom(childName, childValue, location)); } } private Xpp3Dom newDom(String name, String value, InputLocation location) { Xpp3Dom dom = new Xpp3Dom(name, location); dom.setValue(value); return dom;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 9.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java
.goals(List.of(goal)) .configuration(mojo.getConfiguration()) .location("", location) .location("id", location) .location("phase", location) .location("goals", location) .build(); execs.add(execution); if (mojo.getDependencies() != null) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 7.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java
* Constructs a new PathSource with the specified path and location. * * @param path the filesystem path to the source content * @param location the logical location of the source, used for reporting purposes. * If null, the path string representation is used */ protected PathSource(Path path, String location) { this.path = requireNonNull(path, "path").normalize();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 8.2K bytes - Viewed (0)