- Sort Score
- Result 10 results
- Languages All
Results 731 - 740 of 4,617 for Pull (0.05 sec)
-
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
assertThrows(NullPointerException.class, () -> concreteImplementation.combine(null)); } @Test @DisplayName("Should handle null in append") void testAppendWithNull() { // Test with mock doNothing().when(mockReferralData).append(null); assertDoesNotThrow(() -> mockReferralData.append(null));
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 28.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java
* expression from properties only. */ if (value != null && type != null && !(value instanceof String) && !isTypeCompatible(type, value)) { value = null; } if (value == null) { // The CLI should win for defining properties if (properties != null) { // We will attempt to get nab a property as a way to specify a parameterRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 16.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
protected ResponseData processRequest(final String uri, final boolean includeContent) { if (smbAuthenticationHolder == null) { init(); } // start AccessTimeoutTarget accessTimeoutTarget = null; TimeoutTask accessTimeoutTask = null; if (accessTimeout != null) { accessTimeoutTarget = new AccessTimeoutTarget(Thread.currentThread());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.4K bytes - Viewed (3) -
src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeResponseTest.java
assertDoesNotThrow(() -> resp.writeParametersWireFormat(null, 0)); assertDoesNotThrow(() -> resp.writeDataWireFormat(null, 0)); assertDoesNotThrow(() -> resp.readSetupWireFormat(null, 0, 0)); assertDoesNotThrow(() -> resp.readParametersWireFormat(null, 0, 0)); assertDoesNotThrow(() -> resp.readDataWireFormat(null, 0, 0));
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/ConcurrentMapPutIfAbsentTester.java
public void testPutIfAbsent_nullKeyUnsupported() { assertThrows(NullPointerException.class, () -> getMap().putIfAbsent(null, v3())); expectUnchanged(); expectNullKeyMissingWhenNullKeysUnsupported( "Should not contain null key after unsupported putIfAbsent(null, value)"); } @MapFeature.Require(value = SUPPORTS_PUT, absent = ALLOWS_NULL_VALUES)
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 4.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/Exchange.kt
responseDone = true, socketSinkDone = true, socketSourceDone = true, e = null, ) } private fun trackFailure(e: IOException) { hasFailure = true codec.carrier.trackFailure(call, e) } /** If [e] is non-null, this will return a non-null value. */ fun bodyComplete( bytesRead: Long = -1L, isSocket: Boolean, responseDone: Boolean = false,Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Nov 05 18:28:35 UTC 2025 - 10.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/internal/Finalizer.java
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 9.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java
if (artifact == null) { return null; } String version = artifact.getVersion(); if (version == null && artifact.getVersionRange() != null) { version = artifact.getVersionRange().toString(); } Map<String, String> props = null;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 04 18:33:16 UTC 2025 - 15.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java
return project != null && project.getBasedir() != null ? allProjects.computeIfAbsent(project.getId(), id -> new DefaultProject(this, project)) : null; } @Override public List<ArtifactRepository> toArtifactRepositories(List<RemoteRepository> repositories) { return repositories == null ? null : map(repositories, this::toArtifactRepository); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlRequest.java
* * @param method the HTTP method * @throws IllegalArgumentException if method is null */ public CurlRequest(final Method method) { if (method == null) { throw new IllegalArgumentException("method must not be null"); } this.method = method; } /**Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 18.6K bytes - Viewed (0)