- Sort Score
- Result 10 results
- Languages All
Results 461 - 470 of 603 for 1000L (0.02 sec)
-
src/test/java/jcifs/internal/fscc/BasicFileInformationTest.java
private FileBasicInfo fileBasicInfo; // Use Unix timestamps (milliseconds since 1970) for test values private static final long TEST_CREATE_TIME = System.currentTimeMillis() - 10000; private static final long TEST_LAST_ACCESS_TIME = System.currentTimeMillis() - 8000; private static final long TEST_LAST_WRITE_TIME = System.currentTimeMillis() - 6000;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java
for (int i = 0; i < 9; i++) { builder.add(i); } for (int j = 0; j < 1000; j++) { builder.add(9); } ImmutableSortedSet<Integer> unused = builder.build(); assertThat(compares[0]).isAtMost(10000); // hopefully something quadratic would have more digits }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 46.7K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureCredentialStorageTest.java
} @Test public void testEncryptDecryptLongPassword() throws Exception { // Test with very long password char[] plaintext = new char[10000]; Arrays.fill(plaintext, 'X'); byte[] encrypted = storage.encryptCredentials(plaintext); assertNotNull(encrypted, "Encrypted long password should not be null");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/RecordingEventListener.kt
} if (elapsedMs != -1L) { assertThat( TimeUnit.NANOSECONDS .toMillis(actualElapsedNs) .toDouble(), ).isCloseTo(elapsedMs.toDouble(), 100.0) } return result } fun recordedEventTypes() = eventSequence.map { it.name } fun clearAllEvents() { while (eventSequence.isNotEmpty()) { takeEvent() } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java
* * @return interface score */ public int getScore() { int score = linkSpeed; // Base score is link speed if (rssCapable) score += 1000; // Prefer RSS-capable if (rdmaCapable) score += 2000; // Prefer RDMA-capable // Note: No IPv4 preference bonus to keep base score equal to link speed return score; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java
// Set large buffer offset SMBUtil.writeInt2(1000, buffer, bufferIndex + 2); // Set buffer length SMBUtil.writeInt4(8, buffer, bufferIndex + 4); response = spy(response); when(response.getHeaderStart()).thenReturn(0); // Write FileInternalInfo data at the large offset SMBUtil.writeInt8(0x123456789ABCDEFL, buffer, 1000);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
// Test should complete in under 1 second (much less than the original 25+ seconds) assertTrue("Test should complete quickly (duration: " + duration + "ms)", duration < 1000); } // Fast mock implementations to minimize overhead private static class FastMockIndexUpdateCallback implements IndexUpdateCallback { @Override public long getExecuteTime() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 12.7K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/FuturesGetChecked.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 11.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrudTestBase.java
import io.restassured.path.json.JsonPath; import io.restassured.response.Response; public abstract class CrudTestBase extends ITBase { protected static final int NUM = 20; protected static final int SEARCH_ALL_NUM = 1000; private static final Logger logger = LogManager.getLogger(CrudTestBase.class); // ================ // Abstract Methods // ================ abstract protected String getNamePrefix();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransTransactNamedPipeTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0)