- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 6,247 for This (0.05 sec)
-
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java
*/ public Smb2IoctlRequest(final Configuration config, final int controlCode, final byte[] fileId) { super(config, SMB2_IOCTL); this.controlCode = controlCode; this.fileId = fileId; this.maxOutputResponse = config.getTransactionBufferSize() & ~0x7; this.outputBuffer = null; } /** * {@inheritDoc} * * @see jcifs.internal.smb2.RequestWithFileId#setFileId(byte[])
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/internal/smb2/session/Smb2SessionSetupRequest.java
SMBUtil.writeInt2(this.token != null ? this.token.length : 0, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt8(this.previousSessionId, dst, dstIndex); dstIndex += 8; SMBUtil.writeInt2(dstIndex - getHeaderStart(), dst, offsetOffset); dstIndex += pad8(dstIndex); if (this.token != null) { System.arraycopy(this.token, 0, dst, dstIndex, this.token.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UnicodeString.java
this.length = this.maximum_length = (short) ((len + zt) * 2); this.buffer = new short[len + zt]; int i; for (i = 0; i < len; i++) { this.buffer[i] = (short) str.charAt(i); } if (zterm) { this.buffer[i] = (short) 0; } } @Override public String toString() { final int len = this.length / 2 - (this.zterm ? 1 : 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java
dstIndex += 4; SMBUtil.writeInt4(this.dataLength, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt8(this.offset, dst, dstIndex); dstIndex += 8; System.arraycopy(this.fileId, 0, dst, dstIndex, 16); dstIndex += 16; SMBUtil.writeInt4(this.channel, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt4(this.remainingBytes, dst, dstIndex); dstIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java
this.received = true; synchronized (this) { notifyAll(); } } /** * {@inheritDoc} * * @see jcifs.util.transport.Response#exception(java.lang.Exception) */ @Override public final void exception(final Exception e) { this.error = true; this.exception = e; this.received = true; synchronized (this) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/webapp/js/suggestor.js
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 13.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2ReadResponse.java
bufferIndex += 4; bufferIndex += 4; // Reserved2 final int dataStart = getHeaderStart() + dataOffset; if (this.dataLength + this.outputBufferOffset > this.outputBuffer.length) { throw new SMBProtocolDecodingException("Buffer to small for read response"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FsctlPipeWaitRequest.java
SMBUtil.writeInt8(this.timeout, dst, dstIndex); dstIndex += 8; SMBUtil.writeInt4(this.nameBytes.length, dst, dstIndex); dstIndex += 4; dst[dstIndex] = (byte) (this.timeoutSpecified ? 0x1 : 0x0); dstIndex++; dstIndex++; // Padding System.arraycopy(this.nameBytes, 0, dst, dstIndex, this.nameBytes.length); dstIndex += this.nameBytes.length;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessNotification.java
public WitnessNotification(WitnessEventType eventType, String resourceName) { this.eventType = eventType; this.resourceName = resourceName; this.timestamp = System.currentTimeMillis(); this.newIPAddresses = new ArrayList<>(); this.oldIPAddresses = new ArrayList<>(); this.clientAccessPoint = null; this.flags = WITNESS_RESOURCE_STATE_UNKNOWN; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 6.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnection.kt
// These properties are guarded by `this`. /** * If true, no new exchanges can be created on this connection. It is necessary to set this to * true when removing a connection from the pool; otherwise a racing caller might get it from the * pool when it shouldn't. Symmetrically, this must always be checked before returning a * connection from the pool. * * Once true this is always true. Guarded by this. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 14.9K bytes - Viewed (0)