Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for 6000051 (0.08 sec)

  1. src/test/java/jcifs/internal/smb2/lease/DirectoryLeasingIntegrationTest.java

            DirectoryLeaseContext context =
                    new DirectoryLeaseContext(key, DirectoryLeaseState.DIRECTORY_FULL, DirectoryCacheScope.RECURSIVE_TREE);
    
            context.setMaxCacheAge(60000L);
            context.setNotificationEnabled(true);
            context.setNotificationFilter(0x1F);
    
            // Test encoding and decoding roundtrip
            byte[] buffer = new byte[context.size()];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

         */
        public String[] getDataStoreNames() {
            final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
            if (now - lastLoadedTime > 60000L) {
                final List<String> nameList = loadDataStoreNameList();
                dataStoreNames = nameList.toArray(n -> new String[nameList.size()]);
                lastLoadedTime = now;
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * -XX:G1HeapRegionSize=1m<br>
         * -XX:MaxGCPauseMillis=60000<br>
         * -XX:G1NewSizePercent=5<br>
         * -XX:G1MaxNewSizePercent=5<br>
         * -Djcifs.smb.client.responseTimeout=30000<br>
         * -Djcifs.smb.client.soTimeout=35000<br>
         * -Djcifs.smb.client.connTimeout=60000<br>
         * -Djcifs.smb.client.sessionTimeout=60000<br>
         * -Djcifs.smb1.smb.client.connTimeout=60000<br>
         * -Djcifs.smb1.smb.client.soTimeout=35000<br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  4. src/main/java/jcifs/util/AuthenticationRateLimiter.java

            long now = System.currentTimeMillis();
            long windowStart = currentWindowStart.get();
    
            // Check if we need to reset the window (1 minute window)
            if (now - windowStart > 60000) {
                currentWindowStart.compareAndSet(windowStart, now);
                globalAttemptsInCurrentWindow.set(0);
            }
    
            int attempts = globalAttemptsInCurrentWindow.incrementAndGet();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  5. 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)
  6. src/test/java/jcifs/internal/CommonServerMessageBlockResponseTest.java

        }
    
        @Test
        @DisplayName("Test Response interface methods - setExpiration")
        void testSetExpiration() {
            // Given
            Long expiration = System.currentTimeMillis() + 60000L;
            doNothing().when(response).setExpiration(expiration);
    
            // When
            response.setExpiration(expiration);
    
            // Then
            verify(response).setExpiration(expiration);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

            public int hunds;
            /**
             * The time zone offset from UTC in minutes.
             */
            public int timezone;
            /**
             * The time interval for each tick of the clock in 0.0001 seconds.
             */
            public int tinterval;
            /**
             * The current day of the month (1-31).
             */
            public int day;
            /**
             * The current month (1-12).
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  9. docs/smb3-features/03-multi-channel-design.md

            failover.handleFailure(channel, error);
        }
        
        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: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/lease/LeaseManager.java

        private final ReadWriteLock lock;
        private final CIFSContext context;
        private final ScheduledExecutorService cleanupExecutor;
        private static final long DEFAULT_LEASE_CLEANUP_INTERVAL = 60000; // 60 seconds
        private static final int DEFAULT_LEASE_BREAK_TIMEOUT = 60; // 60 seconds per MS-SMB2
    
        /**
         * Create a new lease manager
         *
         * @param context CIFS context
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
Back to top