- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 118 for getResource (0.08 seconds)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 5.1K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt
cache[key] ?: return null } catch (_: IOException) { return null // Give up because the cache cannot be read. } val entry: Entry = try { Entry(snapshot.getSource(ENTRY_METADATA)) } catch (_: IOException) { snapshot.closeQuietly() return null } val response = entry.response(snapshot) if (!entry.matches(request, response)) {
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Oct 03 17:41:45 GMT 2025 - 26.8K bytes - Click Count (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) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6.2K bytes - Click Count (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;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 4.8K bytes - Click Count (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
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 7.5K bytes - Click Count (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;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 5.8K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java
tasks.register("checkstyleApi", Checkstyle.class, task -> { task.source(extension.getDocumentedSource()); // TODO: This is ugly task.setConfig(project.getResources().getText().fromFile(checkstyle.getConfigDirectory().file("checkstyle-api.xml"))); task.setClasspath(layout.files());
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 02 14:18:24 GMT 2025 - 10.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
.filter(p -> p.getLocation("version") != null && p.getLocation("version").getSource() != null && defaulModelId.equals( p.getLocation("version").getSource().getModelId())) .distinct() .map(Plugin::getArtifactId) // managed by us, groupId is always o.a.m.plugins
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 13K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
*/ @Deprecated(since = "4.0.0") public List<Resource> getResources() { return getResources(ProjectScope.MAIN); } /** * @deprecated Replaced by {@code getEnabledSourceRoots(ProjectScope.TEST, Language.RESOURCES)}. */ @Deprecated(since = "4.0.0") public List<Resource> getTestResources() { return getResources(ProjectScope.TEST); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Aug 29 12:47:20 GMT 2025 - 67K bytes - Click Count (0)