- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for quelle (0.29 sec)
-
src/main/resources/fess_label_de.properties
labels.dict_synonym_link_delete=Löschen labels.dict_synonym_link_details=Details labels.dict_synonym_link_download=Herunterladen labels.dict_synonym_link_upload=Hochladen labels.dict_synonym_source=Quelle labels.dict_synonym_target=Ziel labels.dict_synonym_button_download=Herunterladen labels.dict_synonym_button_upload=Hochladen labels.dict_synonym_file=Synonymdatei
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 46.9K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
} } } return OptionalEntity.empty(); } /** * Processes the search log queue. * * @param queue The search log queue. */ protected void processSearchLogQueue(final Queue<SearchLog> queue) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String value = fessConfig.getPurgeByBots(); String[] botNames;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 26.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CrawlingParameterUtil.java
return URL_QUEUE_THREAD_LOCAL.get(); } /** * Sets the URL queue for the current thread. If the provided URL queue is null, * the URL queue for the current thread is removed. * * @param urlQueue the URL queue to be set for the current thread, or null to remove the URL queue */ public static void setUrlQueue(final UrlQueue<?> urlQueue) { if (urlQueue == null) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
*/ protected String charsetName = CoreLibConstants.UTF_8; /** * The queue of ciphers for encryption. */ protected Queue<Cipher> encryptoQueue = new ConcurrentLinkedQueue<>(); /** * The queue of ciphers for decryption. */ protected Queue<Cipher> decryptoQueue = new ConcurrentLinkedQueue<>(); /** * Encrypts the given data. *Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 15.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
} /** * Adds a URL to the crawling queue. * @param url The URL to add. */ public void addUrl(final String url) { try { urlQueueService.add(crawlerContext.sessionId, url); if (logger.isDebugEnabled()) { logger.debug("Added URL to queue: url={}, sessionId={}", url, crawlerContext.sessionId); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
/** * Maximum size of the thumbnail generation task queue. */ protected int thumbnailTaskQueueSize = 10000; /** * Number of tasks to process in bulk operations. */ protected int thumbnailTaskBulkSize = 100; /** * Timeout in milliseconds for thumbnail task queue operations. */ protected long thumbnailTaskQueueTimeout = 10 * 1000L;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
} } return true; } /** * Stores child URLs from the given set into the crawling queue for future processing. * This method filters out blank URLs and increments the depth for child URLs. * * @param urlQueue the parent URL queue item * @param childUrlSet the set of child URLs to be queued for crawling */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 19.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerThreadTest.java
crawlerThread.setCrawlerContext(crawlerContext); when(crawlerContainer.available()).thenReturn(true); } /** * Test isValid method with a valid URL queue. */ public void test_isValid_validUrlQueue() throws Exception { final UrlQueue<?> urlQueue = new UrlQueueImpl<>(); urlQueue.setUrl("http://example.com/"); urlQueue.setDepth(1);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 18.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
/** * The FTP client configuration. */ protected FTPClientConfig ftpClientConfig; /** * The queue of FTPClient instances. */ protected final Queue<FTPClient> ftpClientQueue = new ConcurrentLinkedQueue<>(); /** * The active external host. */ protected String activeExternalHost; /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 40K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Number of primary shards for crawler queue index. index.document.crawler.queue.number_of_shards=10 # Number of primary shards for crawler data index. index.document.crawler.data.number_of_shards=10 # Number of primary shards for crawler filter index. index.document.crawler.filter.number_of_shards=10 # Number of replicas for crawler queue index. index.document.crawler.queue.number_of_replicas=1
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0)