Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getChangeTime (0.06 sec)

  1. src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

            void testGetLastWriteTime() {
                assertEquals(0, response.getLastWriteTime());
            }
    
            @Test
            @DisplayName("getChangeTime should return initial value of 0")
            void testGetChangeTime() {
                assertEquals(0, response.getChangeTime());
            }
    
            @Test
            @DisplayName("getAllocationSize should return initial value of 0")
            void testGetAllocationSize() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java

        public final long getLastWriteTime() {
            return this.lastWriteTime;
        }
    
        /**
         * Get the file change time
         *
         * @return the changeTime
         */
        public final long getChangeTime() {
            return this.changeTime;
        }
    
        /**
         * Get the file allocation size
         *
         * @return the allocationSize
         */
        public final long getAllocationSize() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

        public final long getLastWriteTime() {
            return this.lastWriteTime;
        }
    
        /**
         * Get the file change time
         * @return the changeTime
         */
        public final long getChangeTime() {
            return this.changeTime;
        }
    
        /**
         * Get the allocation size of the file
         * @return the allocationSize
         */
        public final long getAllocationSize() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java

            assertEquals(1111L, resp.getCreateTime()); // SmbBasicFileInfo mapping
            assertEquals(2222L, resp.getLastAccessTime());
            assertEquals(3333L, resp.getLastWriteTime());
            assertEquals(4444L, resp.getChangeTime());
            assertEquals(123456789L, resp.getAllocationSize());
            assertEquals(987654321L, resp.getEndOfFile());
            assertEquals(987654321L, resp.getSize()); // SmbBasicFileInfo mapping
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top