- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 3,185 for 1Final (0.06 sec)
-
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/org/codelibs/core/misc/Base64Util.java
} private static void decode(final String inData, final int inIndex, final byte[] outData, final int outIndex) { final byte b0 = DECODE_TABLE[inData.charAt(inIndex)]; final byte b1 = DECODE_TABLE[inData.charAt(inIndex + 1)]; final byte b2 = DECODE_TABLE[inData.charAt(inIndex + 2)]; final byte b3 = DECODE_TABLE[inData.charAt(inIndex + 3)];
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
// ================== protected void handleSizeLimitExceededException(final HttpServletRequest request, final FileUploadByteCountLimitException e) { final long actual = e.getActualSize(); final long permitted = e.getPermitted(); final String msg = "Exceeded size of the multipart request: actual=" + actual + " permitted=" + permitted;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
*/ public static void uploadObject(final String objectName, final MultipartFormFile uploadFile) { try (final InputStream in = uploadFile.getInputStream()) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final MinioClient minioClient = createClient(fessConfig); final PutObjectArgs args = PutObjectArgs.builder()
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.1K 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/org/codelibs/fess/helper/RoleQueryHelper.java
* @return A set of roles. */ public Set<String> build(final SearchRequestType searchRequestType) { final Set<String> roleSet = new HashSet<>(); final HttpServletRequest request = LaRequestUtil.getOptionalRequest().orElse(null); final FessConfig fessConfig = ComponentUtil.getFessConfig(); final boolean isApiRequest =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.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)