- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 52 for donde (0.03 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
* and provides methods for logging messages using {@link LogHelper}. * </p> * * <p> * The crawling process continues until the crawler status is {@link CrawlerStatus#DONE} or the * {@link #isContinue(int)} method returns {@code false}. * </p> * */ public class CrawlerThread implements Runnable { /** * Constructs a new CrawlerThread. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
int NT_STATUS_PASSWORD_EXPIRED = 0xC0000071; /** The referenced account is currently disabled */ int NT_STATUS_ACCOUNT_DISABLED = 0xC0000072; /** No mapping between account names and security IDs was done */ int NT_STATUS_NONE_MAPPED = 0xC0000073; /** The security ID structure is invalid */ int NT_STATUS_INVALID_SID = 0xC0000078; /** The requested pipe instance is not available */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String READY = "ready"; /** Status constant representing running state. */ public static final String RUNNING = "running"; /** Status constant representing done/completed state. */ public static final String DONE = "done"; /** Status constant representing successful operation. */ public static final String OK = "ok"; /** Status constant representing failed operation. */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 35.2K bytes - Viewed (0) -
README.md
### Integration Tests Integration tests require a running Fess server with OpenSearch. Follow these steps: #### 1. Build Fess $ mvn antrun:run # Download OpenSearch plugins (if not done) $ mvn package # Build the package #### 2. Start Fess Server $ unzip target/releases/fess-*.zip $ ./fess-*/bin/fess & Wait for Fess to be ready (this may take up to 60 seconds):Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java
super.processCleanupCrawling(objs); if (objs.length > 1 && objs[1] instanceof final UrlQueue<?> urlQueue) { ComponentUtil.getCrawlerStatsHelper().done(urlQueue); } } @Override protected void processProcessChildUrlByException(final Object... objs) { super.processProcessChildUrlByException(objs);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
*/ protected abstract FileEntry open() throws CIFSException; /** * Checks if the enumeration is complete. * * @return true if enumeration is done, false otherwise */ protected abstract boolean isDone(); /** * Fetches more entries from the server. * * @return true if more entries were fetched, false otherwiseRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.7K bytes - Viewed (0) -
CLAUDE.md
suggester.removeDisableIndices(); // Cleanup old indices ``` **Async Operations:** ```java suggester.suggest() .setQuery("search") .execute() .done(response -> { /* handle success */ }) .error(throwable -> { /* handle error */ }); ``` --- ## Important Notes ### Thread Safety - **Suggester**: Thread-safe for queries
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SigningDigest.java
Hexdump.hexdump(log, b, 0, b.length); log.flush(); } updates = 0; return b; } /** * Performs MAC signing of the SMB. This is done as follows. * The signature field of the SMB is overwritted with the sequence number; * The MD5 digest of the MAC signing key + the entire SMB is taken; * The first 8 bytes of this are placed in the signature field.
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
// Stop the crawler crawler.stop(); // Wait for crawler to finish crawler.awaitTermination(5000); assertEquals(CrawlerStatus.DONE, crawler.crawlerContext.getStatus()); dataService.delete(sessionId); } finally { server.stop(); } } public void test_close() throws Exception {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Nov 11 13:40:14 UTC 2025 - 25.8K bytes - Viewed (0)