- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 2,387 for param3 (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/Extractor.java
/** * Extracts text data from the given input stream. * * @param in the input stream to extract text from * @param params a map of parameters to be used during extraction * @return an ExtractData object containing the extracted text */ ExtractData getText(InputStream in, Map<String, String> params); /** * Returns the weight of the extractor.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.6K bytes - Viewed (0) -
api/maven-api-metadata/pom.xml
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Jun 29 22:37:39 UTC 2025 - 2.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MsWordExtractor.java
super(); } /** * Extracts text from the Word input stream. * @param in The input stream. * @param params The parameters. * @return The extracted data. */ @Override public ExtractData getText(final InputStream in, final Map<String, String> params) { if (in == null) { throw new CrawlerSystemException("The inputstream is null."); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClient.java
/** * 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. * * @param data the request data to be executed * @return the response data from the executed request */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MsExcelExtractor.java
super(); } /** * Extracts text from the Excel input stream. * @param in The input stream. * @param params The parameters. * @return The extracted data. */ @Override public ExtractData getText(final InputStream in, final Map<String, String> params) { if (in == null) { throw new CrawlerSystemException("The inputstream is null."); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2K bytes - Viewed (0) -
docs/en/mkdocs.yml
- Tutorial - User Guide: - tutorial/index.md - tutorial/first-steps.md - tutorial/path-params.md - tutorial/query-params.md - tutorial/body.md - tutorial/query-params-str-validations.md - tutorial/path-params-numeric-validations.md - tutorial/query-param-models.md - tutorial/body-multiple-params.md - tutorial/body-fields.md - tutorial/body-nested-models.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 9.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/util/PublishKotlinDslPlugin.kt
requirements { requiresOs(Os.LINUX) } params { param("env.JAVA_HOME", javaHome(BuildToolBuildJvm, Os.LINUX)) param("env.GRADLE_PUBLISH_KEY", "%plugin.portal.publish.key%") param("env.GRADLE_PUBLISH_SECRET", "%plugin.portal.publish.secret%") param("env.PGP_SIGNING_KEY", "%pgpSigningKey%") param("env.PGP_SIGNING_KEY_PASSPHRASE", "%pgpSigningPassphrase%") } steps {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 19 08:02:04 UTC 2025 - 1.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java
* Extracts text from the input stream using the API endpoint. * * @param in the input stream to extract text from * @param params additional parameters * @return the extracted data * @throws ExtractException if extraction fails */ @Override public ExtractData getText(final InputStream in, final Map<String, String> params) { if (logger.isDebugEnabled()) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/DefaultIntervalController.java
* 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) { delayMillisAfterProcessing = millis; } millis = params.get("delayMillisAtNoUrlInQueue"); 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/main/java/org/codelibs/fess/helper/QueryHelper.java
* * @param params parameters to pass to the rescorers during evaluation * @return an array of rescorer builders, filtered to exclude null values */ public RescorerBuilder<?>[] getRescorers(final Map<String, Object> params) { return queryRescorerList.stream().map(r -> r.evaluate(params)).filter(b -> b != null).toArray(n -> new RescorerBuilder<?>[n]); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0)