- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for TYPE_COMM (0.08 sec)
-
src/test/java/jcifs/SmbConstantsTest.java
assertEquals(0x08, SmbConstants.TYPE_SHARE); assertEquals(0x10, SmbConstants.TYPE_NAMED_PIPE); assertEquals(0x20, SmbConstants.TYPE_PRINTER); assertEquals(0x40, SmbConstants.TYPE_COMM); } @Test @DisplayName("Should define open flags constants") void testOpenFlagsConstants() { assertEquals(0x01, SmbConstants.O_RDONLY);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeImplTest.java
assertEquals(SmbConstants.TYPE_PRINTER, tree2.getTreeType()); SmbTreeImpl tree3 = new SmbTreeImpl(session, "COMM", "COMM"); assertEquals(SmbConstants.TYPE_COMM, tree3.getTreeType()); } // Test case for DFS related methods @Test void testDfs() throws SmbException { SmbTreeImpl tree = new SmbTreeImpl(session, "SHARE", "A:");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceLocator.java
* @return <code>TYPE_FILESYSTEM, TYPE_WORKGROUP, TYPE_SERVER, * TYPE_NAMED_PIPE</code>, or <code>TYPE_SHARE</code> in which case it may be either <code>TYPE_SHARE</code>, * <code>TYPE_PRINTER</code> or <code>TYPE_COMM</code>. * @throws CIFSException if the type cannot be determined */ int getType() throws CIFSException; /** * Determines whether this resource represents a workgroup reference. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
*/ int TYPE_PRINTER = 0x20; /** * Returned by {@link jcifs.SmbResource#getType()} if the resource this <code>SmbFile</code> * represents is a communications device. */ int TYPE_COMM = 0x40; /* open flags */ /** * Open for reading only. */ int O_RDONLY = 0x01; /** * Open for writing only. */ int O_WRONLY = 0x02; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
public static final int TYPE_PRINTER = 0x20; /** * Returned by {@link #getType()} if the resource this {@code SmbFile} * represents is a communications device. */ public static final int TYPE_COMM = 0x40; private String canon; // Initially null; set by getUncPath; dir must end with '/' private String share; // Can be null private long createTime; private long lastModified;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
/** * Returns type of of object this <code>SmbResource</code> represents. * * @return <code>TYPE_FILESYSTEM, TYPE_WORKGROUP, TYPE_SERVER, TYPE_SHARE, * TYPE_PRINTER, TYPE_NAMED_PIPE</code>, or <code>TYPE_COMM</code>. * @throws CIFSException if an error occurs accessing the resource */ int getType() throws CIFSException; /** * Tests to see if the SMB resource exists. If the resource refers
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 28K bytes - Viewed (1)