- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 713 for Config (1.43 sec)
-
src/main/java/jcifs/util/Strings.java
* * @param str the string to encode * @param config the configuration providing the OEM encoding * @return the string as bytes */ public static byte[] getOEMBytes(final String str, final Configuration config) { if (str == null) { return new byte[0]; } try { return str.getBytes(config.getOemEncoding()); } catch (final UnsupportedEncodingException e) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformation.java
* Constructs a Trans2SetFileInformation request with file information object. * * @param config the SMB configuration * @param fid the file identifier * @param info the file information to set */ public Trans2SetFileInformation(final Configuration config, final int fid, final FileInformation info) { super(config, SMB_COM_TRANSACTION2, TRANS2_SET_FILE_INFORMATION); this.fid = fid; this.info = info;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java
* * @param config the configuration for this response */ public Smb2IoctlResponse(final Configuration config) { super(config); this.outputBuffer = null; } /** * Constructs an SMB2 IOCTL response with the given configuration and output buffer. * * @param config the configuration for this responseRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Name.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
* * @param config the configuration */ public MultiChannelManager(Configuration config) { this.config = config; this.maxChannels = getMaxChannelsFromConfig(config); this.loadBalancingStrategy = getLoadBalancingStrategyFromConfig(config); this.healthCheckInterval = getHealthCheckIntervalFromConfig(config); // Create thread poolsRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComReadAndXResponse.java
/** * Constructs a Read AndX response. * * @param config the configuration */ public SmbComReadAndXResponse(final Configuration config) { super(config); } /** * Constructs a Read AndX response with buffer. * * @param config the configuration * @param b the data buffer * @param off the offset in the buffer */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ElevateWordToLabelDbm.java
return "org.codelibs.fess.opensearch.config.exentity.ElevateWordToLabel"; } @Override public String getConditionBeanTypeName() { return "org.codelibs.fess.opensearch.config.cbean.ElevateWordToLabelCB"; } @Override public String getBehaviorTypeName() { return "org.codelibs.fess.opensearch.config.exbhv.ElevateWordToLabelBhv"; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
private String filename; private final Configuration config; private final boolean unicode; /** * Constructs a file both directory info. * * @param config the configuration * @param unicode whether to use unicode encoding */ public FileBothDirectoryInfo(final Configuration config, final boolean unicode) { this.config = config; this.unicode = unicode; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWrite.java
private byte[] b; /** * Constructs an empty write request. * * @param config the configuration to use */ public SmbComWrite(final Configuration config) { super(config, SMB_COM_WRITE); } /** * Constructs a write request to write data to a file. * * @param config the configuration to use * @param fid the file identifier
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java
/** * Constructs an Open AndX response. * * @param config the configuration */ public SmbComOpenAndXResponse(final Configuration config) { super(config); } /** * Constructs an Open AndX response with a chained response. * * @param config the configuration * @param andxResp the chained seek response */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.8K bytes - Viewed (0)