- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 1,387 for result2 (0.04 sec)
-
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsCrawlingInfoParamBhv.java
} @Override protected <RESULT extends CrawlingInfoParam> RESULT createEntity(Map<String, Object> source, Class<? extends RESULT> entityType) { try { final RESULT result = entityType.newInstance(); result.setCrawlingInfoId(DfTypeUtil.toString(source.get("crawlingInfoId"))); result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
thumbnailFile.getParentFile().mkdirs(); thumbnailFile.createNewFile(); File result = thumbnailManager.getThumbnailFile(docMap); assertNotNull(result); assertEquals(thumbnailFile.getAbsolutePath(), result.getAbsolutePath()); } // Test getThumbnailFile with non-existing file public void test_getThumbnailFile_notExists() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/FutureCallbackTest.java
}; addCallback(future, callback, directExecutor()); future.set(result); assertEquals(result, future.get()); assertThat(successCalls[0]).isEqualTo(1); assertThat(failureCalls[0]).isEqualTo(0); } public void testOnSuccessThrowsError() throws Exception { SomeError error = new SomeError(); String result = "result"; SettableFuture<String> future = SettableFuture.create();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java
/** * Gets the file entry results from the response * @return the results */ public final FileEntry[] getResults() { return this.results; } /** * Sets the file entry results for the response * @param results * the results to set */ protected final void setResults(final FileEntry[] results) { this.results = results; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.3K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/TrustedListenableFutureTask.java
* Runnable}, and arrange that {@code get} will return the given result on successful completion. * * @param runnable the runnable task * @param result the result to return on successful completion. If you don't need a particular * result, consider using constructions of the form: {@code ListenableFuture<?> f = * ListenableFutureTask.create(runnable, null)} */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 5.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/loong64enc3.s
MOVW R4, result+65540(FP) // 1e020014de8f1000c4338029 MOVW R4, result+4097(FP) // 3e000014de8f1000c4278029 MOVWU R4, result+65540(FP) // 1e020014de8f1000c4338029 MOVWU R4, result+4097(FP) // 3e000014de8f1000c4278029 MOVV R4, result+65540(FP) // 1e020014de8f1000c433c029 MOVV R4, result+4097(FP) // 3e000014de8f1000c427c029 MOVB R4, result+65540(FP) // 1e020014de8f1000c4330029
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Feb 20 14:31:35 UTC 2025 - 10.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/HttpHeaders.kt
require(readByte() == '\"'.code.toByte()) val result = Buffer() while (true) { val i = indexOfElement(QUOTED_STRING_DELIMITERS) if (i == -1L) return null // Unterminated quoted string. if (this[i] == '"'.code.toByte()) { result.write(this, i) // Consume '"'. readByte() return result.readUtf8() } if (size == i + 1L) return null // Dangling escape.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
String result = testMessage.toString(); assertTrue(result.contains("command=SMB2_CREATE")); assertTrue(result.contains("status=0")); assertTrue(result.contains("flags=0x1234")); assertTrue(result.contains("mid=12345")); assertTrue(result.contains("wordCount=0")); assertTrue(result.contains("byteCount=0")); } } @Nested
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0) -
okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/HpackJsonUtil.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.3K bytes - Viewed (0)