- Sort Score
- Num 10 results
- Language All
Results 111 - 120 of 732 for neuer (0.02 seconds)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderResult.java
* * @since 4.0.0 */ @Experimental public interface ToolchainsBuilderResult extends Result<ToolchainsBuilderRequest> { /** * Gets the assembled toolchains. * * @return the assembled toolchains, never {@code null} */ @Nonnull PersistedToolchains getEffectiveToolchains(); /** * Gets the problems that were encountered during the settings building. Note that only problems of severity
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 29 08:17:07 GMT 2025 - 1.8K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java
verifier.verify(logger, calls(1)) .debug("Populating class realm {}", "project>modelGroup1:modelArtifact1:modelVersion1"); verifier.verify(logger, never()).debug(" Included: {}", "group1:artifact1:ext:classifier1:null"); verifier.verify(logger, never()).debug(" Excluded: {}", "group1:artifact2:ext:classifier1:null"); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 7.2K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbFileHandleImplTest.java
// Make invalid beforehand when(tree.isConnected()).thenReturn(false); h.close(); verify(tree, never()).send(isA(Smb2CloseRequest.class), any()); verify(tree, never()).send(any(CommonServerMessageBlockRequest.class), any(SmbComBlankResponse.class), any(RequestParam[].class)); verify(tree, times(1)).release(); } @TestCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 12.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ExecutionEvent.java
ForkedProjectFailed, } /** * Gets the type of the event. * * @return The type of the event, never {@code null}. */ Type getType(); /** * Gets the session from which this event originates. * * @return The current session, never {@code null}. */ MavenSession getSession(); /** * Gets the current project (if any). *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Nov 29 20:53:26 GMT 2024 - 2.5K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionEqualsTester.java
} // A collection should essentially never be equal to a non-collection. @SuppressWarnings("UndefinedEquals") public void testEquals_notACollection() { // noinspection EqualsBetweenInconvertibleTypes assertFalse( "A Collection should never equal an object that is not a Collection.", collection.equals("huh?")); }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Feb 12 21:10:54 GMT 2025 - 2.1K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/CoreExtensions.java
* other logic than that is applied. * * @since 4.0.0 * @param source The source file of core extensions, is never {@code null}. * @param coreExtensions The configured core extensions, is never {@code null}. Contents of list is guaranteed to be unique by GA. * * @see Constants#MAVEN_PROJECT_EXTENSIONS * @see Constants#MAVEN_USER_EXTENSIONSCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Mar 13 12:50:59 GMT 2025 - 1.9K bytes - Click Count (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/Source.java
public interface Source { /** * Gets a byte stream to the source contents. Closing the returned stream is the responsibility of the caller. * * @return A byte stream to the source contents, never {@code null}. * @throws IOException in case of IO issue */ InputStream getInputStream() throws IOException; /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 15 18:51:29 GMT 2025 - 1.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java
* @param root the Maven Dependency, must not be {@code null} * @param scope the {link PathScope} to collect dependencies, must not be {@code null} * @return the collection result, never {@code null} * @throws DependencyResolverException if the dependency tree could not be built * @throws IllegalArgumentException if an argument is null or invalid * @see #collect(DependencyResolverRequest) */Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Oct 16 14:15:37 GMT 2024 - 9.4K bytes - Click Count (0) -
cmd/bitrot.go
return sha256.New() case BLAKE2b512: b2, _ := blake2b.New512(nil) // New512 never returns an error if the key is nil return b2 case HighwayHash256: hh, _ := highwayhash.New(magicHighwayHash256Key) // New will never return error since key is 256 bit return hh case HighwayHash256S: hh, _ := highwayhash.New(magicHighwayHash256Key) // New will never return error since key is 256 bit return hh default:
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 7.7K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HpackTest.kt
assertThat(hpackReader!!.getAndResetHeaderList()).isEqualTo( headerEntries("custom-key", "custom-header"), ) } /** Oldest entries are evicted to support newer ones. */ @Test fun writerEviction() { val headerBlock = headerEntries( "custom-foo", "custom-header", "custom-bar", "custom-header", "custom-baz",
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 38.6K bytes - Click Count (0)