Lines Matching full:progress
194 progress: Union['UpdateProgress', None] = None, dry_run: bool = False,
210 … progress.update(END | CLONE, 0, 1, prefix + "Done cloning to %s" % checkout_module_abspath)
302 progress: Union[RemoteProgress, None, 'UpdateProgress'] = None,
324 res = self._get_fetch_info_from_stderr(proc, progress,
327 progress: Union[RemoteProgress, 'UpdateProgress', None] = None,
337 kwargs = add_progress(kwargs, self.repo.git, progress)
349 res = self._get_fetch_info_from_stderr(proc, progress,
352 … progress: Union[RemoteProgress, 'UpdateProgress', Callable[..., RemoteProgress], None] = None,
362 kwargs = add_progress(kwargs, self.repo.git, progress)
414 … progress: Union['RemoteProgress', 'UpdateProgress', Callable[..., 'RemoteProgress'], None] = None,
432 v=True, universal_newlines=True, **add_progress(kwargs, git, progress))
433 if progress:
437 def clone(self, path: PathLike, progress: Optional[Callable] = None,
456 - return self._clone(self.git, self.common_dir, path, type(self.odb), progress, multi_option…
457 + return self._clone(self.git, self.common_dir, path, type(self.odb), progress, multi_option…
461 def clone_from(cls, url: PathLike, to_path: PathLike, progress: Optional[Callable] = None,
480 - return cls._clone(git, url, to_path, GitCmdObjectDB, progress, multi_options, **kwargs)
481 + return cls._clone(git, url, to_path, GitCmdObjectDB, progress, multi_options,