- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for closeInternal (0.05 sec)
-
src/main/java/jcifs/smb/SmbFileHandleImpl.java
*/ @Override public synchronized void close(final long lastWriteTime) throws CIFSException { closeInternal(lastWriteTime, true); } /** * @param lastWriteTime * @throws SmbException */ void closeInternal(final long lastWriteTime, final boolean explicit) throws CIFSException { final SmbTreeHandleImpl t = this.tree; try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 9.4K bytes - Viewed (1) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Stream.kt
*/ fun closeLater(errorCode: ErrorCode) { if (!closeInternal(errorCode, null)) { return // Already closed. } connection.writeSynResetLater(id, errorCode) } /** Returns true if this stream was closed. */ private fun closeInternal( errorCode: ErrorCode, errorException: IOException?, ): Boolean { assertLockNotHeld()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 18:57:05 UTC 2025 - 22.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIteratorBaseTest.java
return new FileEntry[0]; } @Override protected void doCloseInternal() throws CIFSException { if (throwOnCloseInternal) throw new CIFSException("closeInternal fail"); } } @Mock SmbTreeHandleImpl tree; @Mock SmbResource parent; @Mock ResourceNameFilter nameFilter; private void stubAcquireReturnsSelf() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
cloneInternal(auth, this); return auth; } /** * Clone the context * * @param to the target authenticator * @param from the source authenticator */ protected static void cloneInternal(JAASAuthenticator to, JAASAuthenticator from) { Kerb5Authenticator.cloneInternal(to, from); to.serviceName = from.serviceName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
cloneInternal(cloned, this); return cloned; } /** * Clone internal fields from one NtlmPasswordAuthentication to another. * * @param to the target authentication object to copy to * @param from the source authentication object to copy from */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmNtHashAuthenticator.java
return this.ntHash; } @Override public NtlmPasswordAuthenticator clone() { final NtlmNtHashAuthenticator cloned = new NtlmNtHashAuthenticator(this.ntHash.clone()); cloneInternal(cloned, this); return cloned; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
cloneInternal(auth, this); return auth; } /** * Clone the context * * @param to the target authenticator * @param from the source authenticator */ public static void cloneInternal(Kerb5Authenticator to, Kerb5Authenticator from) { NtlmPasswordAuthenticator.cloneInternal(to, from); to.setUser(from.getUser());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
cloneInternal(cloned, this); return cloned; } /** * Clone internal fields from one authenticator to another. * * @param cloned the target authenticator to copy to * @param toClone the source authenticator to copy from */ protected static void cloneInternal(NtlmPasswordAuthenticator cloned, NtlmPasswordAuthenticator toClone) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0)