Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for Meleti (0.16 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbComDelete.java

    import jcifs.smb1.util.Hexdump;
    
    class SmbComDelete extends ServerMessageBlock {
    
        private int searchAttributes;
    
        SmbComDelete( String fileName ) {
            this.path = fileName;
            command = SMB_COM_DELETE;
            searchAttributes = ATTR_HIDDEN | ATTR_HIDDEN | ATTR_SYSTEM;
        }
    
        int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
            writeInt2( searchAttributes, dst, dstIndex );
            return 2;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/TimeoutTest.java

                            is.read();
                            Thread.sleep(soTimeout);
                        }
                    }
                }
                finally {
                    f.delete();
                }
            }
        }
    
    
        @SuppressWarnings ( "resource" )
        @Test
        public void testIdleTimeout () throws IOException, InterruptedException {
    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)
  3. src/test/java/jcifs/tests/BaseCIFSTest.java

                f.mkdir();
                return f;
            }
        }
    
    
        protected void cleanupTestDirectory ( SmbResource f ) throws CIFSException {
            if ( f != null ) {
                f.delete();
            }
        }
    
    
        protected String makeRandomName () {
            return "jcifs-test-" + Math.abs(this.rand.nextLong());
        }
    
    
        protected String makeRandomDirectoryName () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.1K bytes
    - Viewed (0)
Back to top