- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 297 for wipe (0.02 sec)
-
src/main/java/jcifs/smb1/smb1/NtStatus.java
"All pipe instances are busy.", "All pipe instances are busy.", "The pipe state is invalid.", "All pipe instances are busy.", "No process is on the other end of the pipe.", "The pipe is being closed.", "Waiting for a process to open the other end of the pipe.", "Access is denied.", "A duplicate name exists on the network.",
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FsctlPipeWaitRequest.java
import jcifs.Encodable; import jcifs.internal.util.SMBUtil; /** * File System Control Code (FSCC) request for pipe wait operations. * Implements the FSCTL_PIPE_WAIT control code used to wait for a named pipe * to become available when attempting to connect to a busy pipe. * * @author mbechler */ public class FsctlPipeWaitRequest implements Encodable { private final byte[] nameBytes;
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/smb1/smb1/TransTransactNamedPipeResponse.java
*/ package jcifs.smb1.smb1; class TransTransactNamedPipeResponse extends SmbComTransactionResponse { private final SmbNamedPipe pipe; TransTransactNamedPipeResponse(final SmbNamedPipe pipe) { this.pipe = pipe; } @Override int writeSetupWireFormat(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.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/WinError.java
int ERROR_REQ_NOT_ACCEP = 71; /** The pipe state is invalid */ int ERROR_BAD_PIPE = 230; /** All pipe instances are busy */ int ERROR_PIPE_BUSY = 231; /** The pipe is being closed */ int ERROR_NO_DATA = 232; /** No process is on the other end of the pipe */ int ERROR_PIPE_NOT_CONNECTED = 233; /** More data is available */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/WinError.java
int ERROR_REQ_NOT_ACCEP = 71; /** The pipe state is invalid */ int ERROR_BAD_PIPE = 230; /** All pipe instances are busy */ int ERROR_PIPE_BUSY = 231; /** The pipe is being closed */ int ERROR_NO_DATA = 232; /** No process is on the other end of the pipe */ int ERROR_PIPE_NOT_CONNECTED = 233; /** More data is available */
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/smb1/smb1/TransCallNamedPipeResponse.java
*/ package jcifs.smb1.smb1; class TransCallNamedPipeResponse extends SmbComTransactionResponse { private final SmbNamedPipe pipe; TransCallNamedPipeResponse(final SmbNamedPipe pipe) { this.pipe = pipe; } @Override int writeSetupWireFormat(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.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileInputStreamTest.java
jcifs.internal.smb1.com.SmbComReadAndX req = cap.getValue(); assertEquals(1024, req.getMinCount(), "Named pipe minCount should be 1024"); assertEquals(1024, req.getMaxCount(), "Named pipe maxCount should be 1024"); assertEquals(1024, req.getRemaining(), "Named pipe remaining should be 1024"); } } @Nested @DisplayName("Lifecycle and exception mapping")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
assertEquals(0x1, buffer[12]); } @Test @DisplayName("Test with special characters in pipe name") void testWithSpecialCharactersInPipeName() { // Test with special characters String pipeName = "\\\\?\\pipe\\test$pipe#name!"; FsctlPipeWaitRequest request = new FsctlPipeWaitRequest(pipeName); byte[] nameBytes = pipeName.getBytes(StandardCharsets.UTF_16LE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbPipeHandle.java
import java.io.OutputStream; /** * Handle to an open named pipe * * @author mbechler * */ public interface SmbPipeHandle extends AutoCloseable { /** * Gets the pipe resource associated with this handle. * * @return the pipe */ SmbPipeResource getPipe(); /** * Gets the input stream for reading from this pipe. * * @return this pipe's input stream
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java
if (out != null && !out.isOpen()) { throw new IOException("DCERPC pipe is no longer open"); } if (in == null) { in = (SmbFileInputStream) pipe.getNamedPipeInputStream(); } if (out == null) { out = (SmbFileOutputStream) pipe.getNamedPipeOutputStream(); } if (isDirect) { out.writeDirect(buf, off, length, 1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0)