- Sort Score
- Num 10 results
- Language All
Results 241 - 250 of 732 for neuer (0.04 seconds)
-
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtilsTest.java
String schemaLocation = ModelVersionUtils.getSchemaLocationForModelVersion("5.0.0"); assertNotNull(schemaLocation); // Should return 4.2.0 schema for newer versions // The method returns the 4.2.0 schema location for versions newer than 4.1.0 assertTrue( schemaLocation.contains("4.2.0"), "Expected schema location to contain '4.2.0', but was: " + schemaLocation);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 19.6K bytes - Click Count (0) -
guava/src/com/google/common/util/concurrent/ExecutionSequencer.java
* <p>This class has limited support for cancellation and other "early completions": * * <ul> * <li>While calls to {@code submit} and {@code submitAsync} return a {@code Future} that can be * cancelled, cancellation never propagates to a task that has started to run -- neither to * the callable itself nor to any {@code Future} returned by an {@code AsyncCallable}.
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Sep 23 01:35:55 GMT 2025 - 22.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Result.java
*/ @Experimental @Immutable public interface Result<REQ extends Request<?>> { /** * Returns the request that produced this result. * * @return the originating request instance, never {@code null} */ @Nonnull REQ getRequest();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 29 08:17:07 GMT 2025 - 1.9K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/locator/ModelLocator.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 1.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/rtinfo/RuntimeInformation.java
* * @since 3.0.2 */ public interface RuntimeInformation { /** * Retrieves the current Maven version, for example "3.0.2". * * @return The current Maven version or an empty string if unknown, never {@code null}. */ String getMavenVersion(); /** * Checks whether the current Maven runtime matches the specified version range. A version range can either use theCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.9K bytes - Click Count (0) -
cmd/format-meta.go
// Here "XXXXX" depends on the backend, currently we have "fs" and "xl" implementations. // formatMetaV1 should be inherited by backend format structs. Please look at format-fs.go // and format-xl.go for details. // Ideally we will never have a situation where we will have to change the // fields of this struct and deal with related migration. type formatMetaV1 struct { // Version of the format config. Version string `json:"version"`
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Apr 23 18:58:53 GMT 2021 - 1.7K bytes - Click Count (0) -
src/test/java/jcifs/tests/persistent/HandleInfoTest.java
Thread.sleep(150); } catch (InterruptedException e) { Thread.currentThread().interrupt(); } assertTrue(durableInfo.isExpired()); // Test persistent handle (never expires) HandleInfo persistentInfo = new HandleInfo("/test/file2.txt", new HandleGuid(), testFileId, HandleType.PERSISTENT, 0, null); try { Thread.sleep(50);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 21 04:51:33 GMT 2025 - 4.6K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTest.java
<repositories> <repository> <id>central</id> <url>https://repo1.maven.org/maven2/</url> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <pluginRepositories>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Oct 21 12:17:55 GMT 2025 - 9.3K bytes - Click Count (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/ProblemCollector.java
* their source, but the next messages will use the new source. * * @param source a source */ void setSource(String source); /** * * @return the collected Problems, never {@code null} */ List<Problem> getProblems();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 15 18:51:29 GMT 2025 - 2.1K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingException.java
this.problems.addAll(problems); } } /** * Gets the problems that caused this exception. * * @return The problems that caused this exception, never {@code null}. */ public List<Problem> getProblems() { return problems; } private static String toMessage(List<Problem> problems) { StringWriter buffer = new StringWriter(1024);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 05 09:37:42 GMT 2025 - 2.7K bytes - Click Count (0)