- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 240 for 1000KB (0.03 sec)
-
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
generator1.setCommandList(Collections.singletonList("echo test1")); generator2.setCommandList(Collections.singletonList("echo test2")); generator1.setCommandTimeout(1000L); generator2.setCommandTimeout(2000L); assertTrue("Multiple generators should work independently", true); } // Test command string construction edge cases
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
docs/site-replication/run-replication-with-checksum-header.sh
CI=on MINIO_KMS_SECRET_KEY=minio-default-key:IyqsU3kMFloCNup4BsZtf/rmfHVcTgznO2F25CkEH1g= MINIO_ROOT_USER=minio MINIO_ROOT_PASSWORD=minio123 minio server --certs-dir /tmp/certs --address ":9001" --console-address ":10000" /tmp/minio1/{1...4}/disk{1...4} /tmp/minio1/{5...8}/disk{1...4} >/tmp/minio1_1.log 2>&1 &
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Jan 20 14:49:07 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* cache instances created by {@code CacheBuilder} will not perform any type of eviction. * * <p>Usage example: * * {@snippet : * LoadingCache<Key, Graph> graphs = CacheBuilder.newBuilder() * .maximumSize(10000) * .expireAfterWrite(Duration.ofMinutes(10)) * .removalListener(MY_LISTENER) * .build( * new CacheLoader<Key, Graph>() { * public Graph load(Key key) throws AnyException {
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/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
/** OAuth2 authorization code parameter name. */ protected static final String CODE = "code"; /** Timeout for token acquisition in milliseconds. */ protected long acquisitionTimeout = 30 * 1000L; /** Cache for storing group information to reduce API calls. */ protected Cache<String, Pair<String[], String[]>> groupCache; /** Group cache expiry time in seconds. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
this.group = group; this.endpoint = group.createEndpoint(); } @Override public void connect() throws IOException { try { endpoint.connect(remoteAddress, 1000); // 1 second timeout state = RdmaConnectionState.CONNECTED; } catch (Exception e) { throw new IOException("RDMA connection failed", e); } } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
if (total == 0) { return 100.0; } return (totalSuccesses.get() * 100.0) / total; } /** * Calculate availability * * @return availability as percentage (0-100) */ private double calculateAvailability() { long total = totalRequests.get(); if (total == 0) { return 100.0; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralRequestBufferTest.java
buffer = new DfsReferralRequestBuffer(path, 3); byte[] dst = new byte[buffer.size()]; // Perform many rapid encodes for (int i = 0; i < 10000; i++) { int bytesEncoded = buffer.encode(dst, 0); assertEquals(buffer.size(), bytesEncoded); } } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/IntsTest.java
} public void testByteArrayRoundTrips() { Random r = new Random(5); byte[] b = new byte[Ints.BYTES]; // total overkill, but, it takes 0.1 sec so why not... for (int i = 0; i < 10000; i++) { int num = r.nextInt(); assertThat(Ints.fromByteArray(Ints.toByteArray(num))).isEqualTo(num); r.nextBytes(b); assertThat(Ints.toByteArray(Ints.fromByteArray(b))).isEqualTo(b); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
} /** Interval for checking user information in milliseconds (default: 10 minutes). */ protected long userCheckInterval = 10 * 60 * 1000L; // 10 min /** Maximum size of the user information cache. */ protected int userInfoCacheSize = 10000; /** Queue for storing search logs. */ protected Queue<SearchLog> searchLogQueue = new ConcurrentLinkedQueue<>(); /** Queue for storing click logs. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
do { if (dc_list_expiration < now) { final NbtAddress[] list = NbtAddress.getAllByName(DOMAIN, 0x1C, null, null); dc_list_expiration = now + CACHE_POLICY * 1000L; if (list != null && list.length > 0) { dc_list = list; } else { /* keep using the old list */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 20.7K bytes - Viewed (0)