Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for clearAttributeCache (0.23 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/jcifs/smb/SmbFileOutputStreamTest.java

                    SmbConstants.DEFAULT_SHARING);
    
            // When
            outputStream.close();
    
            // Then
            verify(mockFileHandle).close();
            verify(mockFile).clearAttributeCache();
            assertFalse(outputStream.isOpen());
        }
    
        @Test
        void testIsOpen() throws CIFSException {
            // Given
            when(mockTreeHandle.isSMB2()).thenReturn(true);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 15.8K bytes
    - Click Count (0)
  2. src/main/java/jcifs/smb/SmbRandomAccessFile.java

                    } catch (final CIFSException e) {
                        throw SmbException.wrap(e);
                    }
                    this.handle = null;
                }
            } finally {
                this.file.clearAttributeCache();
                if (this.unsharedFile) {
                    this.file.close();
                }
            }
        }
    
        @Override
        public int read() throws SmbException {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 18.8K bytes
    - Click Count (0)
Back to Top