- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 620 for executes (0.64 sec)
-
mockwebserver/src/main/kotlin/mockwebserver3/internal/TriggerSink.kt
* See the License for the specific language governing permissions and * limitations under the License. * */ package mockwebserver3.internal import okio.Buffer import okio.Sink /** * A sink that executes [trigger] after [triggerByteCount] bytes are written, and then skips all * subsequent bytes. */ internal class TriggerSink( private val delegate: Sink, private val triggerByteCount: Long,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java
// Default constructor } private static final Logger logger = LogManager.getLogger(PingSearchEngineJob.class); /** * Executes the ping job. * * @return the execution result */ public String execute() { final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient(); final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/impl/ScriptExecutor.java
/** * 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<>(); params.put("executor", this);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
final ActionType<Response> action, final Request request) { return client.execute(action, request); } /** * Executes an action asynchronously with a callback. * * @param <Request> the request type * @param <Response> the response type * @param action the action to execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java
name = StringUtil.decamelize(this.getClass().getSimpleName().replace("Searcher", StringUtil.EMPTY)).toLowerCase(Locale.ENGLISH); } return name; } /** * Executes a search operation with the specified parameters. * This method must be implemented by concrete searcher classes. * * @param query the search query string
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/stream/StreamUtil.java
public StreamOf(final Supplier<Stream<T>> supplier) { this.supplier = supplier; } /** * Executes the provided {@link Consumer} with a {@link Stream} obtained from the supplier. * The stream is automatically closed after the consumer is executed. * * @param stream the {@link Consumer} to process the {@link Stream} */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
return this; } /** * Executes the Python script job. * Creates a session ID, sets up the execution environment, and runs the Python script * with the configured filename and arguments. * * @return a string containing the execution result and any error messages */ @Override public String execute() { final StringBuilder resultBuf = new StringBuilder();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K 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) -
src/main/java/org/codelibs/fess/job/PurgeLogJob.java
* Default constructor for PurgeLogJob. * Creates a new instance of the log purging job with default settings. */ public PurgeLogJob() { // Default constructor } /** * Executes the log purging job. * Performs the following cleanup operations: * - Purges old crawling sessions * - Purges search logs older than configured days * - Purges job logs older than configured days
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0)