- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 1,423 for result1 (0.84 sec)
-
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java
int result = response.readSetupWireFormat(buffer, 0, 100); assertEquals(0, result); // Test with different parameters result = response.readSetupWireFormat(buffer, 10, 50); assertEquals(0, result); // Test with zero length result = response.readSetupWireFormat(buffer, 0, 0); assertEquals(0, result); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.9K bytes - Viewed (0) -
src/test/java/jcifs/EmptyIteratorTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
assertEquals(1, result.getCurrentPageNumber()); assertEquals(2, result.getPageSize()); assertEquals(5, result.getAllRecordCount()); assertEquals(3, result.getAllPageCount()); assertEquals(1, result.getCurrentPageNumber()); } public void test_selectList_offsetOutOfBounds() { loadTestData(); DictionaryFile.PagingList<StopwordsItem> result = stopwordsFile.selectList(10, 2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java
List<Callable<String>> callables = ImmutableList.of(Callables.returning("x")); List<Future<String>> results; results = service.invokeAll(callables); assertThat(getOnlyElement(results)).isInstanceOf(TrustedListenableFutureTask.class); results = service.invokeAll(callables, 1, SECONDS); assertThat(getOnlyElement(results)).isInstanceOf(TrustedListenableFutureTask.class); /*
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 28K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
/** * Performs a search operation and populates the search render data with results. * * This method handles the complete search workflow including parameter processing, * query execution, result formatting, and logging. It supports automatic retry * with escaped queries if the initial search fails. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/FutureCallback.java
/** * A callback for accepting the results of a {@link java.util.concurrent.Future} computation * asynchronously. * * <p>To attach to a {@link ListenableFuture} use {@link Futures#addCallback}. * * @author Anthony Zana * @since 10.0 */ @GwtCompatible public interface FutureCallback<V extends @Nullable Object> { /** Invoked with the result of the {@code Future} computation when it is successful. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/AggregateLogJob.java
// Default constructor } /** * Executes the search log aggregation job. * Stores search logs using the SearchLogHelper and returns execution results. * * @return execution result message, empty if successful or error message if failed */ public String execute() { final SearchLogHelper searchLogHelper = ComponentUtil.getSearchLogHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/SMBSigningDigestTest.java
int extraPad = 0; when(signingDigest.verify(testData, offset, length, extraPad, message)).thenReturn(true); // Act boolean result = signingDigest.verify(testData, offset, length, extraPad, message); // Assert assertTrue(result, "Verify should return true for valid signature"); verify(signingDigest, times(1)).verify(testData, offset, length, extraPad, message); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/util/CryptoTest.java
byte[] data = "Hello World".getBytes(); // When MessageDigest hmac = Crypto.getHMACT64(key); byte[] result = hmac.digest(data); // Then assertNotNull(result); assertTrue(result.length > 0, "HMAC-T64 should produce non-empty result"); } @Test @DisplayName("Should perform RC4 encryption/decryption") void testRC4() throws Exception { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0)