- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 825 for Multiple (0.08 sec)
-
guava/src/com/google/common/cache/Cache.java
* evicted or manually invalidated. The common way to build instances is using {@link CacheBuilder}. * * <p>Implementations of this interface are expected to be thread-safe, and can be safely accessed * by multiple concurrent threads. * * @param <K> the type of the cache's keys, which are not permitted to be null * @param <V> the type of the cache's values, which are not permitted to be null * @author Charles Fry * @since 10.0
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.9K bytes - Viewed (0) -
cmd/net_test.go
// Default case of two ips one with higher octet moves // to the beginning of the list. { ipList: []string{"127.0.0.1", "10.0.0.13"}, sortedIPList: []string{"10.0.0.13", "127.0.0.1"}, }, // With multiple types of octet, chooses a higher octet. { ipList: []string{"127.0.0.1", "172.0.21.1", "192.168.1.106"}, sortedIPList: []string{"192.168.1.106", "172.0.21.1", "127.0.0.1"}, },
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
assertDoesNotThrow(() -> transaction.writeParameterWordsWireFormat(dst, 0)); } @Test @DisplayName("Test multiple setup count handling") void testMultipleSetupCount() { byte[] dst = new byte[256]; // Set multiple setup words transaction.setSetupCount(3); transaction.setSetupWireFormatReturn(6); // 3 * 2 bytes // Execute the method
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
String unicodePath = "文件夹\\文件.txt"; request = new Smb2CreateRequest(mockConfig, unicodePath); assertEquals("\\文件夹\\文件.txt", request.getPath()); } @Test @DisplayName("Test multiple path operations") void testMultiplePathOperations() { request = new Smb2CreateRequest(mockConfig, "initial\\path.txt"); assertEquals("\\initial\\path.txt", request.getPath());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0) -
android/guava/src/com/google/common/math/Quantiles.java
* passing in unsanitized user data then a malicious user could force it. A light shuffle of the * data using an unpredictable seed should normally be enough to thwart this attack. * * <p>The time taken to compute multiple quantiles on the same dataset using {@link Scale#indexes * indexes} is generally less than the total time taken to compute each of them separately, and
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 30.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/QueryRescorerTest.java
if (callCount % 2 == 0) { return createMockRescorerBuilder(); } return null; } }; // Test multiple calls Map<String, Object> params = new HashMap<>(); params.put("test", "value"); assertNull(queryRescorer.evaluate(params)); // First call - odd
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/SamrDomainHandleTest.java
// Assert // sendrecv for open is called once verify(mockDcerpcHandle, times(1)).sendrecv(any(MsrpcSamrOpenDomain.class)); // sendrecv for close is called only once, even if close() is called multiple times verify(mockDcerpcHandle, times(1)).sendrecv(any(MsrpcSamrCloseHandle.class)); } @Test void close_shouldThrowSmbExceptionOnRpcError() throws IOException { // Arrange
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosEncDataTest.java
SecretKey secretKey = keyGen.generateKey(); Key key = new KerberosKey(null, secretKey.getEncoded(), KerberosConstants.DES_ENC_TYPE, 0); byte[] data = new byte[32]; // Dummy data, must be multiple of 8 byte[] decrypted = KerberosEncData.decrypt(data, key, KerberosConstants.DES_ENC_TYPE); assertNotNull(decrypted); // With dummy data, we can't verify the content, just that it decrypts without error
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/LogStreamTest.java
String output = testOutput.toString(); assertTrue(output.contains("test message")); } @Test void testSetInstanceMultipleTimes() { // Test setting instance multiple times PrintStream stream1 = new PrintStream(new ByteArrayOutputStream()); PrintStream stream2 = new PrintStream(new ByteArrayOutputStream()); LogStream.setInstance(stream1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.3K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* loading the value for this key, simply waits for that thread to finish and returns its loaded * value. Note that multiple threads can concurrently load values for distinct keys. * * <p>This method does not alter the state of this {@code CacheBuilder} instance, so it can be * invoked again to create multiple independent caches. * * @param loader the cache loader used to obtain new values
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0)