- Sort Score
- Result 10 results
- Languages All
Results 861 - 870 of 2,387 for param2 (0.03 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComSeek.java
* * @author mbechler */ public class SmbComSeek extends ServerMessageBlock { /** * Constructs a seek command. * * @param config the configuration * @param fid the file identifier */ public SmbComSeek(final Configuration config, final int fid) { super(config, SMB_COM_SEEK); this.fid = fid; } private int fid;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponse.java
/** * Constructs a new PopularWordsResponse. * * @param index the index associated with the response * @param tookMs the time taken to generate the response in milliseconds * @param words the list of popular words * @param total the total number of words * @param items the list of suggested items */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/EncodingFilter.java
* Checks if the request path matches any configured encoding rule and * performs URL redirection with proper parameter encoding. * * @param request the servlet request to process * @param response the servlet response to use for redirection * @param chain the filter chain to continue processing * @throws IOException if an I/O error occurs during processing * @throws ServletException if a servlet error occurs
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
/** * Converts a BigInteger to either an IPv4 or IPv6 address. If the IP is IPv4, it must be * constrained to 32 bits, otherwise it is constrained to 128 bits. * * @param address the address represented as a big integer * @param isIpv6 whether the created address should be IPv4 or IPv6 * @return the BigInteger converted to an address
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoMessageException.java
/** * Constructs a new SSO message exception with message code, detailed message, and cause. * * @param messageCode The message code for internationalized error display * @param message The detailed error message * @param cause The underlying cause of this exception */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/CIFSContext.java
/** * Get a resource * * @param url the URL of the SMB resource * @return the SMB resource at the specified location * @throws CIFSException if the resource cannot be accessed */ SmbResource get(String url) throws CIFSException; /** * Get a pipe resource * * @param url the URL of the SMB pipe resource * @param pipeType * the type of the pipe
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java
/** * Constructs a Trans2FindFirst2 request for finding files. * * @param config the configuration to use * @param filename the path to search in * @param wildcard the wildcard pattern to match * @param searchAttributes the file attributes to search for * @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 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegisterRequest.java
* * @return the protocol version */ public int getVersion() { return version; } /** * Sets the witness protocol version. * * @param version the protocol version */ public void setVersion(int version) { this.version = version; } /** * Gets the share name to monitor. * * @return the share name
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RegexRule.java
* @param key the field name to match against * @param regex the regular expression pattern */ public void addRule(final String key, final String regex) { regexMap.put(key, Pattern.compile(regex)); } /** * Adds a compiled regular expression rule for the specified field. * @param key the field name to match against
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/WebApiManager.java
* @param request The HTTP servlet request. * @return True if the request matches, false otherwise. */ boolean matches(HttpServletRequest request); /** * Processes the request through this API manager. * @param request The HTTP servlet request. * @param response The HTTP servlet response. * @param chain The filter chain.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)