Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 680 for certify (0.94 sec)

  1. docs/en/docs/deployment/https.md

    * **TCP doesn't know about "domains"**. Only about IP addresses.
        * The information about the **specific domain** requested goes in the **HTTP data**.
    * The **HTTPS certificates** "certify" a **certain domain**, but the protocol and encryption happen at the TCP level, **before knowing** which domain is being dealt with.
    * **By default**, that would mean that you can only have **one HTTPS certificate per IP address**.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 19:34:08 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/msrpc/srvsvcTest.java

            verify(mockNdrBuffer).enc_ndr_long(5); // current_uses
            verify(mockNdrBuffer).enc_ndr_referent("C:\\test", 1);
            verify(mockNdrBuffer).enc_ndr_referent("password", 1);
            verify(mockNdrBuffer).enc_ndr_referent(shareInfo502.security_descriptor, 1);
    
            // Verify string encodings
            verify(mockDeferredBuffer, times(4)).enc_ndr_string(anyString());
    
            // Verify security descriptor encoding
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
  3. src/test/java/jcifs/dcerpc/rpcTest.java

                verify(mockNdrBuffer).derive(anyInt());
                // Verify each node byte is encoded
                verify(mockNdrBuffer).enc_ndr_small((byte) 0xAA);
                verify(mockNdrBuffer).enc_ndr_small((byte) 0xBB);
                verify(mockNdrBuffer).enc_ndr_small((byte) 0xCC);
                verify(mockNdrBuffer).enc_ndr_small((byte) 0xDD);
                verify(mockNdrBuffer).enc_ndr_small((byte) 0xEE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/context/CIFSContextWrapperTest.java

            verify(mockDelegate).getConfig();
        }
    
        @Test
        void testGetDfs() {
            // Test getDfs() method
            DfsResolver mockDfsResolver = mock(DfsResolver.class);
            when(mockDelegate.getDfs()).thenReturn(mockDfsResolver);
            assertEquals(mockDfsResolver, cifsContextWrapper.getDfs());
            verify(mockDelegate).getDfs();
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/smb1/NetServerEnum2Test.java

            int currentIndex = 2 + descr.length;
            // Verify level (0x0001)
            assertEquals(1, (dst[currentIndex] & 0xFF) | ((dst[currentIndex + 1] & 0xFF) << 8));
            currentIndex += 2;
    
            // Verify maxDataCount
            assertEquals(netServerEnum2.maxDataCount, (dst[currentIndex] & 0xFF) | ((dst[currentIndex + 1] & 0xFF) << 8));
            currentIndex += 2;
    
            // Verify serverTypes
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/SmbTransportInternalTest.java

            java.io.IOException ex = assertThrows(java.io.IOException.class, () -> transport.ensureConnected());
            assertTrue(ex.getMessage().contains("connect"));
            verify(transport).ensureConnected();
        }
    
        // Happy path: getDfsReferrals returns referral, verify arguments captured
        @Test
        @DisplayName("getDfsReferrals returns data and receives correct args")
        void getDfsReferrals_happy() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  7. src/test/java/jcifs/dcerpc/DcerpcErrorTest.java

        void testDcerpcFaultInvalidTag() {
            assertEquals(0x1C000006, DcerpcError.DCERPC_FAULT_INVALID_TAG);
        }
    
        @Test
        @DisplayName("Should verify DCERPC_FAULT_CONTEXT_MISMATCH constant value")
        void testDcerpcFaultContextMismatch() {
            assertEquals(0x1C00001A, DcerpcError.DCERPC_FAULT_CONTEXT_MISMATCH);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java

            corsHandlerFactory.add(specificOrigin, specificHandler);
            corsHandlerFactory.add("*", wildcardHandler);
    
            // Execute & Verify - specific origin should return specific handler
            assertEquals(specificHandler, corsHandlerFactory.get(specificOrigin));
    
            // Execute & Verify - unknown origin should return wildcard handler
            assertEquals(wildcardHandler, corsHandlerFactory.get("https://unknown.com"));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/SSPContextTest.java

                inOrder.verify(mockCtx).isPreferredMech(any());
                inOrder.verify(mockCtx).getFlags();
                inOrder.verify(mockCtx).getSupportedMechs();
                inOrder.verify(mockCtx).supportsIntegrity();
                inOrder.verify(mockCtx).calculateMIC(any(byte[].class));
                inOrder.verify(mockCtx).verifyMIC(any(byte[].class), any(byte[].class));
                inOrder.verify(mockCtx).isMICAvailable();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/DfsReferralDataTest.java

    package jcifs;
    
    import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.verify;
    import static org.mockito.Mockito.when;
    
    import org.junit.jupiter.api.DisplayName;
    import org.junit.jupiter.api.Test;
    import org.mockito.Mock;
    
    /**
     * Test class for DfsReferralData interface functionality
     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top