- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 951 for 1Final (0.83 sec)
-
src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java
final String message = "Query processing error"; final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY); final NullPointerException npeCause = new NullPointerException("Null query parameter"); final IllegalStateException iseCause = new IllegalStateException("Invalid parser state");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java
// Setup final String message = "Test SSO error message"; final Exception cause = new RuntimeException("Test cause"); final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsSsoLoginError(UserMessages.GLOBAL_PROPERTY_KEY); // Execute final SsoMessageException exception = new SsoMessageException(messageCode, message, cause);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java
this(config, controlCode, Smb2Constants.UNSPECIFIED_FILEID); } /** * Constructs an SMB2 IOCTL request with a specified file ID * @param config the client configuration * @param controlCode the IOCTL control code * @param fileId the file identifier */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
* @param sh * @param req * @param resp * @throws SmbException */ static void copyDir(final SmbFile src, final SmbFile dest, final byte[][] b, final int bsize, final WriterThread w, final SmbTreeHandleImpl sh, final SmbTreeHandleImpl dh) throws CIFSException { final String path = dest.getLocator().getUNCPath(); if (path.length() > 1) { try { dest.mkdir();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
public static final int ACB_NORMAL = 16; /** Account control bit flag: MNS logon user account */ public static final int ACB_MNS = 32; /** Account control bit flag: Interdomain trust account */ public static final int ACB_DOMTRUST = 64; /** Account control bit flag: Workstation trust account */ public static final int ACB_WSTRUST = 128; /** Account control bit flag: Server trust account */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
public static final int ACB_NORMAL = 16; /** Account control bit flag: MNS logon user account */ public static final int ACB_MNS = 32; /** Account control bit flag: Interdomain trust account */ public static final int ACB_DOMTRUST = 64; /** Account control bit flag: Workstation trust account */ public static final int ACB_WSTRUST = 128; /** Account control bit flag: Server trust account */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
*/ @Override public void setFullUNCPath(final String domain, final String server, final String fullPath) { this.domain = domain; this.server = server; this.fullPath = fullPath; } /** * @param path * the path to set */ @Override public final void setPath(final String path) { this.path = path; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmMessage.java
} static byte[] readSecurityBuffer(final byte[] src, final int index) { final int length = readUShort(src, index); final int offset = readULong(src, index + 4); final byte[] buffer = new byte[length]; System.arraycopy(src, offset, buffer, 0, length); return buffer; } static void writeULong(final byte[] dest, final int offset, final int ulong) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponse.java
return 0; } @Override int writeDataWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override int readSetupWireFormat(final byte[] buffer, final int bufferIndex, final int len) { return 0; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
private final Semaphore credits = new Semaphore(1, true); private final int desiredCredits = 512; private byte[] preauthIntegrityHash = new byte[64]; private final Object preauthHashLock = new Object(); SmbTransportImpl(final CIFSContext tc, final Address address, final int port, final InetAddress localAddr, final int localPort, final boolean forceSigning) { this.transportContext = tc;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0)