- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 211 for emptytest (0.04 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
// When this happens we have a Maven 1.x POM, or some invalid POM. // It should have never found its way into Maven 2.x repository, but it did. dependencies = Collections.emptyList(); } else { dependencies = rel.project.getModel().getDependencies(); DependencyManagement depMgmt = rel.project.getModel().getDependencyManagement();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 10:49:22 UTC 2025 - 30.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultimapReplaceValuesTester.java
} @SuppressWarnings("EmptyList") // ImmutableList doesn't support nullable element types @MapFeature.Require({SUPPORTS_PUT, SUPPORTS_REMOVE}) public void testReplaceValuesWithEmpty() { int size = multimap().size(); List<V> oldValues = new ArrayList<>(multimap().get(k0())); List<V> values = emptyList();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Apr 12 15:07:59 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/WebConfigTest.java
@Override public List<WebAuthentication> getWebAuthenticationList(final String webConfigId) { return Collections.emptyList(); } }; ComponentUtil.register(webAuthenticationService, WebAuthenticationService.class.getCanonicalName()); RequestHeaderService requestHeaderService = new RequestHeaderService() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/IteratorFeature.java
* limitations under the License. */ package com.google.common.collect.testing; import static java.util.Arrays.asList; import static java.util.Collections.emptySet; import static java.util.Collections.unmodifiableSet; import com.google.common.annotations.GwtCompatible; import java.util.Iterator; import java.util.LinkedHashSet; import java.util.ListIterator;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Oct 03 18:22:43 UTC 2023 - 1.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
val specificBuilds: List<SpecificBuild> = emptyList(), val functionalTests: List<TestCoverage> = emptyList(), val docsTests: List<DocsTestCoverage> = emptyList(), val performanceTests: List<PerformanceTestCoverage> = emptyList(), val performanceTestPartialTriggers: List<PerformanceTestPartialTrigger> = emptyList(), val flameGraphs: List<FlameGraphGeneration> = emptyList(), val trigger: Trigger = Trigger.NEVER,
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Sun Aug 03 22:40:28 UTC 2025 - 25.9K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/RegularImmutableList.java
import static java.util.Collections.emptyList; import static java.util.Collections.unmodifiableList; import java.util.List; /** * GWT emulated version of {@link RegularImmutableList}. * * @author Hayward Chan */ final class RegularImmutableList<E> extends ForwardingImmutableList<E> { static final ImmutableList<Object> EMPTY = new RegularImmutableList<Object>(emptyList()); private final List<E> delegate;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 14:59:07 UTC 2025 - 1.3K bytes - Viewed (0) -
okhttp-java-net-cookiejar/src/main/kotlin/okhttp3/java/net/cookiejar/JavaNetCookieJar.kt
cookieHandler.get(url.toUri(), emptyMap<String, List<String>>()) } catch (e: IOException) { Platform.get().log("Loading cookies failed for " + url.resolve("/...")!!, WARN, e) return emptyList() } var cookies: MutableList<Cookie>? = null for ((key, value) in cookieHeaders) { if (("Cookie".equals(key, ignoreCase = true) || "Cookie2".equals(key, ignoreCase = true)) &&
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 3.8K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java
} catch (IllegalArgumentException e) { return emptySet(comparator()); } } public ImmutableSortedSet<E> tailSet(E fromElement, boolean inclusive) { checkNotNull(fromElement); if (!inclusive) { E tmp = higher(fromElement); if (tmp == null) { return emptySet(comparator()); } fromElement = tmp; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 15.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetFeature.java
* See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect.testing.google; import static java.util.Collections.emptySet; import com.google.common.annotations.GwtCompatible; import com.google.common.collect.Multiset; import com.google.common.collect.testing.features.Feature; import com.google.common.collect.testing.features.TesterAnnotation;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jan 30 16:59:10 UTC 2025 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerRequest.java
.build(); } @NotThreadSafe class ArtifactInstallerRequestBuilder { Session session; RequestTrace trace; Collection<ProducedArtifact> artifacts = Collections.emptyList(); ArtifactInstallerRequestBuilder() {} @Nonnull public ArtifactInstallerRequestBuilder session(@Nonnull Session session) { this.session = session; return this;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.2K bytes - Viewed (0)