Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lockUID (1.19 sec)

  1. cmd/local-locker_test.go

    	}
    	if len(l.lockUID) != len(rResources)+len(wResources) {
    		t.Fatalf("lockUID len, got %d, want %d + %d", len(l.lockUID), len(rResources), len(wResources))
    	}
    
    	// Expire a minute ago.
    	l.expireOldLocks(-time.Minute)
    	if len(l.lockMap) != 0 {
    		t.Fatalf("after cleanup should be empty, got %d", len(l.lockMap))
    	}
    	if len(l.lockUID) != 0 {
    		t.Fatalf("lockUID len, got %d, want %d", len(l.lockUID), 0)
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  2. cmd/local-locker.go

    						mapID := formatUUID(uid, idx)
    						if _, ok := l.lockUID[mapID]; !ok {
    							break
    						}
    						delete(l.lockUID, mapID)
    					}
    					continue
    				}
    				l.removeEntry(resource, dsync.LockArgs{UID: uid}, &lris)
    			}
    		}
    		return true, nil
    	}
    
    	idx := 0
    	for {
    		mapID := formatUUID(args.UID, idx)
    		resource, ok := l.lockUID[mapID]
    		if !ok {
    			return idx > 0, nil
    		}
    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