- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 1,723 for m_param (0.04 sec)
-
android/guava/src/com/google/common/primitives/Booleans.java
* returned, containing the values of {@code array}, and zeroes in the remaining places. * * @param array the source array * @param minLength the minimum length the returned array must guarantee * @param padding an extra amount to "grow" the array by if growth is necessary * @throws IllegalArgumentException if {@code minLength} or {@code padding} is negative
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Booleans.java
* returned, containing the values of {@code array}, and zeroes in the remaining places. * * @param array the source array * @param minLength the minimum length the returned array must guarantee * @param padding an extra amount to "grow" the array by if growth is necessary * @throws IllegalArgumentException if {@code minLength} or {@code padding} is negative
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
param.setSourceSubsampling(samplingWidth <= 0 ? 1 : samplingWidth, samplingHeight <= 0 ? 1 : samplingHeight, 0, 0); param.setSourceRegion(new Rectangle(width, height > width ? width : height)); final BufferedImage image = reader.read(0, param);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
* * @param fields array of field names that should not be analyzed */ public void setNotAnalyzedFields(final String[] fields) { notAnalyzedFieldSet = new HashSet<>(); Collections.addAll(notAnalyzedFieldSet, fields); } /** * Checks if the specified field can be used for sorting. * * @param field the field name to check
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java
} /** * Sets the boost value. * * @param boost the boost value to set * @return the query builder */ @Override public QueryBuilder boost(final float boost) { return queryBuilder.boost(boost); } /** * Applies a filter to the query. * * @param filter the filter query builder * @return the query builder */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/Curl.java
* * @param url the URL to which the PUT request will be sent * @return a new CurlRequest object configured with the PUT method and the specified URL */ public static CurlRequest put(final String url) { return new CurlRequest(Method.PUT, url); } /** * Creates a new CurlRequest with the DELETE method for the specified URL. *
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LanguageHelper.java
/** * Sets the language detector. * * @param detector The language detector. */ public void setDetector(final LanguageDetector detector) { this.detector = detector; } /** * Creates a script for updating a document with language information. * * @param doc The document. * @param code The script code. * @return The script. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
} } return params; } /** * Get the extracted data. * @param extractor The extractor. * @param in The input stream. * @param params The parameters. * @return The extracted data. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlResponse.java
if (contentCache != null) { contentCache.close(); } } /** * Gets the content of the response using the provided parser function. * * @param <T> the type of the parsed content. * @param parser the function to parse the content. * @return the parsed content. */ public <T> T getContent(final Function<CurlResponse, T> parser) { return parser.apply(this); }
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/MockWitnessService.java
} return serverSocket.getLocalPort(); } /** * Simulate a witness registration * * @param shareName the share name * @param serverAddress the server address * @param flags the registration flags * @return the registration ID */ public String registerWitness(String shareName, String serverAddress, int flags) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 8.2K bytes - Viewed (0)