- Sort Score
- Result 10 results
- Languages All
Results 371 - 380 of 517 for 100m (3.05 sec)
-
src/test/java/jcifs/internal/dfs/DfsReferralResponseBufferTest.java
@BeforeEach void setupBuffer() { // Create buffer with 3 v1 referrals byte[] testBuffer = new byte[100]; ByteBuffer bb = ByteBuffer.wrap(testBuffer).order(ByteOrder.LITTLE_ENDIAN); // Header bb.putShort((short) 100); // pathConsumed bb.putShort((short) 3); // numReferrals bb.putShort((short) 25); // tflags
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_edit.jsp
value="${f:h(numOfThread)}" class="form-control" min="1" max="1000"> </div> </div> <div class="form-group row">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcClient.java
message.setClientComputerName(context.getConfig().getNetbiosHostname()); message.setFlags(request.getFlags()); message.setTimeout((int) (context.getConfig().getWitnessRegistrationTimeout() / 1000)); // Send the RPC request rpcHandle.sendrecv(message); // Create response from RPC message results WitnessRegisterResponse response = new WitnessRegisterResponse();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 12.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/SuppliersTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 17.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java
} } static class MockFessConfig extends FessConfig.SimpleImpl { @Override public Integer getPageRelatedcontentMaxFetchSizeAsInteger() { return 1000; } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java
updateThreads[i] = new Thread(() -> { for (int j = 0; j < 20; j++) { String fileName = "thread" + threadId + "_file" + j + ".txt"; entry.updateChild(fileName, j * 100L, System.currentTimeMillis(), false, 0x20, System.currentTimeMillis() - 10000, System.currentTimeMillis() - 5000); } }); updateThreads[i].start();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2RequestTest.java
void testIsResponseAsyncTrue() { testRequest.setAsyncId(12345L); assertTrue(testRequest.isResponseAsync()); } @ParameterizedTest @ValueSource(longs = { 1L, 100L, Long.MAX_VALUE }) @DisplayName("isResponseAsync should return true for various non-zero asyncIds") void testIsResponseAsyncWithDifferentValues(long asyncId) { testRequest.setAsyncId(asyncId);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
if (CACHE_POLICY == 0) { return; } long expiration = -1; if (CACHE_POLICY != FOREVER) { expiration = System.currentTimeMillis() + CACHE_POLICY * 1000; } cacheAddress(hostName, addr, expiration); } static void cacheAddress(final Name hostName, final NbtAddress addr, final long expiration) { if (CACHE_POLICY == 0) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/IntMathTest.java
// Check the first 100,000 integers for (int i = 0; i < 100000; i++) { assertEquals(LongMath.isPrime(i), IntMath.isPrime(i)); } // Then check 1000 deterministic pseudo-random int values. Random rand = new Random(1); for (int i = 0; i < 1000; i++) { int n = rand.nextInt(Integer.MAX_VALUE); assertEquals(LongMath.isPrime(n), IntMath.isPrime(n)); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 24.1K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * @return lease timeout in milliseconds * @since 2.2 */ int getLeaseTimeout(); /** * Property {@code jcifs.smb.client.maxLeases} (int, default 1000) * * @return maximum number of concurrent leases * @since 2.2 */ int getMaxLeases(); /** * Property {@code jcifs.smb.client.leaseVersion} (int, default 2) *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0)