mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-11 14:53:49 +00:00
bcb3626d1f
* FIX sort order in bottomk * Add lessWithNaNsReversed for bottomk * Add ut for TopK * Move lt from loop * FIX lint * FIX lint * FIX lint * Mod log format --------- Co-authored-by: xiaozongyang <xiaozngyang@kanyun.com> Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com>
10 lines
150 B
Go
10 lines
150 B
Go
package fs
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func fadviseSequentialRead(f *os.File, prefetch bool) error { // nolint
|
|
// TODO: implement this properly
|
|
return nil
|
|
}
|