- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 6,246 for THIS (0.42 sec)
-
src/main/java/jcifs/util/transport/Transport.java
if (log.isDebugEnabled()) { log.debug("Connecting " + this.name); } this.state = 1; this.te = null; final Thread t = new Thread(this, this.name); t.setDaemon(true); this.thread = t; synchronized (this.thread) { t.start(); t.wait(timeout); /* wait for doConnect */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0) -
src/main/java/jcifs/context/BaseContext.java
* */ public BaseContext(final Configuration config) { this.config = config; this.dfs = new DfsImpl(this); this.sidResolver = new SIDCacheImpl(this); this.urlHandler = new Handler(this); this.nameServiceClient = new NameServiceClientImpl(this); this.bufferCache = new BufferCacheImpl(this.config); this.transportPool = new SmbTransportPoolImpl();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
if (this.configuration != null) { lc = new LoginContext(this.serviceName, ps, this, this.configuration); } else if (ps != null) { lc = new LoginContext(this.serviceName, ps, this); } else { lc = new LoginContext(this.serviceName, this); } lc.login(); Subject s = lc.getSubject();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/MockHttp2Peer.kt
check(type == -1) this.type = Http2.TYPE_DATA this.inFinished = inFinished this.streamId = streamId this.data = source.readByteString(length.toLong()).toByteArray() } override fun rstStream( streamId: Int, errorCode: ErrorCode, ) { check(type == -1) this.type = Http2.TYPE_RST_STREAM this.streamId = streamId this.errorCode = errorCode }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 8.7K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextWrapper.java
return this.delegate.getConfig(); } @Override public DfsResolver getDfs() { return this.delegate.getDfs(); } @Override public Credentials getCredentials() { return this.delegate.getCredentials(); } @Override public URLStreamHandler getUrlHandler() { if (this.wrappedHandler == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
this.response = new Trans2FindFirst2Response(th.getConfig()); try { th.send(new Trans2FindFirst2(th.getConfig(), unc, this.getWildcard(), this.getSearchAttributes(), th.getConfig().getListCount(), th.getConfig().getListSize() - FIND_OVERHEAD), this.response); this.nextRequest = new Trans2FindNext2(th.getConfig(), this.response.getSid(), this.response.getResumeKey(),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
final ResourceNameFilter filter, final int searchAttributes) throws CIFSException { this.parent = parent; this.wildcard = wildcard; this.nameFilter = filter; this.searchAttributes = searchAttributes; this.treeHandle = th.acquire(); try { this.next = open(); if (this.next == null) { doClose(); } } catch (final Exception e) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
} this.selectedDialect = selected; // Filter out unsupported capabilities this.commonCapabilities = r.getCapabilities() & this.capabilities; if ((this.commonCapabilities & Smb2Constants.SMB2_GLOBAL_CAP_ENCRYPTION) != 0) { this.supportsEncryption = tc.getConfig().isEncryptionEnabled(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
this.digest = Crypto.getMD5(); this.macSigningKey = macSigningKey; this.signSequence = initialSequence; this.bypass = bypass; if (log.isTraceEnabled()) { log.trace("macSigningKey:"); log.trace(Hexdump.toHexString(macSigningKey, 0, macSigningKey.length)); } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/SmbInfoAllocation.java
return FileSystemInformation.SMB_INFO_ALLOCATION; } @Override public long getCapacity() { return this.alloc * this.sectPerAlloc * this.bytesPerSect; } @Override public long getFree() { return this.free * this.sectPerAlloc * this.bytesPerSect; } /** * {@inheritDoc} * * @see jcifs.Decodable#decode(byte[], int, int) */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (0)