Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for simplified (1.11 sec)

  1. src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java

        /**
         * Test a successful NTLM authentication handshake.
         * This is a simplified test that verifies the basic flow without full NTLM protocol simulation.
         * @throws IOException
         * @throws SecurityException
         */
        @Test
        void testSuccessfulHandshake() throws IOException, SecurityException {
            // This test is simplified to verify basic handshake behavior
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/MultiChannelManager.java

                        if (localAddress != null) {
                            String channelId = sessionId + "-channel-" + i;
    
                            // Create transport for this channel (simplified - in real implementation would be more complex)
                            SmbTransportImpl transport = createChannelTransport(localAddress, serverAddress);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/http/NetworkExplorerTest.java

            networkExplorer.doGet(request, response);
    
            verify(response).setContentType("application/octet-stream");
        }
    
        /**
         * Test doFile method directly - simplified test
         */
        @Test
        void testDoFile() throws Exception {
            initializeNetworkExplorer(false, "jCIFS");
    
            // Setup mock file with minimal required behavior
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  4. src/test/java/jcifs/util/HMACT64Test.java

            byte[] data = "The quick brown fox jumps over the lazy dog".getBytes();
    
            // Calculate expected HMAC-MD5 using standard Java MessageDigest for comparison
            // This is a simplified HMAC-MD5 calculation for comparison, not a full RFC 2104 implementation.
            // The HMACT64 implementation is what we are testing.
            MessageDigest md5 = MessageDigest.getInstance("MD5");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java

            } catch (Exception e) {
                // Ignore parsing errors
            }
            return null;
        }
    
        private boolean checkRSSCapability() {
            // Platform-specific RSS detection - simplified implementation
            try {
                NetworkInterface ni = NetworkInterface.getByInetAddress(address);
                return ni != null && ni.supportsMulticast();
            } catch (SocketException e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/http/NtlmServletTest.java

        }
    
        /**
         * Helper method to set up common mocks required for authentication tests.
         * @throws CIFSException
         */
        private void setupMocksForAuth() throws Exception {
            // This is a simplified way to get a transport context into the servlet.
            // A more robust solution might involve reflection or modifying the servlet for testability.
            try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. cmd/format-erasure.go

    		DistributionAlgo string `json:"distributionAlgo"`
    	} `json:"xl"`
    }
    
    // formatErasureV3 struct is same as formatErasureV2 struct except that formatErasureV3.Erasure.Version is "3" indicating
    // the simplified multipart backend which is a flat hierarchy now.
    // In .minio.sys/multipart we have:
    // sha256(bucket/object)/uploadID/[xl.meta, part.1, part.2 ....]
    type formatErasureV3 struct {
    	formatMetaV1
    	Erasure struct {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

                    }
                }
            }
    
            @Override
            public void store(final DataStoreParams paramMap, final Map<String, Object> dataMap) {
                // Simplified store for testing
                systemHelper.calibrateCpuLoad();
                final long startTime = systemHelper.getCurrentTimeAsLong();
    
                // Required check
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/SimpleCircuitBreaker.java

    import java.util.concurrent.atomic.AtomicInteger;
    import java.util.concurrent.atomic.AtomicLong;
    import java.util.concurrent.atomic.AtomicReference;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Simplified circuit breaker implementation for SMB operations.
     * Thread-safe and lock-free implementation to prevent cascading failures.
     *
     * Features:
     * - Simple state management (CLOSED, OPEN, HALF_OPEN)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  10. docs/smb3-features/03-multi-channel-design.md

            this.address = address;
            this.linkSpeed = linkSpeed;
            this.ipv6 = address.getAddress().length == 16;
            this.capability = 0;
            
            // Check for RSS capability (simplified - would need OS-specific checks)
            this.rssCapable = checkRSSCapability();
            if (rssCapable) {
                this.capability |= NETWORK_INTERFACE_CAP_RSS;
            }
        }
        
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
Back to top