- Sort Score
- Result 10 results
- Languages All
Results 3661 - 3670 of 4,322 for nulls (0.57 sec)
-
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 12.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 11.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
* @param millis The maximum time to wait in milliseconds. A value of 0 means wait indefinitely. */ public void awaitTermination(final long millis) { if (parentThread != null) { try { if (logger.isDebugEnabled()) { logger.debug("Waiting for crawler termination: thread={}, timeout={}ms", parentThread.getName(), millis); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java
throwValidationError(messages -> messages.addErrorsFailedToDownloadStopwordsFile(GLOBAL), () -> downloadpage(form.dictId)); return null; }); } // ----------------------------------------------------- // Upload // -------
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.3K bytes - Viewed (0) -
src/test/java/jcifs/SmbWatchHandleTest.java
verify(watchHandle, times(3)).watch(); } /** * Test watch() returning null (cancelled scenario) */ @Test void testWatchReturnsNull() throws CIFSException { // Setup mock behavior when(watchHandle.watch()).thenReturn(null); // Execute List<FileNotifyInformation> result = watchHandle.watch(); // VerifyRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
* * @return A processed string with terms and spaces, or an empty string if the reader is null or an IOException occurs. */ public String execute() { if (reader == null) { return StringUtil.EMPTY; } final StringBuilder buf = new StringBuilder(initialCapacity);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 12K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/RequestCommonTest.kt
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Oct 24 11:36:14 UTC 2025 - 10.9K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/AbstractCache.java
* * @since 11.0 */ /* * <? extends Object> is mostly the same as <?> to plain Java. But to nullness checkers, they * differ: <? extends Object> means "non-null types," while <?> means "all types." */ @Override public ImmutableMap<K, V> getAllPresent(Iterable<? extends Object> keys) { Map<K, V> result = new LinkedHashMap<>(); for (Object key : keys) {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 9.1K bytes - Viewed (0) -
android/guava/src/com/google/common/net/PercentEscaper.java
* character. This has the effect of creating an escaper which has no well-defined inverse but it * can be useful when escaping additional characters. * * @param safeChars a non-null string specifying additional safe characters for this escaper (the * ranges 0..9, a..z and A..Z are always safe and should not be specified here)
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 8.6K bytes - Viewed (0) -
internal/s3select/sql/aggregation.go
} else { return errNonNumericArg(funcName) } } } // Mark that we have seen one non-null value. isFirstRow := false if !e.aggregate.seen { e.aggregate.seen = true isFirstRow = true } switch funcName { case aggFnCount: // For all non-null values, the count is incremented. e.aggregate.runningCount++ case aggFnAvg, aggFnSum: e.aggregate.runningCount++Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sat Dec 23 07:19:11 UTC 2023 - 7.9K bytes - Viewed (0)