- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 346 for executeOn (0.05 sec)
-
src/main/java/org/codelibs/fess/util/QueryResponseList.java
} /** * Gets the total execution time for the search request in milliseconds. * * @return the execution time in milliseconds */ public long getExecTime() { return execTime; } /** * Sets the total execution time for the search request in milliseconds. * * @param execTime the execution time in milliseconds */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.5K bytes - Viewed (0) -
README.md
crawler.addUrl("https://example.com"); crawler.crawlerContext.setMaxAccessCount(500); String sessionId = crawler.execute(); ``` ### Background Crawling ```java // Configure for background execution crawler.setBackground(true); String sessionId = crawler.execute(); // Check crawling status while (crawler.crawlerContext.getStatus() == CrawlerStatus.RUNNING) { Thread.sleep(1000);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/RequestBuilder.java
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.job.JobManager; import org.lastaflute.job.LaJob; import org.lastaflute.job.LaJobRuntime; import org.lastaflute.job.key.LaJobUnique; /** * This job executes a script. */ public class ScriptExecutorJob implements LaJob { /** * Constructor. */ public ScriptExecutorJob() { super(); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 22.7K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/job/impl/ScriptExecutor.java
import org.codelibs.fess.job.JobExecutor; import org.codelibs.fess.util.ComponentUtil; /** * This class executes a script. */ public class ScriptExecutor extends JobExecutor { /** * Constructor. */ public ScriptExecutor() { super(); } @Override public Object execute(final String scriptType, final String script) { final Map<String, Object> params = new HashMap<>();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
// Default constructor } /** * Executes the query command and returns a QueryBuilder. * @param context The query context containing search parameters. * @param query The Lucene query to execute. * @param boost The boost factor to apply. * @return The executed QueryBuilder. */ public abstract QueryBuilder execute(final QueryContext context, final Query query, final float boost);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 11:39:05 UTC 2025 - 11.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java
client.setInitParameterMap(params); } /** * Executes the request with retry logic. * @param request The request data. * @return The response data. */ @Override public ResponseData execute(final RequestData request) { if (listener != null) { listener.onRequestStart(this, request); }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/interval/impl/HostIntervalControllerTest.java
assertTrue(true); } catch (final InterruptedException e) { fail("Interrupted during execution"); } catch (final ExecutionException e) { fail("Execution failed: " + e.getMessage()); } finally { executor.shutdown(); try {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java
import org.lastaflute.job.LaJobScheduler; import jakarta.annotation.Resource; /** * Job scheduler for managing all scheduled jobs in Fess. * Implements LaJobScheduler to handle job scheduling and execution. */ public class AllJobScheduler implements LaJobScheduler { private static final Logger logger = LogManager.getLogger(AllJobScheduler.class); /** Application type identifier for job context */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.3K bytes - Viewed (0)