Home
last modified time | relevance | path

Searched refs:GitError (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dgit.py12 class GitError(Exception): class
32 raise GitError("{} is not a Git top directory".format(realpath))
43 raise GitError("'{}' failed with exit code {}: {}".format(
68 except GitError:
77 except GitError:
H A Dgitarchive.py15 from oeqa.utils.git import GitRepo, GitError
50 except GitError:
/OK3568_Linux_fs/yocto/poky/scripts/
H A Doe-git-archive23 from oeqa.utils.git import GitRepo, GitError
H A Doe-build-perf-report33 from oeqa.utils.git import GitRepo, GitError
396 except GitError:
401 except GitError:
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-git/
H A D0001-python3-git-CVE-2022-24439-fix-from-PR-1521.patch132 @@ -36,6 +36,14 @@ class NoSuchPathError(GitError, OSError):
136 +class UnsafeProtocolError(GitError):
140 +class UnsafeOptionError(GitError):
144 class CommandError(GitError):
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/buildperf/
H A Dbase.py25 from oeqa.utils.git import GitError, GitRepo