- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for writeDouble (0.09 sec)
-
src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java
} @Override public final void writeFloat(final float v) throws SmbException { Encdec.enc_floatbe(v, tmp, 0); write(tmp, 0, 4); } @Override public final void writeDouble(final double v) throws SmbException { Encdec.enc_doublebe(v, tmp, 0); write(tmp, 0, 8); } @Override public final void writeBytes(final String s) throws SmbException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.1K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java
// Write out array length int length = length(); s.writeInt(length); // Write out all elements in the proper order. for (int i = 0; i < length; i++) { s.writeDouble(get(i)); } } /** Reconstitutes the instance from a stream (that is, deserializes it). */ private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 10.2K bytes - Viewed (0) -
guava/src/com/google/common/io/ByteStreams.java
try { output.writeChars(s); } catch (IOException impossible) { throw new AssertionError(impossible); } } @Override public void writeDouble(double v) { try { output.writeDouble(v); } catch (IOException impossible) { throw new AssertionError(impossible); } } @Override public void writeFloat(float v) { try {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 31.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
@Override public final void writeFloat(final float v) throws SmbException { Encdec.enc_floatbe(v, this.tmp, 0); write(this.tmp, 0, 4); } @Override public final void writeDouble(final double v) throws SmbException { Encdec.enc_doublebe(v, this.tmp, 0); write(this.tmp, 0, 8); } @Override public final void writeBytes(final String s) throws SmbException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbRandomAccessFileTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0)