- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for creationTime (1.14 sec)
-
src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java
dstIndex += 2; writeInt2(searchAttributes, dst, dstIndex); dstIndex += 2; writeInt2(fileAttributes, dst, dstIndex); dstIndex += 2; creationTime = 0; writeInt4(creationTime, dst, dstIndex); dstIndex += 4; writeInt2(openFunction, dst, dstIndex); dstIndex += 2; writeInt4(allocationSize, dst, dstIndex); dstIndex += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java
SMBUtil.writeInt2(this.searchAttributes, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(this.fileAttributes, dst, dstIndex); dstIndex += 2; this.creationTime = 0; SMBUtil.writeInt4(this.creationTime, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt2(this.openFunction, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt4(this.allocationSize, dst, dstIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java
return ("SmbComNTCreateAndXResponse[" + super.toString() + ",oplockLevel=" + oplockLevel + ",fid=" + fid + ",createAction=0x" + Hexdump.toHexString(createAction, 4) + ",creationTime=" + new Date(creationTime) + ",lastAccessTime=" + new Date(lastAccessTime) + ",lastWriteTime=" + new Date(lastWriteTime) + ",changeTime=" + new Date(changeTime)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
@Override public String toString() { return ("SmbFindFileBothDirectoryInfo[" + "nextEntryOffset=" + nextEntryOffset + ",fileIndex=" + fileIndex + ",creationTime=" + new Date(creationTime) + ",lastAccessTime=" + new Date(lastAccessTime) + ",lastWriteTime=" + new Date(lastWriteTime) + ",changeTime=" + new Date(changeTime) + ",endOfFile=" + endOfFile + ",allocationSize=" + allocationSize
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java
*/ public final int getCloseFlags() { return this.closeFlags; } /** * Get the file creation time * * @return the creationTime */ public final long getCreationTime() { return this.creationTime; } /** * {@inheritDoc} * * @see jcifs.internal.SmbBasicFileInfo#getCreateTime() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java
*/ public final int getDeviceState() { return this.deviceState; } /** * Gets the creation time. * * @return the creationTime */ public final long getCreationTime() { return this.creationTime; } /** * {@inheritDoc} * * @see jcifs.internal.SmbBasicFileInfo#getCreateTime() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryCacheEntryTest.java
boolean isDirectory = false; long attributes = 0x20; // FILE_ATTRIBUTE_ARCHIVE long creationTime = System.currentTimeMillis() - 10000; long lastAccessTime = System.currentTimeMillis() - 5000; entry.updateChild(childName, size, lastModified, isDirectory, attributes, creationTime, lastAccessTime); assertTrue(entry.hasChild(childName)); assertEquals(1, entry.getChildren().size());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
} @Override public String toString() { return ("SmbFindFileBothDirectoryInfo[" + "nextEntryOffset=" + this.nextEntryOffset + ",fileIndex=" + this.fileIndex + ",creationTime=" + new Date(this.creationTime) + ",lastAccessTime=" + new Date(this.lastAccessTime) + ",lastWriteTime=" + new Date(this.lastWriteTime) + ",changeTime=" + new Date(this.changeTime) + ",endOfFile=" + this.endOfFile
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2FindFirst2ResponseTest.java
info.shortNameLength = 8; String expected = "SmbFindFileBothDirectoryInfo[" + "nextEntryOffset=" + info.nextEntryOffset + ",fileIndex=" + info.fileIndex + ",creationTime=" + new Date(info.creationTime) + ",lastAccessTime=" + new Date(info.lastAccessTime) + ",lastWriteTime=" + new Date(info.lastWriteTime) + ",changeTime=" + new Date(info.changeTime) + ",endOfFile=" + info.endOfFile
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSession.kt
) : SSLSession { override fun getId(): ByteArray = delegate!!.id override fun getSessionContext(): SSLSessionContext = delegate!!.sessionContext override fun getCreationTime(): Long = delegate!!.creationTime override fun getLastAccessedTime(): Long = delegate!!.lastAccessedTime override fun invalidate() { delegate!!.invalidate() } override fun isValid(): Boolean = delegate!!.isValid
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.6K bytes - Viewed (0)