Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for comme (0.23 sec)

  1. src/main/java/jcifs/SmbConstants.java

        static final int TYPE_PRINTER = 0x20;
        /**
         * Returned by {@link jcifs.SmbResource#getType()} if the resource this <tt>SmbFile</tt>
         * represents is a communications device.
         */
        static final int TYPE_COMM = 0x40;
    
        /* open flags */
    
        static final int O_RDONLY = 0x01;
        static final int O_WRONLY = 0x02;
        static final int O_RDWR = 0x03;
        static final int O_APPEND = 0x04;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/WatchTest.java

                throws InterruptedException, ExecutionException, TimeoutException {
            boolean found = checkInResult(action, name, infos);
            if ( !found ) {
                // retry, the first watch may have already come back before the triggered change was active
                try {
                    setupWatch(w);
                    found = checkInResult(action, name, infos);
                }
                catch ( TimeoutException e ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResourceLocator.java

         * 
         * @return <tt>TYPE_FILESYSTEM, TYPE_WORKGROUP, TYPE_SERVER,
         * TYPE_NAMED_PIPE</tt>, or <tt>TYPE_SHARE</tt> in which case it may be either <tt>TYPE_SHARE</tt>,
         *         <tt>TYPE_PRINTER</tt> or <tt>TYPE_COMM</tt>.
         * @throws CIFSException
         */
        int getType () throws CIFSException;
    
    
        /**
         * @return whether this is a workgroup reference
         * @throws CIFSException
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/MimeMap.java

    import java.io.InputStream;
    import java.io.IOException;
    
    public class MimeMap {
    
        private static final int IN_SIZE = 7000;
    
        private static final int ST_START = 1;
        private static final int ST_COMM = 2;
        private static final int ST_TYPE = 3;
        private static final int ST_GAP = 4;
        private static final int ST_EXT = 5;
    
        private byte[] in;
        private int inLen;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTreeImpl.java

            String connectedService = getService();
            if ( "LPT1:".equals(connectedService) ) {
                return SmbConstants.TYPE_PRINTER;
            }
            else if ( "COMM".equals(connectedService) ) {
                return SmbConstants.TYPE_COMM;
            }
            return SmbConstants.TYPE_SHARE;
        }
    
    
        /**
         * @return the service
         */
        public String getService () {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

                        type = TYPE_NAMED_PIPE;
                    } else if( tree.service.equals( "LPT1:" )) {
                        type = TYPE_PRINTER;
                    } else if( tree.service.equals( "COMM" )) {
                        type = TYPE_COMM;
                    } else {
                        type = TYPE_SHARE;
                    }
                } else if( url.getAuthority() == null || url.getAuthority().length() == 0 ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  7. src/main/java/jcifs/Configuration.java

         * 
         * @return broadcast address to use
         */
        InetAddress getBroadcastAddress ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.netbios.wins</tt> (string, comma separated)
         * 
         * @return WINS server to use
         */
        InetAddress[] getWinsServers ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.lport</tt> (int)
         * 
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbResource.java

    
        /**
         * Returns type of of object this <tt>SmbResource</tt> represents.
         * 
         * @return <tt>TYPE_FILESYSTEM, TYPE_WORKGROUP, TYPE_SERVER, TYPE_SHARE,
         * TYPE_PRINTER, TYPE_NAMED_PIPE</tt>, or <tt>TYPE_COMM</tt>.
         * @throws CIFSException
         */
        int getType () throws CIFSException;
    
    
        /**
         * Tests to see if the SMB resource exists. If the resource refers
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
Back to top