- Sort Score
- Result 10 results
- Languages All
Results 1011 - 1020 of 2,463 for param (0.04 sec)
-
src/main/java/org/codelibs/core/io/Traverser.java
* <p> * If a root package is specified at instance construction, the specified class name is interpreted as a relative name from the root package. * </p> * * @param className the class name * @return <code>true</code> if the class file exists in the resources handled by this instance */ boolean isExistClass(final String className); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/LogStream.java
/** * Constructs a LogStream with the specified output stream. * * @param stream the output stream for logging */ public LogStream(final PrintStream stream) { super(stream); } /** * Sets the logging level. * * @param level the logging level to set */ public static void setLevel(final int level) { LogStream.level = level;
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/core/xml/SAXParserFactoryUtil.java
throw new SAXRuntimeException(e); } } /** * Sets the enable/disable state of XInclude. * * @param spf * {@link SAXParserFactory}. Must not be {@literal null}. * @param state * <code>true</code> to enable XInclude. * @return <code>true</code> if the XInclude state was successfully set. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
*/ public SmbShareInfo() { } /** * Constructs an SmbShareInfo with the specified properties. * * @param netName the network name of the share * @param type the type of the share * @param remark the optional comment or description for the share */ public SmbShareInfo(final String netName, final int type, final String remark) { this.netName = netName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosToken.java
* * @param token the token bytes * @throws PACDecodingException if token decoding fails */ public KerberosToken(byte[] token) throws PACDecodingException { this(token, null); } /** * Constructs a KerberosToken from token bytes with decryption keys. * * @param token the token bytes * @param keys array of Kerberos keys for decryption
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
} dictionaryManager.addCreator(this); } /** * Creates a new {@link SynonymFile} instance. * * @param id The unique identifier for the dictionary file. * @param path The file path of the dictionary. * @param timestamp The last modified timestamp of the file. * @return A new {@link SynonymFile} associated with the dictionary manager. */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/LsaPolicyHandle.java
private final DcerpcHandle handle; private boolean opened; /** * Constructs an LSA policy handle. * * @param handle the DCERPC handle * @param server the server name * @param access the access rights * @throws IOException if an I/O error occurs */ public LsaPolicyHandle(final DcerpcHandle handle, String server, final int access) throws IOException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessHeartbeatRequest.java
* * @return the registration ID */ public String getRegistrationId() { return registrationId; } /** * Sets the registration ID. * * @param registrationId the registration ID */ public void setRegistrationId(String registrationId) { this.registrationId = registrationId; } /** * Gets the sequence number. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/util/ByteEncodable.java
private final int off; private final int len; /** * Constructs a ByteEncodable object wrapping a byte array segment. * * @param b the byte array to wrap * @param off the offset in the byte array * @param len the length of the segment to use */ public ByteEncodable(final byte[] b, final int off, final int len) { this.bytes = b; this.off = off;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* {@code FILE_SHARE_DELETE} logically OR'd together. * * @param context A URL string * @param name A path string relative to the <code>context</code> paremeter * @param auth The credentials the client should use for authentication * @param shareAccess Specifies what access other clients have while this file is open. * @throws MalformedURLException
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0)