Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for rResources (0.17 sec)

  1. 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)
  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. pom.xml

    					<excludes>
    						<exclude>pom.xml</exclude>
    						<exclude>breaking-changes.xml</exclude>
    						<exclude>README.md</exclude>
    						<exclude>build.properties</exclude>
    						<exclude>src/test/resources/**</exclude>
    						<exclude>**/*.idl</exclude>
    						<exclude>**/*.css</exclude>
    						<exclude>.*</exclude>
    						<exclude>.*/**</exclude>
    						<exclude>META-INF/**</exclude>
    XML
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 04 13:19:42 GMT 2024
    - 9.3K bytes
    - Viewed (1)
  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)
Back to top