Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 358 for sessions (0.04 sec)

  1. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

            // Test options parsing instead
            SuggestCreator.Options options = new SuggestCreator.Options();
            options.sessionId = "test-session";
            options.name = "test-name";
            assertEquals("test-session", options.sessionId);
            assertEquals("test-name", options.name);
        }
    
        // Test create with search log enabled
        public void test_create_searchLogEnabled() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

        }
    
        /**
         * Stores a crawling configuration in the session-based storage with a unique identifier.
         * The generated session count ID combines the session ID with an incrementing counter.
         *
         * @param sessionId the session identifier
         * @param crawlingConfig the crawling configuration to store
         * @return the unique session count ID that can be used to retrieve the stored configuration
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

         * Command-line options for the thumbnail generator.
         */
        protected static class Options {
            /**
             * Session ID for filtering thumbnail generation.
             */
            @Option(name = "-s", aliases = "--sessionId", metaVar = "sessionId", usage = "Session ID")
            protected String sessionId;
    
            /**
             * Name identifier for the thumbnail generation task.
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

                    return new ArrayList<>(); // Always return empty for fast tests
                }
    
                public String store(String sessionId, DataConfig dataConfig) {
                    return sessionId + "-" + dataConfig.getId();
                }
    
                public void remove(String sessionCountId) {
                    // No-op
                }
            }, "crawlingConfigHelper");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

         * Initiates crawling for specified web and file configurations.
         *
         * @param sessionId The session ID for this crawling operation
         * @param webConfigIdList List of web configuration IDs to crawl, null for all
         * @param fileConfigIdList List of file configuration IDs to crawl, null for all
         */
        public void crawl(final String sessionId, final List<String> webConfigIdList, final List<String> fileConfigIdList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/CrawlJob.java

            if (sessionId == null) { // create session id
                final SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
                sessionId = sdf.format(new Date());
            }
            resultBuf.append("Session Id: ").append(sessionId).append("\n");
            resultBuf.append("Web  Config Id:");
            if (webConfigIds == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

         *
         * @param parentUrl the parent URL to get encoding for
         * @param sessionId the session ID for the crawling session
         * @return the character encoding, or null if not found
         */
        default String getParentEncoding(final String parentUrl, final String sessionId) {
            final String key = sessionId + ":" + parentUrl;
            String enc = parentEncodingMap.get(key);
            if (enc != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/ExecJob.java

            return this;
        }
    
        /**
         * Sets the session ID for this job execution.
         *
         * @param sessionId the unique session identifier
         * @return this ExecJob instance for method chaining
         */
        public ExecJob sessionId(final String sessionId) {
            this.sessionId = sessionId;
            return this;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

        }
    
        // Test session ID generation
        public void test_sessionIdGeneration() {
            assertNull(suggestJob.sessionId);
    
            mockProcessHelper.setExitValue(0);
            suggestJob.execute();
    
            assertNotNull(suggestJob.sessionId);
            assertEquals(15, suggestJob.sessionId.length());
            // Check that session ID contains only alphabetic characters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            assertSame(jobExecutor, execJob.jobExecutor);
            assertSame(execJob, result);
        }
    
        // Test sessionId setter
        public void test_sessionId() {
            String testSessionId = "test-session-123";
            ExecJob result = execJob.sessionId(testSessionId);
            assertEquals(testSessionId, execJob.sessionId);
            assertSame(execJob, result);
        }
    
        // Test logFilePath setter
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top