- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 222 for emptytest (0.21 sec)
-
src/test/java/jcifs/internal/NotifyResponseTest.java
// Test async property assertFalse(response.isAsync()); response.setAsync(true); assertTrue(response.isAsync()); // Test next response property assertNull(response.getNextResponse()); MockNotifyResponse nextResponse = new MockNotifyResponse(Collections.emptyList()); response.setNextResponse(nextResponse);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/collect/testing/MinimalIterableTest.java
assertThrows(IllegalStateException.class, () -> iterable.iterator()); } public void testFrom_empty() { Iterable<String> iterable = MinimalIterable.from(Collections.<String>emptySet()); Iterator<String> iterator = iterable.iterator(); assertFalse(iterator.hasNext()); assertThrows(NoSuchElementException.class, () -> iterator.next());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 2.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java
array[2] = 2; assertThat(iia.asList()).containsExactly(0L, 1L, 3L).inOrder(); } public void testCopyOf_iterable_notCollection_empty() { Iterable<Long> iterable = iterable(Collections.<Long>emptySet()); assertThat(ImmutableLongArray.copyOf(iterable)).isSameInstanceAs(ImmutableLongArray.of()); } public void testCopyOf_iterable_notCollection_nonempty() { List<Long> list = Arrays.asList(0L, 1L, 3L);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.5K bytes - Viewed (0) -
okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt
*/ class HttpLoggingInterceptor @JvmOverloads constructor( private val logger: Logger = Logger.DEFAULT, ) : Interceptor { @Volatile private var headersToRedact = emptySet<String>() @Volatile private var queryParamsNameToRedact = emptySet<String>() @set:JvmName("level") @Volatile var level = Level.NONE enum class Level { /** No logs. */ NONE, /**
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 14:27:04 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KuromojiService.java
kuromojiPager.setPageNumberList(kuromojiList.createPageNumberList()); return (List<KuromojiItem>) kuromojiList; }).orElse(Collections.emptyList()); } /** * Get a Kuromoji file. * * @param dictId The dictionary ID. * @return An optional entity of the Kuromoji file. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionQuery.java
docMetaCQ = new DocMetaCQ(); } return docMetaCQ; } public List<FieldSortBuilder> getFieldSortBuilderList() { return fieldSortBuilderList == null ? Collections.emptyList() : fieldSortBuilderList; } public boolean hasQueries() { return queryBuilderList != null && !queryBuilderList.isEmpty(); } public QueryBuilder getQuery() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/TestProjectBuilder.java
throws ProjectBuildingException { ProjectBuildingResult result = super.build(pomFile, configuration); result.getProject().setRemoteArtifactRepositories(Collections.emptyList()); return result; }Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
stopwordsPager.setPageNumberList(stopwordsList.createPageNumberList()); return (List<StopwordsItem>) stopwordsList; }).orElse(Collections.emptyList()); } /** * Retrieves a stopwords file for a given dictionary ID. * * @param dictId The ID of the dictionary.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SynonymService.java
synonymPager.setPageNumberList(synonymList.createPageNumberList()); return (List<SynonymItem>) synonymList; }).orElse(Collections.emptyList()); } /** * Retrieves a synonym file for a given dictionary ID. * * @param dictId The ID of the dictionary.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/SetsTest.java
public void testCartesianProduct_binary0x0() { Set<Integer> mt = emptySet(); assertEmpty(cartesianProduct(mt, mt)); } public void testCartesianProduct_binary0x1() { Set<Integer> mt = emptySet(); assertEmpty(cartesianProduct(mt, set(1))); } public void testCartesianProduct_binary1x0() { Set<Integer> mt = emptySet(); assertEmpty(cartesianProduct(set(1), mt)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 45.3K bytes - Viewed (0)