- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for readDouble (0.04 sec)
-
src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java
if (read(tmp, 0, 4) < 0) { throw new SmbException("EOF"); } return Encdec.dec_floatbe(tmp, 0); } @Override public final double readDouble() throws SmbException { if (read(tmp, 0, 8) < 0) { throw new SmbException("EOF"); } return Encdec.dec_doublebe(tmp, 0); } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbRandomAccessFileTest.java
b[off + 5] = 0x00; b[off + 6] = 0x00; b[off + 7] = 0x00; return 8; }).when(raf).read(any(byte[].class), anyInt(), eq(8)); assertEquals(1.0d, raf.readDouble(), 0.0000001); } @Test @DisplayName("readLine(): reads until newline and handles CRLF") void readLine_reads() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
if (read(this.tmp, 0, 4) < 0) { throw new SmbEndOfFileException(); } return Encdec.dec_floatbe(this.tmp, 0); } @Override public final double readDouble() throws SmbException { if (read(this.tmp, 0, 8) < 0) { throw new SmbEndOfFileException(); } return Encdec.dec_doublebe(this.tmp, 0); } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.8K bytes - Viewed (0)