- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 73 for getSources (0.25 sec)
-
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) -
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)) {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Oct 03 17:41:45 UTC 2025 - 26.8K bytes - Viewed (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
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 13K bytes - Viewed (0) -
api/maven-api-toolchain/src/main/mdo/toolchains.mdo
<codeSegments> <codeSegment> <version>1.2.0+</version> <code> @Override public String toString() { return getLineNumber() + " : " + getColumnNumber() + ", " + getSource(); } </code> </codeSegment> </codeSegments> </class> <class sourceTracker="source"> <name>InputSource</name> <version>1.2.0+</version> <fields>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 9.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt
fun removeAbsentElement() { cache.remove("a") } @Test fun readingTheSameStreamMultipleTimes() { set("a", "a", "b") val snapshot = cache["a"]!! assertThat(snapshot.getSource(0)).isSameAs(snapshot.getSource(0)) snapshot.close() } @Test fun rebuildJournalOnRepeatedReads() { set("a", "a", "a") set("b", "b", "b") while (taskFaker.isIdle()) {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Nov 01 12:18:11 UTC 2025 - 59.4K bytes - Viewed (0) -
cmd/ftp-server-driver.go
"login": fmt.Sprintf("%t", s.Sess.IsLogin()), "source": source, }, } } func (m *ftpMetrics) log(s *ftp.Context, paths ...string) func(sz int64, err error) { startTime := time.Now() source := getSource(2) return func(sz int64, err error) { globalTrace.Publish(ftpTrace(s, startTime, source, strings.Join(paths, " "), err, sz)) } } // Stat implements ftpDriver
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 14.3K bytes - Viewed (0)