koder aka kdanilov | 7022706 | 2016-11-26 23:23:21 +0200 | [diff] [blame^] | 1 | from typing import Any, Optional, Dict, List |
2 | |||||
3 | def rpc_run_fio(cfg: Dict[str, str]) -> Any: ... | ||||
4 | def rpc_check_file_prefilled(path: str, used_size_mb: int) -> bool: ... | ||||
5 | def rpc_prefill_test_files(files: Dict[str, int], force: bool = False, fio_path: str = 'fio') -> Optional[int]: ... | ||||
6 | |||||
7 | |||||
8 | def load_fio_log_file(fname: str) -> List[float]: ... |