- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 672 for executeOn (0.05 sec)
-
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
*/ public FuzzyQueryCommand() { super(); } @Override protected String getQueryClassName() { return FuzzyQuery.class.getSimpleName(); } /** * Executes the fuzzy query command to convert a Lucene FuzzyQuery into an OpenSearch QueryBuilder. * * @param context the query context containing search configuration
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
import org.codelibs.fess.util.ResourceUtil; import org.codelibs.fess.util.SystemUtil; import jakarta.servlet.ServletContext; /** * Job class for generating thumbnails for documents in the search engine. * This job executes the ThumbnailGenerator process as a separate JVM process * to create thumbnail images for supported document types. */ public class GenerateThumbnailJob extends ExecJob { /** Logger for this class. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java
new IteratorOperation() { @Override public @Nullable Object execute(Iterator<?> iterator) { iterator.remove(); return null; } }; private static final IteratorOperation NEXT_METHOD = new IteratorOperation() { @Override public @Nullable Object execute(Iterator<?> iterator) { return iterator.next(); } };
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
assertFalse(execJob.processTimeout); } // Test execute method public void test_execute() { assertEquals("success", execJob.execute()); execJob.setExecuteResult("custom result"); assertEquals("custom result", execJob.execute()); } // Test execute with JobExecutor public void test_execute_withJobExecutor() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/WrappingExecutorService.java
for (Callable<T> task : tasks) { builder.add(wrapTask(task)); } return builder.build(); } // These methods wrap before delegating. @Override public final void execute(Runnable command) { delegate.execute(wrapTask(command)); } @Override public final <T extends @Nullable Object> Future<T> submit(Callable<T> task) { return delegate.submit(wrapTask(checkNotNull(task))); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 5.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java
} abstract static class OldAbstractFuture<V> implements ListenableFuture<V> { /** Synchronization control for AbstractFutures. */ private final Sync<V> sync = new Sync<V>(); // The execution list to hold our executors. private final ExecutionList executionList = new ExecutionList(); /** Constructor for use by subclasses. */ protected OldAbstractFuture() {} /*
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jan 30 16:59:10 UTC 2025 - 13.7K bytes - Viewed (0) -
dbflute_fess/dfprop/outsideSqlMap.dfprop
# and not-param-result are auto-generated. # And also not-param-result's properties are auto-generated. # Target procedures are executed actually at Sql2Entity task. # (because of getting from execution meta data (result set meta data)) # This property is valid only when isGenerateProcedureParameterBean is true. # ; isGenerateProcedureCustomizeEntity = false
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 25 06:04:16 UTC 2015 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; import org.opensearch.search.sort.SortOrder; /** * Command class for handling term query execution and conversion. * This class processes Lucene TermQuery objects and converts them to OpenSearch QueryBuilder instances. */ public class TermQueryCommand extends QueryCommand {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
/** * Performs a search operation and populates the search render data with results. * * This method handles the complete search workflow including parameter processing, * query execution, result formatting, and logging. It supports automatic retry * with escaped queries if the initial search fails. * * @param searchRequestParams The search request parameters
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java
import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; import io.restassured.RestAssured; import io.restassured.path.json.JsonPath; /** * Integration Tests which need an execution of crawler * - /api/admin/joblog * - /api/admin/crawlinginfo * - /api/admin/failureurl * - /api/admin/searchlist * */ @Tag("it") public class CrawlerLogTests extends CrawlTestBase {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.1K bytes - Viewed (0)