- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 29 for independently (0.05 sec)
-
src/test/java/org/codelibs/curl/io/ContentCacheTest.java
int bytesRead1 = stream1.read(buffer1); assertEquals(testContent, new String(buffer1, 0, bytesRead1, "UTF-8")); } // Second read - should work independently try (InputStream stream2 = cache.getInputStream()) { byte[] buffer2 = new byte[1024]; int bytesRead2 = stream2.read(buffer2);
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java
assertSame(oneWayCryptographer, oneWays[i]); } } // Test with multiple providers public void test_multipleProviders() { // Test that multiple providers can coexist independently InvertibleCryptographer inver1 = InvertibleCryptographer.createAesCipher("key1key1key1key1"); InvertibleCryptographer inver2 = InvertibleCryptographer.createAesCipher("key2key2key2key2");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
assertEquals(2, callback.getDocumentSize()); assertTrue(callback.isCommitted()); } public void test_multiple_datastore_instances() { // Test multiple DataStore instances working independently final AtomicInteger store1CallCount = new AtomicInteger(0); final AtomicInteger store2CallCount = new AtomicInteger(0); DataStore dataStore1 = new DataStore() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java
} // Test multiple instances public void test_multipleInstances() { // Test that multiple instances can be created independently CrawlerEngineClient client1 = new CrawlerEngineClient(); CrawlerEngineClient client2 = new CrawlerEngineClient(); assertNotNull(client1); assertNotNull(client2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessJsonResourceProviderTest.java
} public void test_instanceCreation() { // Test that multiple instances can be created independently FessJsonResourceProvider provider1 = new FessJsonResourceProvider(); FessJsonResourceProvider provider2 = new FessJsonResourceProvider(); assertNotSame(provider1, provider2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* the current implementation, when {@code concurrencyLevel} is greater than {@code 1}, each * resulting segment inside the cache <i>independently</i> limits its own size to approximately * {@code maximumSize / concurrencyLevel}. * * <p>When eviction is necessary, the cache evicts entries that are less likely to be used again.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
generator1.setCommandTimeout(1000L); generator2.setCommandTimeout(2000L); assertTrue("Multiple generators should work independently", true); } // Test command string construction edge cases public void test_command_string_edge_cases() throws Exception { // Test with commands containing special characters
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MultimapBuilder.java
import java.util.Set; import java.util.SortedSet; import java.util.TreeMap; import java.util.TreeSet; import org.jspecify.annotations.Nullable; /** * An immutable builder for {@link Multimap} instances, letting you independently select the desired * behaviors (for example, ordering) of the backing map and value-collections. Example: * * {@snippet : * ListMultimap<UserId, ErrorResponse> errorsByUser =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 18K bytes - Viewed (0) -
guava/src/com/google/common/collect/MultimapBuilder.java
import java.util.Set; import java.util.SortedSet; import java.util.TreeMap; import java.util.TreeSet; import org.jspecify.annotations.Nullable; /** * An immutable builder for {@link Multimap} instances, letting you independently select the desired * behaviors (for example, ordering) of the backing map and value-collections. Example: * * {@snippet : * ListMultimap<UserId, ErrorResponse> errorsByUser =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 18K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/DuplexTest.kt
requestBody.close() assertThat(responseBody.readUtf8Line()).isNull() } body.awaitSuccess() } /** * OkHttp currently doesn't implement failing the request body stream independently of failing the * corresponding response body stream. This is necessary if we want servers to be able to stop * inbound data and send an early 400 before the request body completes. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 24.8K bytes - Viewed (0)