Lines Matching defs:int
50 server_port: int,
51 verbose: int,
52 curl_verbose: int,
53 download_parallel: int = 0,
104 def _make_docs_file(self, docs_dir: str, fname: str, fsize: int):
115 downloads: Optional[List[int]] = None):
124 def _check_downloads(self, r: ExecResult, count: int):
135 def transfer_single(self, url: str, count: int):
164 def transfer_serial(self, url: str, count: int):
193 def transfer_parallel(self, url: str, count: int):
228 def download_url(self, label: str, url: str, count: int):
239 def downloads(self, count: int, fsizes: List[int]) -> Dict[str, Any]:
248 def _check_uploads(self, r: ExecResult, count: int):
261 def upload_single(self, url: str, fpath: str, count: int):
289 def upload_serial(self, url: str, fpath: str, count: int):
317 def upload_parallel(self, url: str, fpath: str, count: int):
350 def upload_url(self, label: str, url: str, fpath: str, count: int):
361 def uploads(self, count: int, fsizes: List[int]) -> Dict[str, Any]:
376 def do_requests(self, url: str, count: int, max_parallel: int = 1):
415 def requests_url(self, url: str, count: int):
433 downloads: Optional[List[int]] = None,
434 download_count: int = 50,
435 uploads: Optional[List[int]] = None,
436 upload_count: int = 50,