- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 210 for emptyList (0.05 sec)
-
guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java
actual.getCause().getMessage().contains(message)); } public void testMissingException() { List<Integer> emptyList = new ArrayList<>(); IteratorTester<Integer> tester = new IteratorTester<Integer>( 1, MODIFIABLE, emptyList, IteratorTester.KnownOrder.KNOWN_ORDER) { @Override protected Iterator<Integer> newTargetIterator() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 10.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java
return null; } @Override public List<String> findVersions(org.apache.maven.artifact.Artifact artifact) { return Collections.emptyList(); } @Override public boolean isProjectAware() { return false; } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
import static com.google.common.collect.testing.IteratorFeature.UNMODIFIABLE; import static com.google.common.truth.Truth.assertThat; import static java.util.Arrays.asList; import static java.util.Collections.emptyList; import static java.util.Collections.emptySet; import static java.util.Collections.singleton; import static java.util.Collections.singletonList; import com.google.common.annotations.GwtCompatible;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 18:44:53 UTC 2025 - 56.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultDependencyResolutionResult.java
public List<Exception> getResolutionErrors(Dependency dependency) { List<Exception> errors = resolutionErrors.get(dependency); return (errors != null) ? Collections.unmodifiableList(errors) : Collections.emptyList(); } public void setResolutionErrors(Dependency dependency, List<Exception> errors) { dependencies.add(dependency); unresolvedDependencies.add(dependency);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 3.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueServiceTest.java
} public void test_offerAll_emptyListTx() { final String sessionId = "offer_session1"; final List<OpenSearchUrlQueue> emptyList = new ArrayList<>(); // Should not throw exception urlQueueService.offerAll(sessionId, emptyList); // Verify no items were added final OpenSearchUrlQueue polled = urlQueueService.poll(sessionId); assertNull(polled); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:40:57 UTC 2025 - 14.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt
} private fun getSubjectAltNames( certificate: X509Certificate, type: Int, ): List<String> { try { val subjectAltNames = certificate.subjectAlternativeNames ?: return emptyList() val result = mutableListOf<String>() for (subjectAltName in subjectAltNames) { if (subjectAltName == null || subjectAltName.size < 2) continue if (subjectAltName[0] != type) continue
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/exception/ExceptionSummary.java
this.message = (message != null) ? message : ""; this.reference = (reference != null) ? reference : ""; this.children = (children != null) ? Collections.unmodifiableList(children) : Collections.emptyList(); } public Throwable getException() { return exception; } public String getMessage() { return message; } public String getReference() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.1K bytes - Viewed (0) -
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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocExtensionsBuilder.java
PropertyDoc propertyDoc = new PropertyDoc(propertyMetaData, Collections.singletonList(para), Collections.<ExtraAttributeDoc>emptyList()); extensionDoc.getExtraProperties().add(propertyDoc); para = doc.createElement("para"); para.appendChild(doc.createTextNode("Configures the "));Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.9K bytes - Viewed (0)