Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for lastAccess (0.07 sec)

  1. src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java

            return this.creationTime;
        }
    
    
        @Override
        public long lastModified () {
            return this.lastWriteTime;
        }
    
    
        @Override
        public long lastAccess () {
            return this.lastAccessTime;
        }
    
    
        @Override
        public long length () {
            return this.endOfFile;
        }
    
    
        /**
         * @return the nextEntryOffset
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  2. cmd/xl-storage-disk-id-check.go

    func newDiskHealthTracker() *diskHealthTracker {
    	d := diskHealthTracker{
    		lastSuccess: time.Now().UnixNano(),
    		lastStarted: time.Now().UnixNano(),
    	}
    	d.status.Store(diskHealthOK)
    	return &d
    }
    
    // logSuccess will update the last successful operation time.
    func (d *diskHealthTracker) logSuccess() {
    	atomic.StoreInt64(&d.lastSuccess, time.Now().UnixNano())
    }
    
    func (d *diskHealthTracker) isFaulty() bool {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Oct 26 09:56:26 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top