- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 3,198 for final (0.06 sec)
-
src/main/java/jcifs/smb1/smb1/SmbComRename.java
*/ package jcifs.smb1.smb1; import jcifs.smb1.util.Hexdump; class SmbComRename extends ServerMessageBlock { private final int searchAttributes; private final String oldFileName; private final String newFileName; SmbComRename(final String oldFileName, final String newFileName) { command = SMB_COM_RENAME; this.oldFileName = oldFileName; this.newFileName = newFileName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.4K bytes - Viewed (0) -
docs/features/events.md
```java class PrintingEventListener extends EventListener { public static final Factory FACTORY = new Factory() { final AtomicLong nextCallId = new AtomicLong(1L); @Override public EventListener create(Call call) { long callId = nextCallId.getAndIncrement();
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComReadAndXResponse.java
SmbComReadAndXResponse() { } SmbComReadAndXResponse(final byte[] b, final int off) { this.b = b; this.off = off; } void setParam(final byte[] b, final int off) { this.b = b; this.off = off; } @Override int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
*/ public static byte[] getLMv2Response(final byte[] responseKeyLM, final byte[] serverChallenge, final byte[] clientChallenge) { return NtlmUtil.computeResponse(responseKeyLM, serverChallenge, clientChallenge, 0, clientChallenge.length); } static byte[] computeResponse(final byte[] responseKey, final byte[] serverChallenge, final byte[] clientData, final int offset, final int length) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java
* * @param body the general settings data to update * @return JSON response with update status */ @Execute public JsonResponse<ApiResult> put$index(final EditBody body) { validateApi(body, messages -> {}); final EditBody newBody = new EditBody(); AdminGeneralAction.updateForm(fessConfig, newBody); BeanUtil.copyBeanToBean(body, newBody, CopyOptions::excludeNull);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java
return username; } /** * Set username used to access the repository. * * @param userName the username used to access repository */ public void setUsername(final String userName) { this.username = userName; } /** * Get the passphrase of the private key file. The passphrase is used only when host/protocol supports
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/SLinkedList.java
* @return the element */ public E get(final int index) { return getEntry(index).element; } /** * Sets the element at the specified position. * * @param index the index * @param element the element * @return the original element */ public E set(final int index, final E element) { final Entry entry = getEntry(index);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Name.java
* This class represents a NetBIOS name with its associated type and scope. */ public class Name { private static final int TYPE_OFFSET = 31; private static final int SCOPE_OFFSET = 33; private static final String DEFAULT_SCOPE = Config.getProperty("jcifs.smb1.netbios.scope"); static final String OEM_ENCODING = Config.getProperty("jcifs.smb1.encoding", Charset.defaultCharset().displayName());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java
@Override protected int writeBytesWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex; SMBUtil.writeInt2(33, dst, dstIndex); dst[dstIndex + 2] = this.infoType; dst[dstIndex + 3] = this.fileInfoClass; dstIndex += 4; final int bufferLengthOffset = dstIndex; dstIndex += 4; final int bufferOffsetOffset = dstIndex; dstIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
* @throws CIFSException if a CIFS protocol error occurs */ public Type3Message(final CIFSContext tc, final Type2Message type2, final String targetName, final String password, final String domain, final String user, final String workstation, final int flags, final boolean nonAnonymous) throws GeneralSecurityException, CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0)