- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 1,721 for a_param (0.08 sec)
-
src/main/java/jcifs/spnego/NegTokenInit.java
} /** * Constructs a NegTokenInit with the specified parameters * @param mechanisms the array of supported authentication mechanisms * @param contextFlags the context flags indicating security capabilities * @param mechanismToken the initial token for the selected mechanism * @param mechanismListMIC the MIC over the mechanism list */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
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/exception/DataStoreException.java
* * @param message the error message * @param cause the underlying cause of this exception */ public DataStoreException(final String message, final Throwable cause) { super(message, cause); } /** * Creates a new DataStoreException with the specified message. * * @param message the error message */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java
* * @param config the configuration to use * @param sid the search ID from a previous FindFirst2 response * @param resumeKey the resume key for continuing the search * @param filename the last filename from the previous response * @param batchCount the number of entries to return * @param batchSize the maximum size of the response buffer */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
final String proxyHost = (String) paramMap.get(Param.Client.PROXY_HOST); final String proxyPort = (String) paramMap.get(Param.Client.PROXY_PORT); if (StringUtil.isNotBlank(proxyHost) && StringUtil.isNotBlank(proxyPort)) { // proxy credentials if (paramMap.get(Param.Client.PROXY_USERNAME) != null && paramMap.get(Param.Client.PROXY_PASSWORD) != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SynonymPager.java
* * @return The total record count. */ public int getAllRecordCount() { return allRecordCount; } /** * Sets the total number of records. * * @param allRecordCount The total record count. */ public void setAllRecordCount(final int allRecordCount) { this.allRecordCount = allRecordCount; } /** * Gets the total number of pages.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
* Sets up the search conditions for retrieving file authentication configurations. * This method configures the query conditions and ordering for the database query. * * @param cb the condition bean for building the query * @param fileAuthenticationPager the pager containing search criteria */ protected void setupListCondition(final FileAuthenticationCB cb, final FileAuthPager fileAuthenticationPager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K 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/core/collection/IndexedIterator.java
protected int index; /** * Returns an {@link Iterable} that wraps an {@link IndexedIterator} for use in a for-each statement. * * @param <T> the element type * @param iterable the iterable (must not be {@literal null}) * @return an {@link Iterable} wrapping an {@link IndexedIterator} */ public static <T> Iterable<Indexed<T>> indexed(final Iterable<T> iterable) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 3.3K bytes - Viewed (0)