- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 544 for executes (0.05 sec)
-
src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java
} // Test execute() method with successful processing public void test_execute_success() { String result = updateLabelJob.execute(); assertNotNull(result); assertTrue(result.contains("3 docs")); // 3 documents processed assertFalse(result.contains("exception")); } // Test execute() method with query builder
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
return (context, query, boost) -> filter.execute(context, query, boost, chain); } /** * Creates the default filter chain that executes query commands. * This chain looks up the appropriate query command based on the query class name * and executes it. If no command is found, throws an InvalidQueryException. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/PreparedStatementUtil.java
} } /** * Executes the statement. * * @param ps * {@link PreparedStatement}. Must not be {@literal null}. * @return Whether the result is a {@link ResultSet}. * @throws SQLRuntimeException * If a {@link SQLException} occurs. * @see PreparedStatement#execute() */ public static boolean execute(final PreparedStatement ps) throws SQLRuntimeException {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/concurrent/CommonPoolUtil.java
protected CommonPoolUtil() { // nothing } /** * Executes the given task in the common ForkJoinPool. * * @param task * the task to execute */ public static void execute(final Runnable task) { ForkJoinPool.commonPool().execute(() -> { final Thread currentThread = Thread.currentThread();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
protected abstract String getExecuteType(); /** * Executes the job with the specified job executor. * This method sets the job executor and then calls the abstract execute method. * * @param jobExecutor the job executor to use for execution * @return the execution result message or summary */ public String execute(final JobExecutor jobExecutor) { jobExecutor(jobExecutor);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
native-image-tests/README.md
Native Image Tests ================== This executes OkHttp's test suite inside a Graalvm image. Execute ------- The native image runs JUnit 5 tests in the project. ``` ./gradlew -PgraalBuild=true --info native-image-tests:nativeTest
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 21:44:11 UTC 2025 - 242 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeDocJob.java
*/ public PurgeDocJob() { // Default constructor } /** * Executes the document purging job. * Removes all documents from the search index that have expired based on their expires field. * * @return a string containing the execution result and any error messages */ public String execute() { final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java
* (unless the executor has been shutdown). * * <p>The returned executor is backed by the executor returned by {@link * MoreExecutors#newDirectExecutorService} and subject to the same constraints. * * <p>Although all tasks are immediately executed in the thread that submitted the task, this
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/JobExecutor.java
} /** * Executes a script with the specified script type and content. * * @param scriptType the type of script to execute * @param script the script content to execute * @return the result of script execution */ public abstract Object execute(String scriptType, String script); /** * Initiates shutdown of the job executor.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java
private long expiry = 30 * 24 * 60 * 60 * 1000L; /** * Executes the thumbnail purging job. * Removes thumbnail files that have exceeded the configured expiration time. * * @return a string containing the execution result with the number of deleted files or error message */ public String execute() { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0)