- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 47 for IDs (0.48 sec)
-
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19.6K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 31.4K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19.5K bytes - Viewed (1) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
} // Compute Resource Group IDs with Resource Domain ID to get SIDs this.resourceGroupSids = new SID[resourceGroups.length]; for (int i = 0; i < resourceGroups.length; i++) { this.resourceGroupSids[i] = new SID(resourceDomainId, resourceGroups[i].getId()); } // Compute User IDs with Domain ID to get User SIDsRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.3K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 21.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MemoryDataHelper.java
public class MemoryDataHelper { /** Map of session IDs to URL queues for managing crawling queues. */ protected volatile Map<String, Queue<UrlQueueImpl<Long>>> urlQueueMap = new HashMap<>(); /** Map of session IDs to access result maps for storing crawling results. */ protected volatile Map<String, Map<String, AccessResultImpl<Long>>> sessionMap = new HashMap<>(); /** Map of session IDs to include URL patterns for filtering URLs. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
* * <p> * The class uses a static {@code idCount} to generate unique IDs for each access result. * The {@code idCountLock} object is used to synchronize access to the {@code idCount} variable, * ensuring that IDs are generated in a thread-safe manner. * </p> * * <p> * The class also provides methods to get the count of access results for a given session,Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/EncryptionNegotiateContext.java
private int[] ciphers; /** * Constructs an encryption negotiate context. * * @param config the configuration (currently unused) * @param ciphers array of encryption cipher IDs to negotiate */ public EncryptionNegotiateContext(final Configuration config, final int ciphers[]) { this.ciphers = ciphers; } /** * Default constructor for decoding. */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 3.8K bytes - Viewed (0)