- Sort Score
- Result 10 results
- Languages All
Results 711 - 720 of 2,354 for param1 (0.04 sec)
-
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java
* @since 3.8.1 **/ boolean isBlocked(); /** * @param blocked block the repository? * @since 3.8.1 **/ void setBlocked(boolean blocked); // // New interface methods for the repository system. // /** * * @param artifact an artifact * @return found artifact * @since 3.0-alpha-3 */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.3K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
* Processes special query prefixes (allinurl:, allintitle:) and initializes * request-scoped attributes for highlighting and field logging. * @param queryString The query string to process. * @param isQuery Whether this is a search query (enables highlighting and logging). */ @SuppressWarnings("unchecked") public QueryContext(final String queryString, final boolean isQuery) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.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) -
guava/src/com/google/common/io/Resources.java
/** * Streams lines from a URL, stopping when our callback returns false, or we have read all of the * lines. * * @param url the URL to read from * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for * helpful predefined constants * @param callback the LineProcessor to use to handle the lines * @return the output of processing the lines
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 7.4K bytes - Viewed (0) -
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) -
src/main/java/org/codelibs/fess/helper/NotificationHelper.java
/** Line feed character for message formatting. */ protected static final char LF = '\n'; /** * Sends notifications to configured platforms. * * @param cardView the card view for the notification * @param discloser the mail posting discloser */ public void send(final CardView cardView, final SMailPostingDiscloser discloser) { sendToSlack(cardView, discloser);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java
* * @param config * the configuration to use for this request */ public Smb2QueryInfoRequest(final Configuration config) { this(config, Smb2Constants.UNSPECIFIED_FILEID); } /** * Constructs a SMB2 query info request with the specified configuration and file ID * * @param config
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakAcknowledgment.java
private int flags; private Smb2LeaseKey leaseKey; private int leaseState; /** * Create a lease break acknowledgment * * @param config configuration * @param leaseKey lease key * @param leaseState acknowledged lease state */ public Smb2LeaseBreakAcknowledgment(Configuration config, Smb2LeaseKey leaseKey, int leaseState) { super(config, SMB2_OPLOCK_BREAK);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/LruHashMap.java
* Creates an {@link LruHashMap}. * * @param limitSize the upper limit on the number of entries */ public LruHashMap(final int limitSize) { this(limitSize, DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR); } /** * Creates an {@link LruHashMap}. * * @param limitSize the upper limit on the number of entries * @param initialCapacity the initial capacity
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.3K 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)