Lines Matching refs:int

51                  verbose: int,  argument
52 curl_verbose: int, argument
53 download_parallel: int = 0): argument
101 def _make_docs_file(self, docs_dir: str, fname: str, fsize: int): argument
111 def _check_downloads(self, r: ExecResult, count: int): argument
122 def transfer_single(self, url: str, proto: str, count: int): argument
149 def transfer_serial(self, url: str, proto: str, count: int): argument
176 def transfer_parallel(self, url: str, proto: str, count: int): argument
207 def download_url(self, label: str, url: str, proto: str, count: int): argument
220 def downloads(self, proto: str, count: int, argument
221 fsizes: List[int]) -> Dict[str, Any]: argument
264 def _check_uploads(self, r: ExecResult, count: int): argument
277 def upload_single(self, url: str, proto: str, fpath: str, count: int): argument
304 def upload_serial(self, url: str, proto: str, fpath: str, count: int): argument
331 def upload_parallel(self, url: str, proto: str, fpath: str, count: int): argument
363 def upload_url(self, label: str, url: str, fpath: str, proto: str, count: int): argument
377 def uploads(self, proto: str, count: int, argument
378 fsizes: List[int]) -> Dict[str, Any]: argument
421 def do_requests(self, url: str, proto: str, count: int, argument
422 max_parallel: int = 1): argument
460 def requests_url(self, url: str, proto: str, count: int): argument
507 downloads: Optional[List[int]] = None, argument
508 download_count: int = 50, argument
509 uploads: Optional[List[int]] = None, argument
510 upload_count: int = 50, argument
697 if isinstance(ssval, (str, int)):
739 size = int(m.group(1))
766 parser.add_argument("--download-count", action='store', type=int,
768 parser.add_argument("--download-parallel", action='store', type=int,
774 parser.add_argument("--upload-count", action='store', type=int,
778 parser.add_argument("--request-count", action='store', type=int,