- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 7,356 for _this (0.07 sec)
-
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 Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 22 10:09:46 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/context/BaseContext.java
* */ public BaseContext ( 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 Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 27 18:25:00 UTC 2022 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
log.trace("Signing with seq " + this.signSequence); } ( (ServerMessageBlock) request ).setSignSeq(this.signSequence); if ( response != null ) { ( (ServerMessageBlock) response ).setSignSeq(this.signSequence + 1); } try { update(this.macSigningKey, 0, this.macSigningKey.length);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 10.6K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java
this.setAlias(p.getAlias()); this.setName(p.getName()); this.setRequired(p.isRequired()); this.setEditable(p.isEditable()); this.setDescription(p.getDescription()); this.setExpression(p.getExpression()); this.setDeprecated(p.getDeprecated()); this.setDefaultValue(p.getDefaultValue()); this.setType(p.getType());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java
*/ public Smb2IoctlRequest ( Configuration config, int controlCode, byte[] fileId, byte[] outputBuffer ) { super(config, SMB2_IOCTL); this.controlCode = controlCode; this.fileId = fileId; this.outputBuffer = outputBuffer; this.maxOutputResponse = outputBuffer.length; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 07:13:17 UTC 2018 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
this.response); this.nextRequest = new Trans2FindNext2( th.getConfig(), this.response.getSid(), this.response.getResumeKey(), this.response.getLastName(), th.getConfig().getListCount(), th.getConfig().getListSize() - FIND_OVERHEAD); } catch ( SmbException e ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextWrapper.java
return this.delegate.getDfs(); } @Override public Credentials getCredentials () { return this.delegate.getCredentials(); } @Override public URLStreamHandler getUrlHandler () { if ( this.wrappedHandler == null ) { this.wrappedHandler = new Handler(this); } return this.wrappedHandler; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
Date startTime) { this.container = container; this.settings = settings; this.executionProperties = executionProperties; this.request = new DefaultMavenExecutionRequest(); this.request.setUserProperties(userProperties); this.request.setLocalRepository(localRepository); this.request.setGoals(goals);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java
dstIndex += 4; SMBUtil.writeInt4(this.dataLength, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt8(this.offset, dst, dstIndex); dstIndex += 8; System.arraycopy(this.fileId, 0, dst, dstIndex, 16); dstIndex += 16; SMBUtil.writeInt4(this.channel, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt4(this.remainingBytes, dst, dstIndex); dstIndex += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.8K bytes - Viewed (0)