Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for IDs (0.02 sec)

  1. src/main/java/org/codelibs/fess/job/CrawlJob.java

        /**
         * Array of web crawling configuration IDs to process.
         * If null, all available web configurations will be crawled (when no other config IDs are specified).
         */
        protected String[] webConfigIds;
    
        /**
         * Array of file system crawling configuration IDs to process.
         * If null, all available file configurations will be crawled (when no other config IDs are specified).
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/Crawler.java

     *   -n, --name name               : Name for the crawling session
     *   -w, --webConfigIds ids        : Comma-separated web config IDs
     *   -f, --fileConfigIds ids       : Comma-separated file config IDs
     *   -d, --dataConfigIds ids       : Comma-separated data config IDs
     *   -p, --properties path         : Properties file path
     *   -e, --expires days            : Expires for documents (in days)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

        }
    
        /**
         * Retrieves a list of session IDs with their document counts from the search engine.
         * Uses aggregation to get session segments and their corresponding document counts.
         *
         * @param searchEngineClient the search engine client to perform the query
         * @return a list of maps containing session IDs and their document counts
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

        }
    
        /**
         * Retrieves web crawling configurations filtered by a list of IDs.
         * If the ID list is null, returns all available configurations.
         *
         * @param idList the list of configuration IDs to retrieve, or null for all configurations
         * @return a list of WebConfig objects with the specified IDs
         */
        public List<WebConfig> getWebConfigListByIds(final List<String> idList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/score/ScoreBooster.java

         */
        protected Function<Map<String, Object>, Long> requestHandler = params -> {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String[] ids = idFinder.apply(params);
            if (ids.length == 0) {
                return 0L;
            }
            final SearchEngineClient client = ComponentUtil.getSearchEngineClient();
            if (bulkRequestBuilder == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                        return cookie.getValue();
                    }
                }
            }
            return null;
        }
    
        /**
         * Stores the document IDs associated with a search query for tracking purposes.
         * This method caches the document IDs returned for a specific query to enable click tracking and analytics.
         *
         * @param queryId the unique identifier for the search query
    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/admin/scheduler/AdminSchedulerAction.java

                    final String[] ids = { "", "", "" };
                    if (Constants.WEB_CRAWLER_TYPE.equals(type)) {
                        ids[0] = "\"" + id + "\"";
                    } else if (Constants.FILE_CRAWLER_TYPE.equals(type)) {
                        ids[1] = "\"" + id + "\"";
                    } else if (Constants.DATA_CRAWLER_TYPE.equals(type)) {
                        ids[2] = "\"" + id + "\"";
                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

            assertTrue(result.contains("File Config Id: ALL"));
            assertTrue(result.contains("Data Config Id: ALL"));
        }
    
        // Test execute method with specific config IDs
        public void test_execute_withConfigIds() {
            // Setup test
            crawlJob = new CrawlJob() {
                @Override
                protected int getRunningJobCount() {
                    return 0;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/SessionReuseTest.kt

        client.newCall(request).execute().use { response ->
          assertEquals(200, response.code)
        }
    
        assertEquals(2, sessionIds.size)
        val directSessionIds =
          sslContext.clientSessionContext.ids
            .toList()
            .map { it.toByteString().hex() }
    
        if (platform.isConscrypt()) {
          if (tlsVersion == TlsVersion.TLS_1_3) {
            assertThat(sessionIds[0]).isEmpty()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

                    logger.error("Could not destroy a process correctly.", e);
                }
            }
            return -1;
        }
    
        /**
         * Gets the set of session IDs for all currently running processes.
         *
         * @return set of session IDs for running processes
         */
        public Set<String> getRunningSessionIdSet() {
            return runningProcessMap.keySet();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
Back to top