- Sort Score
- Result 10 results
- Languages All
Results 2291 - 2300 of 4,322 for nulls (0.21 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingInfoParam.java
} public void setVersionNo(final Long version) { asDocMeta().version(version); } public OptionalEntity<CrawlingInfo> getCrawlingInfo() { if (crawlingInfo != null) { final CrawlingInfoBhv crawlingInfoBhv = ComponentUtil.getComponent(CrawlingInfoBhv.class); crawlingInfo = crawlingInfoBhv.selectEntity(cb -> {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportConfigurationExpander.java
Reporting reporting = model.getReporting(); if (reporting != null) { for (ReportPlugin reportPlugin : reporting.getPlugins()) { Xpp3Dom parentDom = (Xpp3Dom) reportPlugin.getConfiguration(); if (parentDom != null) { for (ReportSet execution : reportPlugin.getReportSets()) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomPointerFactory.java
object = xpp3Dom.getDom(); } if (object instanceof XmlNode xmlNode) { return new Xpp3DomNodePointer(xmlNode); } return null; } @Override public NodePointer createNodePointer(NodePointer parent, QName name, Object object) { if (object instanceof org.codehaus.plexus.util.xml.Xpp3Dom xpp3Dom) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2K bytes - Viewed (0) -
android/guava/src/com/google/common/escape/UnicodeEscaper.java
} // It is possible for this to return null because nextEscapeIndex() may // (for performance reasons) yield some false positives but it must never // give false negatives. char[] escaped = escape(cp); int nextIndex = index + (Character.isSupplementaryCodePoint(cp) ? 2 : 1); if (escaped != null) { int charsSkipped = index - unescapedChunkStart;Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 15:45:16 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java
assertEquals(expiration, response.getExpiration()); } @Test @DisplayName("Should handle null expiration") void testNullExpiration() { response.setExpiration(null); assertNull(response.getExpiration()); } } @Nested @DisplayName("Async Handling Tests") class AsyncHandlingTests {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java
assertThrows(NullPointerException.class, () -> builder.add((String) null)); } public void testBuilderAddAllHandlesNullsCorrectly() { { ImmutableSortedMultiset.Builder<String> builder = ImmutableSortedMultiset.naturalOrder(); assertThrows(NullPointerException.class, () -> builder.addAll((Collection<String>) null)); } {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 22.7K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueServiceTest.java
.getTotalHits() .value() > 0); } public void test_poll_emptyQueueTx() { final String sessionId = "poll_session1"; // Poll from empty queue should return null final OpenSearchUrlQueue result = urlQueueService.poll(sessionId); assertNull(result); } public void test_poll_singleItemTx() { final String sessionId = "poll_session2";
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:40:57 UTC 2025 - 14.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/extensions/BootstrapCoreExtensionManager.java
UnaryOperator<String> callback = v -> { String r = request.getUserProperties().getProperty(v); if (r == null) { r = request.getSystemProperties().getProperty(v); } return r != null ? r : v; }; return v -> interpolator.interpolate(v, callback); } static class SimpleSession extends DefaultSession {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 13.9K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/AndroidPlatform.kt
} catch (_: InvocationTargetException) { null } } companion object { val Tag = "OkHttp" val isSupported: Boolean = isAndroid && Build.VERSION.SDK_INT in 21 until 29 fun buildIfSupported(): Platform? = if (isSupported) AndroidPlatform() else null }
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Oct 10 05:19:46 UTC 2025 - 6.5K bytes - Viewed (0) -
docs/ru/docs/how-to/separate-openapi-schemas.md
<div class="screenshot"> <img src="/img/tutorial/separate-openapi-schemas/image02.png"> </div> Это означает, что у него **всегда будет какое‑то значение**, просто иногда это значение может быть `None` (или `null` в JSON).
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 30 11:37:11 UTC 2025 - 6.9K bytes - Viewed (0)