- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for readFiletime (0.24 sec)
-
src/main/java/jcifs/pac/PacLogonInfo.java
// Dates this.logonTime = pacStream.readFiletime(); this.logoffTime = pacStream.readFiletime(); this.kickOffTime = pacStream.readFiletime(); this.pwdLastChangeTime = pacStream.readFiletime(); this.pwdCanChangeTime = pacStream.readFiletime(); this.pwdMustChangeTime = pacStream.readFiletime(); // User related strings as UnicodeStringsRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacDataInputStream.java
/** * Reads a Windows FILETIME value and converts it to a Date. * @return the Date object, or null if the time represents infinity * @throws IOException if an I/O error occurs */ public Date readFiletime() throws IOException { Date date = null; final long last = readUnsignedInt(); final long first = readUnsignedInt(); if (first != 0x7fffffffL && last != 0xffffffffL) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0)