- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 1,176 for inte (0.06 sec)
-
android/guava-tests/test/com/google/common/util/concurrent/SupplementalMonitorTest.java
import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** * Supplemental tests for {@link Monitor}. * * <p>This test class contains various test cases that don't fit into the test case generation in * {@link GeneratedMonitorTest}. * * @author Justin T. Sampson */ @NullUnmarked public class SupplementalMonitorTest extends TestCase {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 4.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/UnmodifiableSortedMultiset.java
import java.util.Comparator; import java.util.NavigableSet; import org.jspecify.annotations.Nullable; /** * Implementation of {@link Multisets#unmodifiableSortedMultiset(SortedMultiset)}, split out into * its own file so it can be GWT emulated (to deal with the differing elementSet() types in GWT and * non-GWT). * * @author Louis Wasserman */ @GwtCompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/CommonServerMessageBlock.java
*/ int decode(byte[] buffer, int bufferIndex) throws SMBProtocolDecodingException; /** * Encodes this message into a byte array. * * @param dst the destination byte array * @param dstIndex the starting index in the destination array * @return message length */ int encode(byte[] dst, int dstIndex); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/SupplementalMonitorTest.java
import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** * Supplemental tests for {@link Monitor}. * * <p>This test class contains various test cases that don't fit into the test case generation in * {@link GeneratedMonitorTest}. * * @author Justin T. Sampson */ @NullUnmarked public class SupplementalMonitorTest extends TestCase {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 4.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
@SuppressWarnings("JdkObsolete") private static Enumeration<Integer> enumerate(int... ints) { Vector<Integer> vector = new Vector<>(Ints.asList(ints)); return vector.elements(); } public void testToString() { Iterator<String> iterator = Lists.newArrayList("yam", "bam", "jam", "ham").iterator(); assertEquals("[yam, bam, jam, ham]", Iterators.toString(iterator)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 54.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/GeoInfo.java
import jakarta.servlet.http.HttpServletRequest; /** * Entity class that handles geographic information for search queries. * This class processes geographic query parameters from HTTP requests and converts them * into OpenSearch geo-distance queries for location-based search functionality. * */ public class GeoInfo { /** The OpenSearch query builder for geographic queries. */ private QueryBuilder builder; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt
* * Use this method to create a degenerate Okio Buffer where each byte is in a separate segment of * the internal list. */ @JvmStatic fun fragmentBuffer(buffer: Buffer): Buffer { // Write each byte into a new buffer, then clone it so that the segments are shared. // Shared segments cannot be compacted so we'll get a long chain of short segments. val result = Buffer() while (!buffer.exhausted()) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.3K bytes - Viewed (0) -
docs/em/docs/tutorial/query-params.md
``` ...๐ข ๐ข: * `skip`: โฎ๏ธ ๐ฒ `0` * `limit`: โฎ๏ธ ๐ฒ `10` ๐ซ ๐ ๐, ๐ซ "๐" ๐ป. โ๏ธ ๐โ ๐ ๐ฃ ๐ซ โฎ๏ธ ๐ ๐ (๐ผ ๐, `int`), ๐ซ ๐ ๐ ๐ & โ ๐ก โซ๏ธ. ๐ ๐ ๐ ๏ธ ๐ โ โก ๐ข โ ๐ข ๐ข: * ๐จโ๐จ ๐โ๐ฆบ (๐ฒ) * ๐ฝ <abbr title="converting the string that comes from an HTTP request into Python data">"โ"</abbr> * ๐ฝ ๐ฌ * ๐ง ๐งพ ## ๐ข ๐ข ๐ข ๐ซ ๐ง ๐ โก, ๐ซ ๐ช ๐ฆ & ๐ช โ๏ธ ๐ข ๐ฒ.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java
} @ParameterizedTest @ValueSource(ints = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 100, 255, 256, 65535 }) @DisplayName("Test readBytesWireFormat with various invalid structure sizes") void testReadBytesWireFormatVariousInvalidSizes(int invalidSize) { response = new Smb2QueryInfoResponse(mockConfig, (byte) 1, (byte) 2); byte[] buffer = new byte[1024]; int bufferIndex = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionRemoveAllTester.java
} /* * AbstractCollection fails the removeAll(null) test when the subject * collection is empty, but we'd still like to test removeAll(null) when we * can. We split the test into empty and non-empty cases. This allows us to * suppress only the former. */ @CollectionFeature.Require(SUPPORTS_REMOVE) @CollectionSize.Require(ZERO)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 7.7K bytes - Viewed (0)