Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 13 (0.22 sec)

  1. src/test/java/jcifs/tests/EnumTest.java

                        // each entry 94 byte + 2 * name length
                        // = 128 byte per entry
                        try ( SmbResource r = f.resolve(String.format("%04x%s", i, repeat('X', 13))) ) {
                            r.createNewFile();
                        }
                    }
                    // == 5*128 = 640
    
                    // . and .. entries = 200 byte (includes alignment)
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/FileOperationsTest.java

                finally {
                    f.delete();
                }
            }
        }
    
    
        @Test
        public void testCopyFileLargeNoAlign () throws IOException {
            long length = 4096 * 16 * 1024 + 13;
            try ( SmbFile f = createTestFile();
                  SmbTreeHandle treeHandle = f.getTreeHandle() ) {
                // this is tremendously slow on SMB1
                try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:17:59 GMT 2023
    - 16.3K bytes
    - Viewed (0)
Back to top