- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 3,735 for Null (0.02 sec)
-
src/main/java/jcifs/smb1/netbios/NbtAddress.java
if (CACHE_POLICY == 0) { return null; } synchronized (ADDRESS_CACHE) { CacheEntry entry = (CacheEntry) ADDRESS_CACHE.get(hostName); if (entry != null && entry.expiration < System.currentTimeMillis() && entry.expiration >= 0) { entry = null; } return entry != null ? entry.address : null; } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ThumbnailQueueDbm.java
protected final ColumnInfo _columnPath = cci("path", "path", null, null, String.class, "path", null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnTarget = cci("target", "target", null, null, String.class, "target", null, false, false, false,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java
void equalsAndHashCode_subjectSemantics() { Kerb5Authenticator a = new Kerb5Authenticator((Subject) null); Kerb5Authenticator b = new Kerb5Authenticator((Subject) null); // Both null subjects -> equal assertEquals(a, b); assertEquals(a.hashCode(), b.hashCode()); // Mixed null/non-null -> not equal Kerb5Authenticator c = new Kerb5Authenticator(new Subject());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeRangeMap.java
return (entry == null) ? null : entry.getValue(); } @Override public @Nullable Entry<Range<K>, V> getEntry(K key) { Entry<Cut<K>, RangeMapEntry<K, V>> mapEntry = entriesByLowerBound.floorEntry(Cut.belowValue(key)); if (mapEntry != null && mapEntry.getValue().contains(key)) { return mapEntry.getValue(); } else { return null; } } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 22.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Tuple5.java
int result = 1; result = prime * result + ((value1 == null) ? 0 : value1.hashCode()); result = prime * result + ((value2 == null) ? 0 : value2.hashCode()); result = prime * result + ((value3 == null) ? 0 : value3.hashCode()); result = prime * result + ((value4 == null) ? 0 : value4.hashCode()); result = prime * result + ((value5 == null) ? 0 : value5.hashCode()); return result; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 6.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CrawlingParameterUtil.java
* If the provided UrlQueueService is null, it removes the current instance from the thread-local variable. * * @param urlQueueService the UrlQueueService instance to be set, or null to remove the current instance */ public static void setUrlQueueService(final UrlQueueService<UrlQueue<?>> urlQueueService) { if (urlQueueService == null) { URL_QUEUE_SERVICE_THREAD_LOCAL.remove();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsFileConfigCQ.java
if (opLambda != null) { opLambda.callback(builder); } } public void setId_NotEqual(String id) { setId_NotTerm(id, null); } public void setId_NotTerm(String id) { setId_NotTerm(id, null); } public void setId_NotEqual(String id, ConditionOptionCall<BoolQueryBuilder> opLambda) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 165.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/FakeRoutePlanner.kt
var tcpConnectDelayNanos = 0L var tcpConnectThrowable: Throwable? = null var yieldBeforeTcpConnectReturns = false var connectTcpNextPlan: FakePlan? = null var tlsConnectDelayNanos = 0L var tlsConnectThrowable: Throwable? = null var connectTlsNextPlan: FakePlan? = null fun createRetry(): FakePlan { check(retry == null) return FakePlan(nextPlanId++) .also { retry = it
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
@Override public String getMimeType(String file) { return null; } @Override public java.util.Set<String> getResourcePaths(String path) { return null; } @Override public java.net.URL getResource(String path) { return null; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
setDomain(domain); setUser(user); if (password == null && passwordHash == null || !nonAnonymous && password != null && password.length() == 0) { setLMResponse(null); setNTResponse(null); return; } if (passwordHash == null) { passwordHash = NtlmUtil.getNTHash(password); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0)