- Sort Score
- Result 10 results
- Languages All
Results 721 - 730 of 1,215 for parameter (0.04 sec)
-
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
storeData(config, callback, paramMap.newInstance(), configScriptMap, defaultDataMap); } /** * Get the script type. * @param paramMap The parameters. * @return The script type. */ protected String getScriptType(final DataStoreParams paramMap) { final String value = paramMap.getAsString(SCRIPT_TYPE); if (StringUtil.isBlank(value)) {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/fe.tld
<description> Returns query parameters for More Like This. </description> <name>mltQuery</name> <function-class>org.codelibs.fess.taglib.FessFunctions</function-class> <function-signature>java.lang.String mltQuery()</function-signature> <example> ${fe:mltQuery()} </example> </function> <function> <description> Returns query parameters for Geo. </description>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 11:38:54 UTC 2025 - 10.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/DefaultIntervalController.java
/** * Default constructor with default delay values. */ public DefaultIntervalController() { } /** * Constructor with configurable delay parameters. * * @param params map containing delay parameters */ public DefaultIntervalController(final Map<String, Long> params) { Long millis = params.get("delayMillisAfterProcessing"); if (millis != null) {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java
// Assert assertEquals(0, result); } @Test @DisplayName("readParametersWireFormat with various parameters should return 0") void testReadParametersWireFormatVariousParams() { // Test with different parameters int[][] testCases = { { 0, 10 }, { 5, 20 }, { 50, 50 }, { 0, 0 } }; for (int[] testCase : testCases) { // ArrangeRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileAuthentication.java
return "FileAuthentication [fileConfig=" + fileConfig + ", createdBy=" + createdBy + ", createdTime=" + createdTime + ", fileConfigId=" + fileConfigId + ", hostname=" + hostname + ", parameters=" + parameters + ", port=" + port + ", protocolScheme=" + protocolScheme + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", username=" + username + ", docMeta=" + docMeta + "]"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Result.java
* <li>Access to the session context used during processing</li> * <li>Correlation of results with their initiating parameters</li> * </ul> * * @param <REQ> the type of Request that produced this result, ensuring type-safe * access to the original request parameters * * @see Request * @since 4.0.0 */ @Experimental @Immutable public interface Result<REQ extends Request<?>> {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 1.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClient.java
* It extends {@link AutoCloseable} to allow for resource management. */ public interface CrawlerClient extends AutoCloseable { /** * Sets the initialization parameters for the crawler client. * * @param params a map containing the initialization parameters */ void setInitParameterMap(Map<String, Object> params); /** * Executes a request and returns the response data. *Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
paths: /documents: get: tags: - search summary: Finds documents by query description: Finds documents by search conditions operationId: searchDocuments parameters: - name: q in: query description: Search words required: false schema: type: string example: Fess - name: startRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java
import java.util.HashMap; import java.util.Map; import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; /** * Form class for thumbnail request parameters. * Contains the document ID and query parameters needed to retrieve thumbnail images. */ public class ThumbnailForm { /** * The document ID for which to retrieve the thumbnail. */ @Required @Size(max = 100)Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
docs/es/docs/advanced/using-request-directly.md
{* ../../docs_src/using_request_directly/tutorial001.py hl[1,7:8] *} Al declarar un parámetro de *path operation function* con el tipo siendo `Request`, **FastAPI** sabrá pasar el `Request` en ese parámetro. /// tip | Consejo Nota que en este caso, estamos declarando un parámetro de path además del parámetro del request. Así que, el parámetro de path será extraído, validado, convertido al tipo especificado y anotado con OpenAPI.Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 2.4K bytes - Viewed (0)