- Sort Score
- Result 10 results
- Languages All
Results 2041 - 2050 of 3,735 for Null (0.02 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/ServerTruncatesRequestTest.kt
// Confirm that the connection pool was not corrupted by making another call. makeSimpleCall() } /** * If the server returns a full response, it doesn't really matter if the HTTP/2 stream is reset. * Attempts to write the request body fails fast. */ @Test fun serverTruncatesRequestHttp2OnDuplexRequest() { enableProtocol(Protocol.HTTP_2)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SearchHelperTest.java
} @Override public GeoInfo getGeoInfo() { return null; } @Override public FacetInfo getFacetInfo() { return null; } @Override public HighlightInfo getHighlightInfo() { return null; } @Override public String getSort() { return sort;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
} // Test edge cases public void test_addQuery_withNullValues() { facetQueryView.addQuery(null, "query1"); assertEquals("query1", facetQueryView.getQueryMap().get(null)); facetQueryView.addQuery("key1", null); assertNull(facetQueryView.getQueryMap().get("key1")); } public void test_init_multipleCallsShouldNotDuplicate() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformer.java
*/ protected String charsetName = Constants.UTF_8; /** * Class type to be returned by the {@link #getData(AccessResultData)} method. Defaults to null, which returns XML content * as a String. */ protected Class<?> dataClass = null; @Override protected void storeData(final ResponseData responseData, final ResultData resultData) { final DOMParser parser = getDomParser();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 13.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularContiguousSet.java
@Override protected @Nullable C computeNext(C previous) { return equalsOrThrow(previous, first) ? null : domain.previous(previous); } }; } private static boolean equalsOrThrow(Comparable<?> left, @Nullable Comparable<?> right) { return right != null && Range.compareOrThrow(left, right) == 0; } @Override boolean isPartialView() { return false; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/TimeConversionUtilTest.java
} @After public void tearDown() throws Exception { LocaleUtil.setDefault(null); } /** * @throws Exception */ @Test public void testToDate_Null() throws Exception { assertThat(toDate(null), is(nullValue())); } /** * @throws Exception */ @Test
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java
result = 37 * result + getArtifactId().hashCode(); result = 37 * result + getType().hashCode(); if (getVersion() != null) { result = 37 * result + getVersion().hashCode(); } result = 37 * result + (getClassifier() != null ? getClassifier().hashCode() : 0); return result; } /** {@inheritDoc} */ @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
this.requestSemaphore = backpressureEnabled ? new Semaphore(maxConcurrentRequests, true) : null; // Initialize scheduler for dynamic threshold adjustment this.scheduler = dynamicThresholdEnabled ? Executors.newScheduledThreadPool(1, r -> new Thread(r, "SmbCircuitBreaker-" + name)) : null; // Start dynamic threshold adjustment if enabled if (dynamicThresholdEnabled) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/FacetResponse.java
}); } /** * Checks if this response contains any facet information. * * @return true if either query count map or field list is not null */ public boolean hasFacetResponse() { return queryCountMap != null || fieldList != null; } /** * Represents a field facet with its name and value counts. * Each field facet contains multiple values with their respective document counts.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0)