- Sort Score
- Result 10 results
- Languages All
Results 701 - 710 of 4,617 for Null (0.02 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java
* without requiring the XML to be parsed. For build sources, this typically * returns {@code null} since the coordinates are determined by parsing the POM. * * @return the model identifier, or {@code null} if not available or not applicable * @since 4.0.0 */ @Nullable default String getModelId() { return null; } /** * Interface for locating POM files within a project structure.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 4.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddTester.java
assertTrue("add(null) should return true", collection.add(null)); expectAdded((E) null); } @CollectionFeature.Require(value = SUPPORTS_ADD, absent = ALLOWS_NULL_VALUES) public void testAdd_nullUnsupported() { assertThrows(NullPointerException.class, () -> collection.add(null)); expectUnchanged(); expectNullMissingWhenNullUnsupported("Should not contain null after unsupported add(null)"); }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java
MavenSession session = new MavenSession( getContainer(), repoSession, new DefaultMavenExecutionRequest(), new DefaultMavenExecutionResult()); session.setSession(defaultSessionFactory.newSession(session)); DefaultSession s = new DefaultSession(session, null, null, null, null, null);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbTreeTest.java
treeResponse.service = "testService"; treeResponse.shareIsInDfs = true; } return null; }).when(session).send(any(ServerMessageBlock.class), any(ServerMessageBlock.class)); // Test tree connect tree.treeConnect(null, null); assertEquals(2, tree.connectionState); assertEquals(456, tree.tid);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
final byte[] unicodeHash) { if (domain == null || username == null || ansiHash == null || unicodeHash == null) { throw new IllegalArgumentException("External credentials cannot be null"); } this.domain = domain; this.username = username; this.password = null; this.challenge = challenge; this.ansiHash = ansiHash;
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/SettingsDecryptionResult.java
* * @return The decrypted server or {@code null}. */ Server getServer(); /** * Gets the decrypted servers. * * @return The decrypted server, can be empty but never {@code null}. */ List<Server> getServers(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/merge/MavenToolchainMerger.java
*/ @Deprecated(since = "4.0.0") public class MavenToolchainMerger { public void merge(PersistedToolchains dominant, PersistedToolchains recessive, String recessiveSourceLevel) { if (dominant == null || recessive == null) { return; } recessive.setSourceLevel(recessiveSourceLevel); shallowMerge(dominant.getToolchains(), recessive.getToolchains(), recessiveSourceLevel); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java
.installationSettingsSource( installationSettingsPath != null && Files.exists(installationSettingsPath) ? Sources.fromPath(installationSettingsPath) : null) .projectSettingsSource( projectSettingsPath != null && Files.exists(projectSettingsPath)
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 9.4K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
// Parse the address, and make sure the length/version is correct. Scope scope = parseScope ? new Scope() : null; byte[] addr = ipStringToBytes(ipString, scope); if (addr == null || addr.length != expectBytes) { return null; } return bytesToInetAddress(addr, (scope != null) ? scope.scope : null); } /**Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
break; } } if (this.authMethod == null) { return null; } NtlmMessage message = authorization != null ? new Type2Message(Base64.decode(authorization)) : null; reconnect(); if (message == null) { message = new Type1Message(this.transportContext);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 25.6K bytes - Viewed (0)