- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 308 for manager (0.03 sec)
-
dbflute_fess/manage.bat
%~d0 cd %~p0 call _project.bat :: tilde to remove double quotation set FIRST_ARG=%~1 if "%FIRST_ARG%"=="" set FIRST_ARG="" set SECOND_ARG=%2 if "%SECOND_ARG%"=="" set SECOND_ARG="" call %DBFLUTE_HOME%\etc\cmd\_df-manage.cmd %MY_PROPERTIES_PATH% "%FIRST_ARG%" %SECOND_ARG% if "%pause_at_end%"=="y" ( pause
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 332 bytes - Viewed (0) -
dbflute_fess/manage.sh
#!/bin/bash cd `dirname $0` . ./_project.sh FIRST_ARG=$1 SECOND_ARG=$2 sh $DBFLUTE_HOME/etc/cmd/_df-manage.sh $MY_PROPERTIES_PATH $FIRST_ARG $SECOND_ARG taskReturnCode=$? if [ $taskReturnCode -ne 0 ];then exit $taskReturnCode;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 236 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
protected FessConfig fessConfig; /** * Default constructor. */ public LdapManager() { // do nothing } /** * Initializes the LDAP manager. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
* Performs the actual crawling operation for the provided data configurations. * This method manages the creation and execution of crawler threads, * monitors their progress, and handles cleanup operations. * * <p>The method:</p> * <ul> * <li>Creates crawler threads for each data configuration</li> * <li>Manages concurrent execution based on thread count limits</li>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
return "MappingFile [path=" + path + ", mappingItemList=" + mappingItemList + ", id=" + id + "]"; } /** * Inner class for handling updates to the character mapping file. * This class manages the temporary file creation, writing operations, * and atomic updates to ensure data consistency during modifications. */ protected class MappingUpdater implements Closeable {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
docs/contribute/concurrency.md
Since HTTP requests frequently happen in parallel, connection pooling must be thread-safe. These are the primary classes involved with establishing, sharing, and terminating connections: * **RealConnectionPool** manages reuse of HTTP and HTTP/2 connections for reduced latency. Every OkHttpClient has one, and its lifetime spans the lifetime of the OkHttpClient.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 16:35:36 UTC 2022 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: File to Upload */ public static final String LABELS_design_title_file_upload = "{labels.design_title_file_upload}"; /** The key of the message: File Manager */ public static final String LABELS_design_title_file = "{labels.design_title_file}"; /** The key of the message: Upload File */ public static final String LABELS_design_file = "{labels.design_file}";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 146.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/timer/TimeoutManager.java
timeoutTaskList.addLast(task); start(); return task; } /** * Returns the number of managed {@link TimeoutTask}. * * @return the number of managed {@link TimeoutTask} */ public synchronized int getTimeoutTaskCount() { return timeoutTaskList.size(); } @Override public void run() {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/WebApiFilter.java
import jakarta.servlet.http.HttpServletResponse; /** * Servlet filter for processing web API requests. * This filter intercepts HTTP requests and delegates processing to appropriate web API managers. */ public class WebApiFilter implements Filter { /** * Default constructor. */ public WebApiFilter() { // Default constructor } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/JobProcess.java
*/ package org.codelibs.fess.util; import java.util.function.Consumer; import org.codelibs.fess.Constants; /** * A wrapper class that manages a system process for job execution. * This class provides access to the underlying process and manages * the input stream thread for capturing process output. */ public class JobProcess { /** * The underlying system process. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0)