Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 322 for tracking (0.11 sec)

  1. docs/security/security_providers.md

    | [GraalVM]        | ✅      |              | [OpenJDK]       | Only actively tested with JDK 11, not with 8 target          |
    | [Bouncy Castle]  | ✅      |              | [Bouncy Castle] | [Tracking bug.][bug5698]                                     |
    | [Conscrypt]      | ✅      | ✅           | [BoringSSL]     | Activated if Conscrypt is first registered provider.         |
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/test/java/jcifs/util/ResourceManagerTest.java

            resourceManager = ResourceManager.getInstance();
            // Configure with shorter intervals for testing
            resourceManager.configure(1000, 100, true, true);
        }
    
        /**
         * Test resource for tracking
         */
        static class TestResource implements AutoCloseable {
            private final AtomicBoolean closed = new AtomicBoolean(false);
            private final String name;
    
            TestResource(String name) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

         */
        public String hash;
    
        /**
         * Query identifier associated with the search that led to this document access.
         * This is required for tracking and analytics purposes.
         */
        @Required
        public String queryId;
    
        /**
         * Order or ranking position of the document in search results.
         * This optional field helps track which result position was clicked.
         */
        public Integer order;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Action class for handling document redirection requests.
     * This action processes "go" requests that redirect users to specific documents
     * while tracking click events and handling various URL types including file system paths.
     */
    public class GoAction extends FessSearchAction {
    
        /**
         * Default constructor for GoAction.
         */
        public GoAction() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
Back to top