Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getLastUpdateTime (0.07 seconds)

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

  1. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java

         */
        public long getCreateTime() {
            return createTime;
        }
    
        /**
         * Gets the timestamp of the last cache update
         * @return the last update time
         */
        public long getLastUpdateTime() {
            return lastUpdateTime;
        }
    
        /**
         * Gets the timestamp of the last cache access
         * @return the last access time
         */
        public long getLastAccessTime() {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 02:21:31 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  2. src/main/java/jcifs/util/SmbCircuitBreaker.java

                long totalResponseTime = 0;
                long minResponseTime = Long.MAX_VALUE;
                long maxResponseTime = 0;
    
                for (WindowBucket bucket : buckets) {
                    if (bucket.getLastUpdateTime() >= windowStartTime) {
                        totalRequests += bucket.getRequestCount();
                        totalFailures += bucket.getFailureCount();
                        totalResponseTime += bucket.getTotalResponseTime();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 33.4K bytes
    - Click Count (0)
Back to Top