- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 88 for setText (0.06 seconds)
-
src/test/java/jcifs/internal/smb2/Smb2CancelRequestTest.java
} @Test @DisplayName("Test getNext returns null") void testGetNext() { // Given Smb2CancelRequest request = new Smb2CancelRequest(mockConfig, 1L, 0L); // When ServerMessageBlock2Request<?> next = request.getNext(); // Then assertNull(next, "Cancel requests should not have next requests in chain");Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 9.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/Smb2CancelRequest.java
*/ @Override public boolean isResponseAsync() { return false; } @Override public ServerMessageBlock2Request<?> getNext() { return null; } /** * {@inheritDoc} * * @see jcifs.internal.CommonServerMessageBlockRequest#getOverrideTimeout() */ @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.5K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/ReferenceEntry.java
/** Sets the value reference for this entry. */ void setValueReference(ValueReference<K, V> valueReference); /** Returns the next entry in the chain. */ @Nullable ReferenceEntry<K, V> getNext(); /** Returns the entry's hash. */ int getHash(); /** Returns the key for this entry. */ @Nullable K getKey(); /*
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 13:13:59 GMT 2026 - 3.5K bytes - Click Count (0) -
guava/src/com/google/common/cache/ReferenceEntry.java
/** Sets the value reference for this entry. */ void setValueReference(ValueReference<K, V> valueReference); /** Returns the next entry in the chain. */ @Nullable ReferenceEntry<K, V> getNext(); /** Returns the entry's hash. */ int getHash(); /** Returns the key for this entry. */ @Nullable K getKey(); /*
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 13:13:59 GMT 2026 - 3.5K bytes - Click Count (0) -
guava/src/com/google/common/collect/CompactHashSet.java
if (CompactHashing.getHashPrefix(entry, mask) == hashPrefix && Objects.equals(object, elements[entryIndex])) { return false; } next = CompactHashing.getNext(entry, mask); bucketLength++; } while (next != UNSET); if (bucketLength >= MAX_HASH_BUCKET_LENGTH) { return convertToHashFloodingResistantImplementation().add(object); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 24.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/CompactHashMap.java
V oldValue = (V) values[entryIndex]; values[entryIndex] = value; accessEntry(entryIndex); return oldValue; } next = CompactHashing.getNext(entry, mask); bucketLength++; } while (next != UNSET); if (bucketLength >= MAX_HASH_BUCKET_LENGTH) { return convertToHashFloodingResistantImplementation().put(key, value); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 39.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserEdgeCaseTest.java
parser.parseSearchWords(words, null, fields, null, null, 1, defaultReadingConverter, defaultNormalizer, analyzer, null); assertNotNull(item); assertEquals("test", item.getText()); } @Test public void test_parseSearchWords_withPartialReadings() throws Exception { String[] words = new String[] { "word1", "word2", "word3" };
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 20.3K bytes - Click Count (0) -
src/main/java/jcifs/util/transport/Transport.java
Response curResp = response; Request curReq = request; while (curResp != null) { this.response_map.remove(curResp.getMid()); final Request next = curReq.getNext(); if (next == null) { break; } curReq = next; curResp = next.getResponse(); } } }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 27.8K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/checkstyle/MissingJavadocTypeCheck.java
customScope = ScopeUtil.getScopeFromMods(mods); } final Scope surroundingScope = ScopeUtil.getSurroundingScope(ast); final String outerTypeName = ast.findFirstToken(TokenTypes.IDENT).getText(); return customScope.isIn(scope) && (surroundingScope == null || surroundingScope.isIn(scope)) && (excludeScope == null || customScope.isIn(excludeScope) == false
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jun 10 23:06:44 GMT 2021 - 5.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
assertThat(newFirst.getHash()).isEqualTo(hashTwo); newFirst = newFirst.getNext(); assertThat(newFirst.getKey()).isSameInstanceAs(keyThree); assertThat(newFirst.getValueReference().get()).isSameInstanceAs(valueThree); assertThat(newFirst.getHash()).isEqualTo(hashThree); assertThat(newFirst.getNext()).isNull(); } public void testExpand_cleanup() { LocalCache<Object, Object> map =
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 114.9K bytes - Click Count (0)