- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getBufferCache (0.07 sec)
-
src/main/java/jcifs/context/BaseContext.java
return this.nameServiceClient; } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getBufferCache() */ @Override public BufferCache getBufferCache () { return this.bufferCache; } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getUrlHandler() */ @Override
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/SmbTransportImpl.java
finally { getContext().getBufferCache().releaseBuffer(buffer); } } /** * @param resp * @throws IOException * @throws SMBProtocolDecodingException */ private void doRecvSMB1 ( CommonServerMessageBlock resp ) throws IOException, SMBProtocolDecodingException { byte[] buffer = getContext().getBufferCache().getBuffer(); try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
src/test/java/jcifs/tests/ContextConfigTest.java
@Before public void setUp () { this.context = SingletonContext.getInstance(); } @Test public void testSingletonInit () { assertNotNull(this.context.getBufferCache()); assertNotNull(this.context.getNameServiceClient()); assertNotNull(this.context.getTransportPool()); assertNotNull(this.context.getUrlHandler());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.9K bytes - Viewed (0)