- Sort Score
- Result 10 results
- Languages All
Results 661 - 670 of 2,026 for size8 (0.02 sec)
- 
				
				src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.javaMap<String, Object> responseDataMap = new HashMap<>(); responseDataMap.put("b", "B1"); indexUpdateCallback.mergeResponseData(dataMap, responseDataMap); assertEquals(2, dataMap.size()); assertEquals("A0", dataMap.get("a")); assertEquals("B1", dataMap.get("b")); } /** Case 2: Key conflict (without .overwrite) → Overwrite with value from responseDataMap */ Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 23:31:00 UTC 2025 - 7.2K bytes - Viewed (0)
- 
				
				android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java*/ /** * Contains the link pointers corresponding with the entries, in the range of [0, size()). The * high 32 bits of each long is the "prev" pointer, whereas the low 32 bits is the "succ" pointer * (pointing to the nextEntry entry in the linked list). The pointers in [size(), entries.length) * are all "null" (UNSET). * Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 5.9K bytes - Viewed (0)
- 
				
				okhttp/src/jvmTest/kotlin/okhttp3/ResponseBodyJvmTest.ktassertThat(source.readByte() and 0xff).isEqualTo(0xbf) assertThat(source.readUtf8()).isEqualTo("hello") } @Test fun bytesEmpty() { val body = body("") assertThat(body.bytes().size).isEqualTo(0) } @Test fun bytesSeesBom() { val body = body("efbbbf68656c6c6f") val bytes = body.bytes() assertThat(bytes[0] and 0xff).isEqualTo(0xef) Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12.4K bytes - Viewed (0)
- 
				
				src/main/java/jcifs/pac/PacDataInputStream.javaprivate final DataInputStream dis; private final int size; /** * Constructs a PAC data input stream from the given input stream. * @param in the underlying input stream * @throws IOException if an I/O error occurs */ public PacDataInputStream(final InputStream in) throws IOException { this.dis = new DataInputStream(in); this.size = in.available(); } /**Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0)
- 
				
				guava/src/com/google/common/hash/AbstractStreamingHasher.java* size. * * @param chunkSize the number of bytes available per {@link #process(ByteBuffer)} invocation; * must be at least 4 */ protected AbstractStreamingHasher(int chunkSize) { this(chunkSize, chunkSize); } /** * Constructor for use by subclasses. This hasher instance will process chunks of the specifiedRegistered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 7.1K bytes - Viewed (0)
- 
				
				src/main/java/org/codelibs/core/collection/CaseInsensitiveSet.javamap = new CaseInsensitiveMap<>(initialCapacity); } @Override public Iterator<String> iterator() { return map.keySet().iterator(); } @Override public int size() { return map.size(); } @Override public boolean isEmpty() { return map.isEmpty(); } @Override public boolean contains(final Object o) { return map.containsKey(o); Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.4K bytes - Viewed (0)
- 
				
				compat/maven-builder-support/src/test/java/org/apache/maven/building/ProblemCollectorFactoryTest.javaassertNotSame(collector1, collector2); assertEquals(0, collector1.getProblems().size()); assertEquals(1, collector2.getProblems().size()); } @Test void testAddProblem() { ProblemCollector collector = ProblemCollectorFactory.newInstance(null); collector.setSource("pom.xml");Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Jul 20 20:19:43 UTC 2025 - 2.3K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.javaassertNotNull(queryFieldConfig.apiResponseFieldSet); assertTrue(queryFieldConfig.apiResponseFieldSet.size() > 0); // Verify not analyzed field set is initialized assertNotNull(queryFieldConfig.notAnalyzedFieldSet); assertTrue(queryFieldConfig.notAnalyzedFieldSet.size() > 0); } public void test_init_withExistingFields() { // Set existing fields before initialization Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33.2K bytes - Viewed (0)
- 
				
				android/guava/src/com/google/common/collect/ImmutableListMultimap.javabuilder.put(key, list); size += list.size(); } return new ImmutableListMultimap<>(builder.buildOrThrow(), size); } ImmutableListMultimap(ImmutableMap<K, ImmutableList<V>> map, int size) { super(map, size); } // views /** Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19K bytes - Viewed (0)
- 
				
				guava/src/com/google/common/collect/Multimap.java* which is given by {@code keySet().size()} or {@code asMap().size()}. See the opening section of * the {@link Multimap} class documentation for clarification. */ int size(); /** * Returns {@code true} if this multimap contains no key-value pairs. Equivalent to {@code size() * == 0}, but can in some cases be more efficient. */ boolean isEmpty();Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 15.7K bytes - Viewed (0)