Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for creationTime (0.78 sec)

  1. src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java

            // For time values, use a reasonable max time that won't overflow
            long maxTime = System.currentTimeMillis() + 1000000000000L;
            SMBUtil.writeTime(maxTime, buffer, 8); // creationTime
            SMBUtil.writeTime(maxTime, buffer, 16); // lastAccessTime
            SMBUtil.writeTime(maxTime, buffer, 24); // lastWriteTime
            SMBUtil.writeTime(maxTime, buffer, 32); // changeTime
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java

             * @param isDirectory true if directory
             * @param attributes file attributes
             * @param creationTime creation time
             * @param lastAccessTime last access time
             */
            public FileInfo(String name, long size, long lastModified, boolean isDirectory, long attributes, long creationTime,
                    long lastAccessTime) {
                this.name = name;
                this.size = size;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/ResourceManager.java

                this.creationTime = System.currentTimeMillis();
                this.allocationStackTrace = Thread.currentThread().getStackTrace();
                this.closed = false;
            }
    
            boolean isAlive() {
                return resourceRef.get() != null && !closed;
            }
    
            long getAge() {
                return System.currentTimeMillis() - creationTime;
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

         */
        public final int getCreateAction() {
            return this.createAction;
        }
    
        /**
         * Get the file creation time
         * @return the creationTime
         */
        public final long getCreationTime() {
            return this.creationTime;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbBasicFileInfo#getCreateTime()
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/util/SecureKeyManager.java

            // Find expired keys
            for (Map.Entry<String, Long> entry : keyCreationTimes.entrySet()) {
                String sessionId = entry.getKey();
                Long creationTime = entry.getValue();
    
                if (creationTime != null && (now - creationTime) > keyRotationIntervalMillis) {
                    // Skip archived keys (those with version suffix)
                    if (!sessionId.contains(".v")) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

                SMBUtil.writeInt4(0, buffer, bufferIndex + 4);
                // Creation Time (8 bytes)
                long creationTime = System.currentTimeMillis() * 10000L + 116444736000000000L;
                SMBUtil.writeInt8(creationTime, buffer, bufferIndex + 8);
                // Last Access Time (8 bytes)
                long lastAccessTime = creationTime + 1000000L;
                SMBUtil.writeInt8(lastAccessTime, buffer, bufferIndex + 16);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  7. docs/smb3-features/04-directory-leasing-design.md

            private final String name;
            private final long size;
            private final long lastModified;
            private final boolean isDirectory;
            private final long attributes;
            private final long creationTime;
            private final long lastAccessTime;
            
            public FileInfo(String name, SmbFileAttributes attrs) {
                this.name = name;
                this.size = attrs.getSize();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java

            body[i + 2] = oplock;
            body[i + 3] = openFlags;
            i += 4;
    
            SMBUtil.writeInt4(createAction, body, i); // CreateAction
            i += 4;
    
            SMBUtil.writeTime(ctime, body, i); // CreationTime
            i += 8;
            SMBUtil.writeTime(atime, body, i); // LastAccessTime
            i += 8;
            SMBUtil.writeTime(mtime, body, i); // LastWriteTime
            i += 8;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java

            // NextEntryOffset (0 = last entry)
            SMBUtil.writeInt4(0, buffer, dataOffset);
            // FileIndex
            SMBUtil.writeInt4(0, buffer, dataOffset + 4);
            // CreationTime
            SMBUtil.writeInt8(0, buffer, dataOffset + 8);
            // LastAccessTime
            SMBUtil.writeInt8(0, buffer, dataOffset + 16);
            // LastWriteTime
            SMBUtil.writeInt8(0, buffer, dataOffset + 24);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.5K bytes
    - Viewed (0)
Back to top