- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for cloneInternal (0.13 seconds)
-
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;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 8.3K bytes - Click Count (1) -
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; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 2.6K bytes - Click Count (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 */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 9.3K bytes - Click Count (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());Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 13.2K bytes - Click Count (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) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 30.3K bytes - Click Count (0) -
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 {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 9.4K bytes - Click Count (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()
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Jul 07 18:57:05 GMT 2025 - 22.4K bytes - Click Count (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() {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.5K bytes - Click Count (0)