Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LockEntries (0.17 sec)

  1. cmd/admin-handlers_test.go

    			}
    		}
    	}
    }
    
    type byResourceUID struct{ madmin.LockEntries }
    
    func (b byResourceUID) Less(i, j int) bool {
    	toUniqLock := func(entry madmin.LockEntry) string {
    		return fmt.Sprintf("%s/%s", entry.Resource, entry.ID)
    	}
    	return toUniqLock(b.LockEntries[i]) < toUniqLock(b.LockEntries[j])
    }
    
    func TestTopLockEntries(t *testing.T) {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    				}
    			}
    		}
    	}
    	var lockEntries madmin.LockEntries
    	for _, v := range entryMap {
    		if stale {
    			lockEntries = append(lockEntries, *v)
    			continue
    		}
    		if len(v.ServerList) >= v.Quorum {
    			lockEntries = append(lockEntries, *v)
    		}
    	}
    	sort.Sort(lockEntries)
    	return lockEntries
    }
    
    // PeerLocks holds server information result of one node
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
Back to top