Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 185 for tracking (0.04 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                }
            });
        }
    
        /**
         * Marks statistics tracking as complete for the specified crawler object.
         * Decrements the reference count and if it reaches zero, removes the
         * statistics object from cache and outputs the final statistics.
         *
         * @param keyObj the crawler object to complete tracking for
         */
        public void done(final Object keyObj) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

                        }
                    }
    
                    if (channel != null) {
                        try {
                            channel.close();
                        } catch (IOException e) {
                            getLogger().debug("Error closing FileChannel for resolution tracking file: " + touchfile, e);
                        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Apr 22 22:13:51 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

            super.setUp();
            purgeLogJob = new PurgeLogJob();
        }
    
        // Test all services execute successfully
        public void test_execute_allSuccess() {
            // Setup tracking variables
            final boolean[] deleteCrawlingInfoCalled = { false };
            final boolean[] deleteSearchLogCalled = { false };
            final boolean[] deleteJobLogCalled = { false };
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

    import jakarta.servlet.http.HttpSession;
    
    /**
     * Helper class for managing user information and session tracking in Fess search system.
     * This class handles user identification through cookies, session management, and query tracking.
     * It provides functionality for generating unique user codes, managing user sessions,
     * and tracking search result document IDs for analytics and personalization.
     *
     */
    public class UserInfoHelper {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/util/ResourceManager.java

         */
        public static ResourceManager getInstance() {
            return INSTANCE;
        }
    
        /**
         * Register a resource for tracking
         *
         * @param resource the resource to track
         * @return resource ID for tracking
         */
        public String registerResource(AutoCloseable resource) {
            if (resource == null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/AuthenticationRateLimiter.java

        private final int maxAttemptsPerIp;
        private final int maxGlobalAttemptsPerMinute;
        private final Duration lockoutDuration;
        private final Duration cleanupInterval;
    
        // Tracking maps
        private final Map<String, AccountAttempts> accountAttempts = new ConcurrentHashMap<>();
        private final Map<String, IpAttempts> ipAttempts = new ConcurrentHashMap<>();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  7. docs/SMB3_IMPLEMENTATION_PLAN.md

    - [ ] Add lease context to Create request/response
    - [ ] Implement lease break notification handling
    - [ ] Modify SmbFile to support lease-based caching
    - [ ] Add lease upgrade/downgrade logic
    - [ ] Implement lease epoch tracking for v2 leases
    
    #### 1.3 Integration Points
    - Modify `Smb2CreateRequest` to include lease contexts
    - Update `SmbFile` caching logic to use leases
    - Add lease break handling in `SmbTransport`
    
    ---
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

            }
    
            return needsRotation;
        }
    
        /**
         * Reset key rotation tracking after new keys are established
         */
        public void resetKeyRotationTracking() {
            bytesEncrypted.set(0);
            encryptionStartTime = System.currentTimeMillis();
            log.debug("Key rotation tracking reset");
        }
    
        /**
         * Rotate encryption keys for enhanced security
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

        // Proactive health monitoring
        private volatile boolean proactiveHealthCheckEnabled = true;
        private final long proactiveCheckInterval = DEFAULT_PROACTIVE_CHECK_INTERVAL;
    
        // Connection failure tracking
        private final Map<String, Long> lastFailureTimes = new ConcurrentHashMap<>();
        private final Map<String, AtomicInteger> consecutiveFailures = new ConcurrentHashMap<>();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * When enabled, user search queries are logged for analysis.
         */
        @Size(max = 10)
        public String searchLog;
    
        /**
         * Enable or disable user information tracking.
         * When enabled, user information is stored and tracked.
         */
        @Size(max = 10)
        public String userInfo;
    
        /**
         * Enable or disable user favorite functionality.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top