- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for getLocation (0.12 sec)
-
api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java
} public InputSource getSource() { return source; } @Override public InputLocation getLocation(Object key) { return locations != null ? locations.get(key) : null; } public Map<Object, InputLocation> getLocations() { return locations; } /** * Gets the parent InputLocation where this InputLocation may have been imported from.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 7.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlReaderRequest.java
@Nullable Reader getReader(); @Nullable Transformer getTransformer(); boolean isStrict(); @Nullable String getModelId(); @Nullable String getLocation(); boolean isAddDefaultEntities(); interface Transformer { /** * Interpolate the value read from the xml document * * @param source The source value
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Aug 29 12:46:27 UTC 2025 - 6.8K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/DefaultProblem.java
@Override public int getLineNumber() { return lineNumber; } @Override public int getColumnNumber() { return columnNumber; } @Override public String getLocation() { StringBuilder buffer = new StringBuilder(256); if (!getSource().isEmpty()) { if (!buffer.isEmpty()) { buffer.append(", "); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 4.4K bytes - Viewed (0) -
api/maven-api-toolchain/src/main/mdo/toolchains.mdo
</field> </fields> <codeSegments> <codeSegment> <version>1.2.0+</version> <code> @Override public String toString() { return getLocation(); } </code> </codeSegment> </codeSegments> </class> </classes>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 9.5K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
</field> </fields> <codeSegments> <codeSegment> <version>2.0.0+</version> <code> @Override public String toString() { return getLocation(); } </code> </codeSegment> </codeSegments> </class> </classes>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 33.8K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
<codeSegments> <codeSegment> <version>4.0.0+</version> <code> <![CDATA[ @Override public String toString() { return getModelId() + " " + getLocation(); } ]]> </code> </codeSegment> </codeSegments> </class> </classes>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 07 14:32:16 UTC 2025 - 132.7K bytes - Viewed (0) -
cmd/api-response_test.go
}, } for _, testCase := range testCases { t.Run("", func(t *testing.T) { gotLocation := getObjectLocation(testCase.request, testCase.domains, testCase.bucket, testCase.object) if testCase.expectedLocation != gotLocation { t.Errorf("expected %s, got %s", testCase.expectedLocation, gotLocation) } }) } } // Tests getURLScheme function behavior. func TestGetURLScheme(t *testing.T) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 3.5K bytes - Viewed (0)