- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 20 for creationTime (0.13 sec)
-
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/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
*/ public final int getCreateAction() { return this.createAction; } /** * 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: Sun Aug 24 00:49:49 UTC 2025 - 15.4K 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) -
src/main/java/jcifs/util/SecureKeyManager.java
// Find expired keys for (Map.Entry<String, Long> entry : keyCreationTimes.entrySet()) { String sessionId = entry.getKey(); Long creationTime = entry.getValue(); if (creationTime != null && (now - creationTime) > keyRotationIntervalMillis) { // Skip archived keys (those with version suffix) if (!sessionId.contains(".v")) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
SMBUtil.writeInt4(0, buffer, bufferIndex + 4); // Creation Time (8 bytes) long creationTime = System.currentTimeMillis() * 10000L + 116444736000000000L; SMBUtil.writeInt8(creationTime, buffer, bufferIndex + 8); // Last Access Time (8 bytes) long lastAccessTime = creationTime + 1000000L; SMBUtil.writeInt8(lastAccessTime, buffer, bufferIndex + 16);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 26.9K 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) -
docs/smb3-features/04-directory-leasing-design.md
private final String name; private final long size; private final long lastModified; private final boolean isDirectory; private final long attributes; private final long creationTime; private final long lastAccessTime; public FileInfo(String name, SmbFileAttributes attrs) { this.name = name; this.size = attrs.getSize();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java
body[i + 2] = oplock; body[i + 3] = openFlags; i += 4; SMBUtil.writeInt4(createAction, body, i); // CreateAction i += 4; SMBUtil.writeTime(ctime, body, i); // CreationTime i += 8; SMBUtil.writeTime(atime, body, i); // LastAccessTime i += 8; SMBUtil.writeTime(mtime, body, i); // LastWriteTime i += 8;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
// NextEntryOffset (0 = last entry) SMBUtil.writeInt4(0, buffer, dataOffset); // FileIndex SMBUtil.writeInt4(0, buffer, dataOffset + 4); // CreationTime SMBUtil.writeInt8(0, buffer, dataOffset + 8); // LastAccessTime SMBUtil.writeInt8(0, buffer, dataOffset + 16); // LastWriteTime SMBUtil.writeInt8(0, buffer, dataOffset + 24);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.5K bytes - Viewed (0) -
cmd/server_test.go
// Parse the bucket modtime creationTime, err := time.Parse(iso8601TimeFormat, createdBucket.CreationDate) c.Assert(err, nil) // Check if bucket modtime is consistent (not less than current time and not late more than 5 minutes) timeNow := time.Now().UTC() c.Assert(creationTime.Before(timeNow), true) c.Assert(timeNow.Sub(creationTime) < time.Minute*5, true) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 118.1K bytes - Viewed (0)