- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 711 for location (0.09 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 Nov 03 03:35:11 UTC 2024 - 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
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; this.locations = location.getLocations().isEmpty() ? null : location.getLocations().entrySet().stream()
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11.5K bytes - Viewed (0) -
api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 15 13:24:49 UTC 2024 - 6.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlReaderRequest.java
public XmlReaderRequestBuilder modelId(String modelId) { this.modelId = modelId; return this; } public XmlReaderRequestBuilder location(String location) { this.location = location; return this; } public XmlReaderRequestBuilder addDefaultEntities(boolean addDefaultEntities) { this.addDefaultEntities = addDefaultEntities;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Jul 09 12:10:26 UTC 2024 - 6.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/PathSource.java
class PathSource implements ModelSource { private final Path path; private final String location; PathSource(Path path) { this(path, null); } PathSource(Path path, String location) { this.path = path.normalize(); this.location = location != null ? location : this.path.toString(); } @Override public Path getPath() { return path; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Sep 18 11:42:07 UTC 2024 - 2.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelReader.java
return model; } catch (XMLStreamException e) { Location location = e.getLocation(); throw new ModelParseException( e.getMessage(), location != null ? location.getLineNumber() : -1, location != null ? location.getColumnNumber() : -1, e); } catch (Exception e) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.8K 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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlReaderException.java
private final Location location; /** * @param message the message for the exception * @param e the exception itself */ public XmlReaderException(String message, Location location, Exception e) { super(message, e); this.location = location; } public Location getLocation() { return location; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Mar 25 10:50:01 UTC 2024 - 1.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/GeoInfoTest.java
request.setParameter("geo.location.1.point", "34,150"); request.setParameter("geo.location.1.distance", "10km"); request.setParameter("geo.location.2.point", "35,151"); request.setParameter("geo.location.2.distance", "1km"); final GeoInfo geoInfo = new GeoInfo(request); String result =
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.9K bytes - Viewed (0) -
api/maven-api-model/src/main/java/org/apache/maven/api/model/InputSource.java
private final String location; private final List<InputSource> inputs; private final InputLocation importedFrom; public InputSource(String modelId, String location) { this(modelId, location, null); } public InputSource(String modelId, String location, InputLocation importedFrom) { this.modelId = modelId; this.location = location; this.inputs = null;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 15 13:24:49 UTC 2024 - 3.5K bytes - Viewed (0)