- Sort Score
- Result 10 results
- Languages All
Results 1311 - 1320 of 2,742 for Gist (0.16 sec)
-
guava/src/com/google/common/collect/CompactLinkedHashMap.java
* high 32 bits of each long is the "prev" pointer, whereas the low 32 bits is the "succ" pointer * (pointing to the next entry in the linked list). The pointers in [size(), entries.length) are * all "null" (UNSET). * * <p>A node with "prev" pointer equal to {@code ENDPOINT} is the first node in the linked list, * and a node with "next" pointer equal to {@code ENDPOINT} is the last node. */
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 10.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/QueuesTest.java
import static org.junit.Assert.assertThrows; import com.google.common.base.Stopwatch; import java.time.Duration; import java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.BlockingQueue; import java.util.concurrent.Callable; import java.util.concurrent.CountDownLatch; import java.util.concurrent.ExecutorService;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Nov 04 17:24:58 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride_download.jsp
</la:link> <la:link href="../list/0/?dictId=${f:u(dictId)}" styleClass="btn btn-primary btn-xs"> <i class="fa fa-th-list" aria-hidden="true"></i> <la:message key="labels.dict_stemmeroverride_list_link"/>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessNotificationTest.java
notification.addNewIPAddress(ipv4); notification.addNewIPAddress(ipv6); notification.addOldIPAddress(ipv4); List<WitnessNotification.WitnessIPAddress> newAddresses = notification.getNewIPAddresses(); List<WitnessNotification.WitnessIPAddress> oldAddresses = notification.getOldIPAddresses(); assertEquals(2, newAddresses.size()); assertEquals(1, oldAddresses.size());Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/CollectionBenchmarkSampleData.java
*/ package com.google.common.collect; import static com.google.common.base.Preconditions.checkNotNull; import static java.util.Collections.shuffle; import java.util.ArrayList; import java.util.List; import java.util.Set; import org.jspecify.annotations.NullUnmarked; import org.jspecify.annotations.Nullable; /** * Package up sample data for common collections benchmarking. * * @author Nicholaus Shupe
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 4.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ExtensionDescriptorBuilder.java
extensionDescriptor.setExportedArtifacts(parseStrings(dom.child("exportedArtifacts"))); return extensionDescriptor; } private List<String> parseStrings(XmlNode dom) { List<String> strings = null; if (dom != null) { strings = new ArrayList<>(); for (XmlNode child : dom.children()) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 4.2K bytes - Viewed (0) -
docs/pt/llm-prompt.md
* guides: tutoriais * I/O (as in "input and output"): I/O (do not translate to "E/S") * JSON Schema: JSON Schema * library: biblioteca * lifespan: lifespan (do not translate to "vida útil") * list (as in Python list): list * Machine Learning: Aprendizado de Máquina * media type: media type (do not translate to "tipo de mídia")
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 3.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/ListRemoveAtIndexTester.java
import com.google.common.collect.testing.features.ListFeature; import java.util.ConcurrentModificationException; import java.util.Iterator; import java.util.List; import org.junit.Ignore; /** * A generic JUnit test which tests {@code remove(int)} operations on a list. Can't be invoked * directly; please see {@link com.google.common.collect.testing.ListTestSuiteBuilder}. * * @author Chris Povirk */ @GwtCompatibleRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java
profile.setProperties(profileXmlProfile.getProperties()); List repos = profileXmlProfile.getRepositories(); if (repos != null) { for (Object repo : repos) { profile.addRepository(convertFromProfileXmlRepository((org.apache.maven.profiles.Repository) repo)); } } List pluginRepos = profileXmlProfile.getPluginRepositories(); if (pluginRepos != null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.8K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Hashing.java
// We can't use Lists.asList() here because there's no hash->collect dependency List<HashFunction> list = new ArrayList<>(); list.add(first); list.add(second); Collections.addAll(list, rest); return new ConcatenatedHashFunction(list.toArray(new HashFunction[0])); } /**
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.8K bytes - Viewed (0)