- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 137 for getResource (0.2 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
/** * Gets the source from which the model was read. * * @return The source from which the model was read, never {@code null}. */ @Nonnull ModelSource getSource(); /** * Gets the file model. * * @return the file model, never {@code null}. */ @Nonnull Model getFileModel(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 4.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java
fillMojoDescriptor(session, project, mojoExecution); mojoExecutionConfigurator(mojoExecution) .configure(project, mojoExecution, MojoExecution.Source.CLI.equals(mojoExecution.getSource())); finalizeMojoConfiguration(mojoExecution); calculateForkedExecutions(mojoExecution, session, project, alreadyPlannedExecutions); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 26.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java
} @Override public ModelData intoCache(ModelData data) { Model model = (data.getModel() != null) ? data.getModel().clone() : null; return new ModelData(data.getSource(), model, data.getGroupId(), data.getArtifactId(), data.getVersion()); } @Override public ModelData fromCache(ModelData data) { return intoCache(data); } };Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 3.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblem.java
this.columnNumber = columnNumber; this.modelId = (modelId != null) ? modelId : ""; this.exception = exception; this.version = version; } @Override public String getSource() { return source; } @Override public int getLineNumber() { return lineNumber; } @Override public int getColumnNumber() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java
this.executionId = null; } /** * Gets the source of this execution. * * @return The source of this execution or {@code null} if unknown. */ public Source getSource() { return source; } public String getExecutionId() { return executionId; } public Plugin getPlugin() { if (mojoDescriptor != null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/DefaultProjectBuilderTest.java
public ModelBuilderRequest getRequest() { return null; } // Other required methods with minimal implementations @Override public ModelSource getSource() { return new ModelSource() { @Override public Path getPath() { return Paths.get("test-pom.xml"); } @Override
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 7.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java
this.source = source; this.model = model; setGroupId(groupId); setArtifactId(artifactId); setVersion(version); } public ModelSource getSource() { return source; } /** * Gets the model being wrapped. * * @return The model or {@code null} if not set. */ public Model getModel() { return model;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 5.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphEdge.java
public String getArtifactUri() { return artifactUri; } public void setArtifactUri(String artifactUri) { this.artifactUri = artifactUri; } public MetadataGraphVertex getSource() { return source; } public void setSource(MetadataGraphVertex source) { this.source = source; } public MetadataGraphVertex getTarget() { return target;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 4.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java
assertNotNull(map.get(FieldNames.KINDS)); assertNotNull(map.get(FieldNames.TIMESTAMP)); } @Test public void testGetSource() { // Test getSource method String[] text = { "source", "test" }; String[][] readings = { { "source" }, { "test" } }; String[] fields = { "field1" }; String[] tags = { "tag1" };
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16.7K bytes - Viewed (0)