Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for resources (0.92 sec)

  1. src/main/java/jcifs/internal/RequestWithPath.java

     */
    package jcifs.internal;
    
    
    /**
     * @author mbechler
     *
     */
    public interface RequestWithPath extends CommonServerMessageBlock {
    
        /**
         * @return the path to the resource (below share)
         */
        String getPath ();
    
    
        /**
         * 
         * @return the server name
         */
        String getServer ();
    
    
        /**
         * 
         * @return the domain name
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

        public static final int PIPE_TYPE_DCE_TRANSACT = 0x0200 | 0x0400;
    
        InputStream pipeIn;
        OutputStream pipeOut;
        int pipeType;
    
        /**
         * Open the Named Pipe resource specified by the url
         * parameter. The pipeType parameter should be at least one of
         * the <code>PIPE_TYPE</code> flags combined with the bitwise OR
         * operator <code>|</code>. See the examples listed above.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

                }
    
                return connectHost(loc, loc.getServerWithDfs());
            }
    
        }
    
    
        /**
         * @return whether we have a valid tree connection
         */
        @SuppressWarnings ( "resource" )
        public synchronized boolean isConnected () {
            SmbTreeImpl t = getTreeInternal();
            return t != null && t.isConnected();
        }
    
    
        /**
         * 
         * @param loc
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/TimeoutTest.java

                        }
                    }
                }
                finally {
                    f.delete();
                }
            }
        }
    
    
        @SuppressWarnings ( "resource" )
        @Test
        public void testIdleTimeout () throws IOException, InterruptedException {
            // use separate context here as the settings stick to the transport
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/msrpc/samr.java

        public static final int SE_GROUP_ENABLED = 4;
        public static final int SE_GROUP_OWNER = 8;
        public static final int SE_GROUP_USE_FOR_DENY_ONLY = 16;
        public static final int SE_GROUP_RESOURCE = 536870912;
        public static final int SE_GROUP_LOGON_ID = -1073741824;
    
        public static class SamrRidWithAttribute extends NdrObject {
    
            public int rid;
            public int attributes;
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 15.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                    throw new UnknownHostException( addr.toString() );
                }
                if( response.received && response.resultCode == 0 ) {
    
            /* For name queries resolved by different sources (e.g. WINS,
             * BCAST, Node Status) we need to augment the hashcode generated
             * for the addresses hostname or failed lookups for one type will
             * be cached and cause other types to fail even though they may
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                }
                if ( response.received && response.resultCode == 0 ) {
    
                    /*
                     * For name queries resolved by different sources (e.g. WINS,
                     * BCAST, Node Status) we need to augment the hashcode generated
                     * for the addresses hostname or failed lookups for one type will
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
Back to top