Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for eussions (0.13 sec)

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

        }
    
        /**
         * Checks if HTTP sessions are enabled.
         *
         * @return true if sessions are used, false otherwise
         */
        public boolean isUseSession() {
            return useSession;
        }
    
        /**
         * Sets whether to use HTTP sessions.
         *
         * @param useSession true to enable sessions, false to disable
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

        private TimeManager timeManager;
    
        /** The async manager for handling asynchronous operations. */
        @Resource
        private AsyncManager asyncManager;
    
        /** The session manager for handling user sessions. */
        @Resource
        private SessionManager sessionManager;
    
        /** The Fess configuration providing application settings. */
        @Resource
        private FessConfig fessConfig;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

                    }
                }
            }
    
            /**
             * Deletes old documents from the search index.
             * This method removes documents that were indexed in previous
             * crawling sessions for the same data configuration, keeping
             * only the documents from the current session.
             *
             * <p>The deletion process:</p>
             * <ul>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

         * <li>Applies document boosting and metadata enhancements</li>
         * <li>Sends processed documents to the search engine</li>
         * <li>Cleans up processed data and manages crawler sessions</li>
         * </ul>
         *
         * <p>The method includes error handling, retry logic, and will terminate
         * if too many empty results are encountered or if a system shutdown is requested.
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exec/Crawler.java

                    duplicateHostHelper.init();
                } catch (final Exception e) {
                    logger.warn("Could not initialize duplicateHostHelper.", e);
                }
    
                // delete expired sessions
                crawlingInfoService.deleteSessionIdsBefore(options.sessionId, options.name, systemHelper.getCurrentTimeAsLong());
    
                final List<String> webConfigIdList = options.getWebConfigIdList();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            indexUpdater.addFinishedSessionId(sessionId);
            assertTrue(indexUpdater.finishedSessionIdList.contains(sessionId));
        }
    
        // Test addFinishedSessionId with multiple sessions
        public void test_addFinishedSessionId_multiple() {
            indexUpdater.addFinishedSessionId("session1");
            indexUpdater.addFinishedSessionId("session2");
            indexUpdater.addFinishedSessionId("session3");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_2x.md

     *  Fix: Don't leak connections when using ALPN on the desktop.
     *  Fix: Update Jetty ALPN to `7.1.2.v20141202` (Java 7) and `8.1.2.v20141202` (Java 8).
        This fixes a bug in resumed TLS sessions where the wrong protocol could be
        selected.
     *  Fix: Don't crash in SPDY and HTTP/2 when disconnecting before connecting.
     *  Fix: Avoid a reverse DNS-lookup for a numeric proxy address
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_3x.md

        not send the `Expect: continue` request header.
     *  Fix: Do not count web sockets toward the dispatcher's per-host connection
        limit.
     *  Fix: Avoid using invalid HTTPS sessions. This prevents OkHttp from crashing
        with the error, `Unexpected TLS version: NONE`.
     *  Fix: Don't corrupt the response cache when a 304 (Not Modified) response
        overrides the stored "Content-Encoding" header.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.4.md

    * Add support for terminal resizing for exec, attach, and run. Note that for Docker, exec sessions ([#25273](https://github.com/kubernetes/kubernetes/pull/25273), [@ncdc](https://github.com/ncdc))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.10.md

    * PVC Protection alpha feature was renamed to Storage Protection. The Storage Protection feature is beta. ([#59052](https://github.com/kubernetes/kubernetes/pull/59052), [@pospispa](https://github.com/pospispa))
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
Back to top