- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 189 for emptyList (0.05 sec)
-
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java
getPackageExcludes().getOrElse(Collections.emptyList()), getClassIncludes().getOrElse(Collections.emptyList()), getClassExcludes().getOrElse(Collections.emptyList()), getMethodIncludes().getOrElse(Collections.emptyList()), getMethodExcludes().getOrElse(Collections.emptyList()),
Registered: 2024-11-06 11:36 - Last Modified: 2023-04-26 10:58 - 13.3K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java
} }; assertFailure(tester); } public void testSimilarException() { List<Integer> emptyList = emptyList(); IteratorTester<Integer> tester = new IteratorTester<Integer>( 1, MODIFIABLE, emptyList, IteratorTester.KnownOrder.KNOWN_ORDER) { @Override protected Iterator<Integer> newTargetIterator() {
Registered: 2024-11-01 12:43 - Last Modified: 2024-06-11 16:13 - 10.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java
static Lifecycle.Phase phase(String name) { return new DefaultPhase(name, Collections.emptyList(), Collections.emptyList(), Collections.emptyList()); } static Lifecycle.Phase phase(String name, Lifecycle.Phase... phases) { return new DefaultPhase(name, Collections.emptyList(), Collections.emptyList(), asList(phases)); }
Registered: 2024-11-03 03:35 - Last Modified: 2024-10-25 12:31 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/concurrent/DeferredTest.java
Thread th = new Thread(() -> { try { Thread.sleep(1000); } catch (InterruptedException ignore) {} deferred.resolve(new SuggestResponse("", 0, Collections.emptyList(), 0, null)); }); th.start(); final CountDownLatch latch = new CountDownLatch(1); deferred.promise().then(response -> latch.countDown());
Registered: 2024-11-08 09:08 - Last Modified: 2024-02-22 01:36 - 4.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionResult.java
return missingArtifacts != null && !missingArtifacts.isEmpty(); } public List<Artifact> getMissingArtifacts() { return missingArtifacts == null ? Collections.emptyList() : Collections.unmodifiableList(missingArtifacts); } public MetadataResolutionResult addMissingArtifact(Artifact artifact) { missingArtifacts = initList(missingArtifacts);
Registered: 2024-11-03 03:35 - Last Modified: 2024-10-25 12:31 - 9.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java
return missingArtifacts != null && !missingArtifacts.isEmpty(); } public List<Artifact> getMissingArtifacts() { return missingArtifacts == null ? Collections.emptyList() : Collections.unmodifiableList(missingArtifacts); } public ArtifactResolutionResult addMissingArtifact(Artifact artifact) { missingArtifacts = initList(missingArtifacts);
Registered: 2024-11-03 03:35 - Last Modified: 2024-10-25 12:31 - 9.9K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupRootPlugin.kt
} } } project.gradle.serviceOf<BuildEventsListenerRegistry>().onTaskCompletion(testFilesCleanupService) } } private fun Task.findTraceJson(): List<File> { if (this !is Test) { return emptyList() }
Registered: 2024-11-06 11:36 - Last Modified: 2023-07-06 10:57 - 3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/PeekingIteratorTest.java
import static com.google.common.collect.testing.IteratorFeature.MODIFIABLE; import static com.google.common.collect.testing.IteratorFeature.UNMODIFIABLE; import static java.util.Collections.emptyList; import static java.util.Collections.singletonList; import static java.util.Collections.unmodifiableList; import com.google.common.annotations.GwtCompatible; import com.google.common.annotations.GwtIncompatible;
Registered: 2024-11-01 12:43 - Last Modified: 2024-10-30 16:15 - 8.6K bytes - Viewed (0) -
guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java
} }; assertFailure(tester); } public void testSimilarException() { List<Integer> emptyList = emptyList(); IteratorTester<Integer> tester = new IteratorTester<Integer>( 1, MODIFIABLE, emptyList, IteratorTester.KnownOrder.KNOWN_ORDER) { @Override protected Iterator<Integer> newTargetIterator() {
Registered: 2024-11-01 12:43 - Last Modified: 2024-06-11 16:13 - 10.3K bytes - Viewed (0) -
mockwebserver/src/test/java/mockwebserver3/RecordedRequestTest.kt
val socket = FakeSocket( localAddress = InetAddress.getByAddress("127.0.0.1", byteArrayOf(127, 0, 0, 1)), localPort = 80, ) val request = RecordedRequest("GET / HTTP/1.1", headers, emptyList(), 0, Buffer(), 0, socket) assertThat(request.requestUrl.toString()).isEqualTo("http://127.0.0.1/") } @Test fun testIpv6() { val socket = FakeSocket( localAddress =
Registered: 2024-11-01 11:42 - Last Modified: 2024-01-08 01:13 - 3.1K bytes - Viewed (0)