- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getCreationTime (0.3 sec)
-
src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java
/** * @return the creationTime */ public final long getCreationTime () { return this.creationTime; } /** * {@inheritDoc} * * @see jcifs.internal.SmbBasicFileInfo#getCreateTime() */ @Override public final long getCreateTime () { return getCreationTime(); } /** * @return the lastAccessTime */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java
/** * @return the creationTime */ public final long getCreationTime () { return this.creationTime; } /** * {@inheritDoc} * * @see jcifs.internal.SmbBasicFileInfo#getCreateTime() */ @Override public long getCreateTime () { return getCreationTime(); } /** * @return the lastAccessTime */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
/** * @return the creationTime */ public final long getCreationTime () { return this.creationTime; } /** * {@inheritDoc} * * @see jcifs.internal.SmbBasicFileInfo#getCreateTime() */ @Override public final long getCreateTime () { return getCreationTime(); } /** * @return the lastAccessTime */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.6K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/FakeSSLSession.kt
override fun getApplicationBufferSize(): Int { throw UnsupportedOperationException() } override fun getCipherSuite(): String { throw UnsupportedOperationException() } override fun getCreationTime(): Long { throw UnsupportedOperationException() } override fun getId(): ByteArray { throw UnsupportedOperationException() } override fun getLastAccessedTime(): Long {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.3K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSession.kt
override fun getId(): ByteArray { return delegate!!.id } override fun getSessionContext(): SSLSessionContext { return delegate!!.sessionContext } override fun getCreationTime(): Long { return delegate!!.creationTime } override fun getLastAccessedTime(): Long { return delegate!!.lastAccessedTime } override fun invalidate() { delegate!!.invalidate() }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.8K bytes - Viewed (0)