- Sort Score
- Result 10 results
- Languages All
Results 451 - 460 of 1,081 for difference (0.04 sec)
-
src/test/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancerTest.java
ChannelInfo second = loadBalancer.selectChannel(mockMessage); assertNotNull(first); assertNotNull(second); // Due to round-robin, should get different channels or same order assertTrue(Arrays.asList(channel1, channel2).contains(first)); assertTrue(Arrays.asList(channel1, channel2).contains(second)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/jcifs/SmbTreeHandleTest.java
assertTrue(smbTreeHandle.isSameTree(smbTreeHandle), "isSameTree should return true for the same handle"); assertFalse(smbTreeHandle.isSameTree(anotherHandle), "isSameTree should return false for a different handle"); } /** * Test for isSMB2() method. * Verifies that the method returns the correct SMB protocol version status. */ @Test void testIsSMB2() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbException.java
* error codes, constants and text messages like "The device is not ready" * are provided. * <p> * The jCIFS client maps DOS error codes to NTSTATUS codes. This means that * the user may recieve a different error from a legacy server than that of * a newer varient such as Windows NT and above. If you should encounter * such a case, please report it to jcifs at samba dot org and we will * change the mapping. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
docs/pt/docs/tutorial/security/index.md
Isso é o que todos os sistemas com “Login with Facebook, Google, X (Twitter), GitHub” usam por baixo. ### OAuth 1 Havia um OAuth 1, que é bem diferente do OAuth2, e mais complexo, isso incluía diretamente as especificações de como criptografar a comunicação. Não é muito popular ou usado nos dias atuais.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 4.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/NotifyResponseTest.java
assertNotNull(notifications); assertTrue(notifications.isEmpty()); } @Test @DisplayName("Test NotifyResponse with different file actions") void testNotifyResponseWithDifferentFileActions() { // Create mock notifications for different actions FileNotifyInformation addedFile = mock(FileNotifyInformation.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
// Test equality with same password assertEquals(auth1, auth2); assertEquals(auth1.hashCode(), auth2.hashCode()); // Test inequality with different password assertNotEquals(auth1, auth3); // Test after password wipe auth1.secureWipePassword(); assertNotEquals(auth1, auth2); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
int expectedSize = copy.size(); int actualEncoded = copy.encode(buffer, 0); // Then assertEquals(expectedSize, actualEncoded, "Size and encode methods return different values for " + numChunks + " chunks"); } } @Test @DisplayName("Should handle large number of chunks") void testLargeNumberOfChunks() { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.1K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java
* safe for the next task to start.</i> * </ul> * * <p>This class is similar to {@link MoreExecutors#newSequentialExecutor}. This class is different * in a few ways: * * <ul> * <li>Each task may be associated with a different executor. * <li>Tasks may be of type {@code AsyncCallable}. * <li>Running tasks <i>cannot</i> be interrupted. (Note that {@code newSequentialExecutor} does
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 23 15:26:56 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java
assertEquals(0, ndrBuffer.index); assertEquals(0, ndrBuffer.length); assertSame(ndrBuffer, ndrBuffer.deferred); assertSame(buffer, ndrBuffer.buf); // Test with a different start offset NdrBuffer offsetBuffer = new NdrBuffer(buffer, 10); assertEquals(10, offsetBuffer.start); assertEquals(10, offsetBuffer.index); assertEquals(0, offsetBuffer.length); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
assertTrue(ssoException instanceof Exception); assertTrue(ssoException instanceof Throwable); } public void test_constructor_withVariousExceptionTypes() { // Test constructor with different exception types as cause String message = "SSO process failed"; // Test with IOException Exception ioException = new java.io.IOException("Connection refused");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0)