Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LastCleanup (1.07 sec)

  1. cmd/local-locker_gen.go

    				err = msgp.WrapError(err, "LocksAbandoned")
    				return
    			}
    		case "LastCleanup":
    			if dc.IsNil() {
    				err = dc.ReadNil()
    				if err != nil {
    					err = msgp.WrapError(err, "LastCleanup")
    					return
    				}
    				z.LastCleanup = nil
    			} else {
    				if z.LastCleanup == nil {
    					z.LastCleanup = new(time.Time)
    				}
    				*z.LastCleanup, err = dc.ReadTime()
    				if err != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jan 31 19:54:34 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  2. cmd/local-locker.go

    	Reads          int
    	LockQueue      int
    	LocksAbandoned int
    	LastCleanup    *time.Time
    }
    
    func (l *localLocker) stats() lockStats {
    	return lockStats{
    		Total:       len(l.lockMap),
    		Reads:       int(l.readers.Load()),
    		Writes:      int(l.writers.Load()),
    		LockQueue:   int(l.waitMutex.Load()),
    		LastCleanup: l.lastCleanup.Load(),
    	}
    }
    
    type localLockMap map[string][]lockRequesterInfo
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12K bytes
    - Viewed (0)
Back to top