- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 488 for 1000L (0.03 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheStrategy.kt
if (ageMillis + minFreshMillis >= freshMillis) { builder.addHeader("Warning", "110 HttpURLConnection \"Response is stale\"") } val oneDayMillis = 24 * 60 * 60 * 1000L if (ageMillis > oneDayMillis && isFreshnessLifetimeHeuristic()) { builder.addHeader("Warning", "113 HttpURLConnection \"Heuristic expiration\"") } return CacheStrategy(null, builder.build())
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java
// Base body part size (up to and including CreateContextsLength) byte[] base = buildCreateBodyNoContexts((byte) 1, (byte) 2, 3, 1000L, 2000L, 3000L, 4000L, 512L, 1024L, 0x20, fileId); // Create a simple context entry byte[] ctx = new byte[0x40]; int ci = 0; SMBUtil.writeInt4(0, ctx, ci); // Next = 0 (only one)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java
} } // A heuristic for timed gets. If the remaining timeout is less than this, spin instead of // blocking. This value is what AbstractQueuedSynchronizer uses. private static final long SPIN_THRESHOLD_NANOS = 1000L; @VisibleForTesting static String atomicHelperTypeForTest() { return ATOMIC_HELPER.atomicHelperTypeForTest(); } private abstract static class AtomicHelper {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 33.2K bytes - Viewed (0) -
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) -
guava/src/com/google/common/util/concurrent/AbstractFutureState.java
} } // A heuristic for timed gets. If the remaining timeout is less than this, spin instead of // blocking. This value is what AbstractQueuedSynchronizer uses. private static final long SPIN_THRESHOLD_NANOS = 1000L; @VisibleForTesting static String atomicHelperTypeForTest() { return ATOMIC_HELPER.atomicHelperTypeForTest(); } private enum VarHandleAtomicHelperMaker { INSTANCE { /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K 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/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java
request.setData(new byte[100], 0, 100); request.setOffset(1000L); request.setRemainingBytes(500); request.setWriteFlags(0x01); // Update parameters request.setData(new byte[200], 0, 200); request.setOffset(2000L); request.setRemainingBytes(1000); request.setWriteFlags(0x02); // Update file ID
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.4K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
ChannelManager manager = new ChannelManager(context, session); // Add test channels ChannelInfo channel1 = createTestChannel("channel1", 1000); // 1Gbps ChannelInfo channel2 = createTestChannel("channel2", 10000); // 10Gbps manager.addChannel(channel1); manager.addChannel(channel2); // Test load balancer selection
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K 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)