- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 213 for dangling (0.07 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProvider.java
this.fessConfig = fessConfig; } // =================================================================================== // Basic Handling // ============== @Override protected TimeZone getCentralTimeZone() { return FessUserTimeZoneProcessProvider.centralTimeZone; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
dbflute_fess/dfprop/outsideSqlMap.dfprop
# - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o procedureSynonymHandlingType: (NotRequired - Default NONE) # You can specify the handling type of procedure synonym. # NONE - No handling. (default) # INCLUDE - It includes procedure synonyms. # SWITCH - It switches all normal procedures to procedure synonyms. # #; procedureSynonymHandlingType = NONE
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/exception/SearchQueryException.java
* * This exception is typically thrown when query parsing, serialization, * or processing fails during search operations. It extends FessSystemException * to provide specific handling for search query-related errors. */ public class SearchQueryException extends FessSystemException { /** Serial version UID for serialization. */ private static final long serialVersionUID = 1L; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
private static final Logger logger = LogManager.getLogger(SuggestHelper.class); /** The separator for text content. */ protected static final String TEXT_SEP = " "; /** The suggester instance for handling suggest operations. */ protected Suggester suggester; /** The Fess configuration for accessing system settings. */ protected FessConfig fessConfig; /** The set of field names for content. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/DownloadBody.java
import org.codelibs.fess.app.web.admin.dict.synonym.DownloadForm; /** * Download body for synonym dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading synonym dictionaries via REST API. * */ public class DownloadBody extends DownloadForm { /** * Default constructor. */ public DownloadBody() { super();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.curl; /** * Custom exception class for handling errors related to Curl operations. * This class extends {@link RuntimeException} and provides constructors * to create an exception instance with a message and an optional cause. * * <p>Usage examples:</p> * <pre>
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorBadrequrestAction.java
*/ package org.codelibs.fess.app.web.error; import org.codelibs.fess.app.web.base.FessSearchAction; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; /** * Action class for handling HTTP 400 Bad Request error pages. * This action displays error pages when a client request contains * invalid syntax or cannot be fulfilled due to malformed request parameters. */
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/app/web/admin/sereq/UploadForm.java
/** * Form for uploading search request files to the Fess search engine. * This form is used in the admin interface to upload search request configuration files * that define search behaviors and request handling. */ public class UploadForm { /** * The multipart file containing the search request configurations to be uploaded. * This file should contain search request definitions and configurations. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlRequest.java
return this; } /** * Connects to the URL and executes the request. * * @param actionListener the action listener for handling the response * @param exceptionListener the exception listener for handling exceptions */ public void connect(final Consumer<HttpURLConnection> actionListener, final Consumer<Exception> exceptionListener) { final Runnable task = () -> {
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
import jakarta.servlet.http.HttpServletResponse; /** * Base implementation for API managers providing common functionality. * Abstract class that provides format detection and response handling for web APIs. */ public abstract class BaseApiManager implements WebApiManager { private static final String API_FORMAT_TYPE = "apiFormatType"; /** Path prefix for API endpoints. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0)