EpLus stands for existing path, least used space Of all the candidates on which the path exists choose the one with the least used space.
| 15 | // EpLus stands for existing path, least used space |
| 16 | // Of all the candidates on which the path exists choose the one with the least used space. |
| 17 | type EpLus struct { |
| 18 | EpAll |
| 19 | } |
| 20 | |
| 21 | func (p *EpLus) lus(upstreams []*upstream.Fs) (*upstream.Fs, error) { |
| 22 | var minUsedSpace int64 = math.MaxInt64 |
nothing calls this directly
no outgoing calls
no test coverage detected