- Sort Score
- Result 10 results
- Languages All
Results 751 - 760 of 2,463 for param (0.02 sec)
-
src/main/java/jcifs/pac/PACDecodingException.java
/** * Constructs a new PAC decoding exception with the specified detail message. * @param message the detail message */ public PACDecodingException(final String message) { this(message, null); } /** * Constructs a new PAC decoding exception with the specified cause. * @param cause the cause of the exception */ public PACDecodingException(final Throwable cause) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/exception/SuggestSettingsException.java
/** * Constructs a new SuggestSettingsException with the specified detail message. * @param msg The detail message. */ public SuggestSettingsException(final String msg) { super(msg); } /** * Constructs a new SuggestSettingsException with the specified cause. * @param cause The cause. */ public SuggestSettingsException(final Throwable cause) { super(cause);
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/CIFSUnsupportedCryptoException.java
* * @param message the detail message * @param cause the cause of this exception */ public CIFSUnsupportedCryptoException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a CIFS unsupported crypto exception with the specified detail message. * * @param message the detail message */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SMBProtocolDowngradeException.java
* * @param message the detail message * @param cause the cause of the exception */ public SMBProtocolDowngradeException(final String message, final Throwable cause) { super(message, cause); } /** * Creates a new SMBProtocolDowngradeException with the specified detail message. * * @param message the detail message */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/TransportException.java
} /** * Constructs a new TransportException with the specified detail message. * @param msg the detail message */ public TransportException(final String msg) { super(msg); } /** * Constructs a new TransportException with the specified cause. * @param rootCause the cause of this exception */ public TransportException(final Throwable rootCause) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
/** * Sets up the search conditions for group list queries based on pager criteria. * Configures the condition bean with ID filtering and ordering by name. * * @param cb the condition bean for building the query * @param groupPager the pager containing search and filter criteria */ protected void setupListCondition(final GroupCB cb, final GroupPager groupPager) { if (groupPager.id != null) {
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/jcifs/util/Crypto.java
/** * Get an HMACT64 message authentication code instance. * @param key the key for the HMACT64 MAC * @return HMACT64 MAC instance */ public static MessageDigest getHMACT64(final byte[] key) { return new HMACT64(key); } /** * Get an RC4 cipher instance initialized with the specified key. * @param key the encryption key * @return RC4 cipher in encryption mode */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java
*/ private final Map<String, String> params; /** * Constructs a new FieldConfigs instance with the specified parameter map. * * @param params the map containing field names as keys and configuration values as values */ public FieldConfigs(final Map<String, String> params) { this.params = params; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java
*/ public SecurityDescriptor() { } /** * Creates a security descriptor by decoding from a byte buffer. * * @param buffer the byte buffer containing the security descriptor data * @param bufferIndex the starting offset in the buffer * @param len the length of data to decode * @throws IOException if an I/O error occurs during decoding */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedPriorityBlockingQueue.java
} } /** * Inserts the specified element into this priority queue. As the queue is unbounded this method * will never block. * * @param e the element to add * @param timeout This parameter is ignored as the method never blocks * @param unit This parameter is ignored as the method never blocks * @return {@code true}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 18.9K bytes - Viewed (0)