- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for SmbNamedPipe (0.2 sec)
-
src/test/java/jcifs/tests/ReadWriteTest.java
} } } @Test public void testFifoPipeTwoHandles () throws IOException { try ( SmbNamedPipe s = new SmbNamedPipe(getFifoPipeUrl(), SmbPipeResource.PIPE_TYPE_WRONLY, withTestNTLMCredentials(getContext())); SmbNamedPipe t = new SmbNamedPipe(getFifoPipeUrl(), SmbPipeResource.PIPE_TYPE_RDONLY, withTestNTLMCredentials(getContext())) ) { try ( SmbPipeHandle sp = s.openPipe();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
/** * @author mbechler * */ class SmbPipeHandleImpl implements SmbPipeHandleInternal { private static final Logger log = LoggerFactory.getLogger(SmbPipeHandleImpl.class); private final SmbNamedPipe pipe; private final boolean transact; private final boolean call; private final int openFlags; private final int access; private volatile boolean open = true;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Apr 13 17:05:22 UTC 2020 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileInputStream.java
// one extra acquire to keep this open till the stream is released if ( this.file instanceof SmbNamedPipe ) { this.handle = this.file.openUnshared( SmbConstants.O_EXCL, ( (SmbNamedPipe) this.file ).getPipeType() & 0xFF0000, this.sharing, SmbConstants.ATTR_NORMAL, 0);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 08:55:14 UTC 2020 - 13.2K bytes - Viewed (0)