Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for minuhta (0.04 sec)

  1. src/main/java/jcifs/util/AuthenticationRateLimiter.java

         *
         * @param maxAttemptsPerAccount max failed attempts per account before lockout
         * @param maxAttemptsPerIp max attempts from single IP
         * @param maxGlobalAttemptsPerMinute max global attempts per minute
         * @param lockoutDuration duration to lock out account/IP
         * @param cleanupInterval interval for cleaning up old entries
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java

        }
    
        // Test edge cases to understand the validation behavior
        public void test_edgeCaseBehavior() {
            String[] edgeCases = { "0 0 25 * * ?", // Invalid day of month
                    "0 60 * * * ?", // Invalid minute
                    "0 0 0 32 1 ?", // Invalid day
                    "0 0 0 1 13 ?", // Invalid month
            };
    
            for (String cron : edgeCases) {
                boolean result = validator.determineValid(cron);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/util/AuthenticationRateLimiterTest.java

            // Create rate limiter with test-friendly settings
            rateLimiter = new AuthenticationRateLimiter(3, // max attempts per account
                    5, // max attempts per IP
                    20, // max global attempts per minute
                    Duration.ofSeconds(2), // short lockout for testing
                    Duration.ofMinutes(1) // cleanup interval
            );
        }
    
        @AfterEach
        public void tearDown() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/lease/LeaseManagerTest.java

            Smb2LeaseKey key = leaseManager.requestLease(path, requestedState);
            assertNotNull(leaseManager.getLease(key));
    
            int cleaned = leaseManager.cleanupExpiredLeases(60000); // 1 minute expiration
    
            assertEquals(0, cleaned);
            assertNotNull(leaseManager.getLease(key));
        }
    
        @Test
        @DisplayName("Should detect lease capabilities")
        void testLeaseCapabilities() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 00:16:17 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

             */
            public int msecs;
            /**
             * The current hour (0-23).
             */
            public int hours;
            /**
             * The current minute (0-59).
             */
            public int mins;
            /**
             * The current second (0-59).
             */
            public int secs;
            /**
             * The current hundredth of a second (0-99).
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

            testBoundaryValue(1L);
            testBoundaryValue(-1L);
    
            // Test one second boundaries
            testBoundaryValue(1000L);
            testBoundaryValue(-1000L);
    
            // Test one minute boundaries
            testBoundaryValue(60000L);
            testBoundaryValue(-60000L);
    
            // Test one hour boundaries
            testBoundaryValue(3600000L);
            testBoundaryValue(-3600000L);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

        private static final int DEFAULT_MAX_POOL_SIZE = 100;
        private static final int DEFAULT_MAX_IDLE_TIME = 300000; // 5 minutes in ms
        private static final int DEFAULT_HEALTH_CHECK_INTERVAL = 60000; // 1 minute in ms
        private static final int DEFAULT_PROACTIVE_CHECK_INTERVAL = 30000; // 30 seconds in ms
        private int maxPoolSize = DEFAULT_MAX_POOL_SIZE;
        private int maxIdleTime = DEFAULT_MAX_IDLE_TIME;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

             */
            public int msecs;
            /**
             * The current hour (0-23).
             */
            public int hours;
            /**
             * The current minute (0-59).
             */
            public int mins;
            /**
             * The current second (0-59).
             */
            public int secs;
            /**
             * The current hundredth of a second (0-99).
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 27K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

            }
        }
    
        private void performHealthCheck() {
            for (ChannelInfo channel : channels.values()) {
                if (channel.getIdleTime() > 60000) { // 1 minute idle
                    // Send keep-alive
                    try {
                        sendKeepAlive(channel);
                    } catch (Exception e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  10. src/main/java/jcifs/audit/SecurityAuditLogger.java

        private volatile boolean skipMaskingForDebugLevel = false;
    
        // Rate limiting
        private final Map<String, AtomicLong> rateLimitCounters = new ConcurrentHashMap<>();
        private volatile long rateLimitWindow = 60000; // 1 minute
        private volatile int maxEventsPerWindow = 10000; // Increased for tests
    
        /**
         * Security event types
         */
        public enum EventType {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
Back to top