Home
last modified time | relevance | path

Searched full:repo (Results 1 – 25 of 668) sorted by relevance

12345678910>>...27

/external/python/google-api-python-client/docs/dyn/
Dclouddebugger_v2.controller.debuggees.html161 # A cloud workspace is a place associated with a repo where modified files
163 … "name": "A String", # The unique name of the workspace within the repo. This is the name
165 … "repoId": { # A unique identifier for a cloud repo. # The ID of the repo containing the workspace.
166 …"projectRepoId": { # Selects a repo using a Google Cloud Platform project ID # A combination of a …
167 # (e.g. winged-cargo-31) and a repo name within that project.
169 "repoName": "A String", # The name of the repo. Leave empty for the default repo.
175 …denotes a particular revision in a cloud # A SourceContext referring to a revision in a cloud repo.
176 # repo (a repo hosted by the Google Cloud Platform).
177 … "aliasContext": { # An alias to a repo revision. # An alias, which may be a branch or tag.
183 "repoId": { # A unique identifier for a cloud repo. # The ID of the repo.
[all …]
Dclouddebugger_v2.debugger.debuggees.html165 # A cloud workspace is a place associated with a repo where modified files
167 … "name": "A String", # The unique name of the workspace within the repo. This is the name
169 … "repoId": { # A unique identifier for a cloud repo. # The ID of the repo containing the workspace.
170 …"projectRepoId": { # Selects a repo using a Google Cloud Platform project ID # A combination of a …
171 # (e.g. winged-cargo-31) and a repo name within that project.
173 … "repoName": "A String", # The name of the repo. Leave empty for the default repo.
179 …denotes a particular revision in a cloud # A SourceContext referring to a revision in a cloud repo.
180 # repo (a repo hosted by the Google Cloud Platform).
181 … "aliasContext": { # An alias to a repo revision. # An alias, which may be a branch or tag.
187 "repoId": { # A unique identifier for a cloud repo. # The ID of the repo.
[all …]
/external/autotest/site_utils/
Dautomated_deploy.py13 2. Skip updating a repo, e.g. autotest
15 3. Update a given repo to a specific commit
88 def clone_prod_branch(repo): argument
89 """Method to clone the prod branch for a given repo under /tmp/ dir.
91 @param repo: Name of the git repo to be cloned.
93 @returns path to the cloned repo.
97 repo_dir = '/tmp/%s' % repo
98 print 'Cloning %s prod branch under %s' % (repo, repo_dir)
101 git_repo = revision_control.GitRepo(repo_dir, GIT_URL[repo])
103 print 'Successfully cloned %s prod branch' % repo
[all …]
Ddeploy_server_local.py36 # frontend repo, no need to update afe.
91 """This function cleans the current repo then verifies that it is valid.
93 @raises DirtyTreeException if the repo is still not clean.
94 @raises subprocess.CalledProcessError on a repo command failure.
98 out = subprocess.check_output(['repo', 'status'], stderr=subprocess.STDOUT)
102 raise DirtyTreeException('%s repo not clean: %s' % (HOSTNAME, out))
116 """This function collects the versions of all git repos in the general repo.
119 @raises subprocess.CalledProcessError on a repo command failure.
121 cmd = ['repo', 'forall', '-p', '-c', 'pwd && git log -1 --format=%h']
164 for cmd, repo in COMMANDS_TO_REPOS_DICT.iteritems():
[all …]
Dautomated_deploy_unittest.py112 #Test to get pushed commits for autotest repo.
113 repo = 'autotest'
117 (repo, expect_display_cmd, autotest_commits_logs))
118 actual_return = ad.get_pushed_commits(repo, 'test', '123..789')
123 #Test to get pushed commits for chromite repo.
124 repo = 'chromite'
127 (repo, expect_git_log_cmd, fake_commits_logs))
128 actual_return = ad.get_pushed_commits(repo, 'test', '123..789')
/external/vulkan-validation-layers/scripts/
Dupdate_deps.py64 $ cd My-Repo
71 $ cd My-Repo
82 $ cd My-Repo
99 $ git clone git@github.com:My-Group/My-Repo.git
100 $ cd My-Repo
150 repository name to specify a dependent repo and a "link" to
151 that repo's install artifacts. For example:
207 (case-insensitive) in order for this repo to be fetched and built.
212 the processing of the repo with any environment variable. The default
213 is an empty list, which means that the repo is always processed.
[all …]
/external/opencensus-java/examples/
Dopencensus_workspace.bzl3 …rtifact=io.prometheus:simpleclient_httpserver:0.3.0 --repositories=http://repo.maven.apache.org/ma…
15 repository = "http://repo.maven.apache.org/maven2/",
24 repository = "http://repo.maven.apache.org/maven2/",
32 repository = "http://repo.maven.apache.org/maven2/",
42 repository = "http://repo.maven.apache.org/maven2/",
53 repository = "http://repo.maven.apache.org/maven2/",
62 repository = "http://repo.maven.apache.org/maven2/",
71 repository = "http://repo.maven.apache.org/maven2/",
80 repository = "http://repo.maven.apache.org/maven2/",
89 repository = "http://repo.maven.apache.org/maven2/",
[all …]
/external/droiddriver/
Dcontributing_aosp.md6 DroidDriver is an "unbundled" project. If you specify the repo manifest branch "droiddriver-dev" (s…
8 … e.g. ~/android/aosp. It should be separate from your work on the internal repo to avoid confusion.
9 Then get a local client of the repo:
14 $ repo init -u https://android.googlesource.com/a/platform/manifest -b droiddriver-dev
15 $ repo sync
31 - `repo start somebranchname .`
33 - `repo upload`
43 `$ repo upload --re="<joe@example.com>,<john@example.com>" .`
51 - `repo sync`
54 - `repo upload`
[all …]
/external/autotest/client/common_lib/
Drevision_control.py47 This class represents a git repo.
49 It is used to pull down a local copy of a git repo, check if the local
50 repo is up-to-date, if not update. It delegates the install to
58 @param repodir: destination repo directory.
59 @param giturl: master repo git url.
60 @param weburl: a web url for the master repo.
61 @param abs_work_tree: work tree of the git repo. In the
163 Clones a repo using giturl and repodir.
165 Since we're cloning the master repo we don't have a work tree yet,
173 @raises GitCloneError: if cloning the master repo fails.
[all …]
Dpackages.py39 def parse_ssh_path(repo): argument
45 match = re.search('^ssh://(.*?)(/.*)$', repo)
50 "Incorrect SSH path in global_config: %s" % repo)
53 def repo_run_command(repo, cmd, ignore_status=False, cd=True): argument
55 repo = repo.strip()
58 if repo.startswith('ssh://'):
60 hostline, remote_path = parse_ssh_path(repo)
71 cd_str = 'cd %s && ' % repo
78 def create_directory(repo): argument
79 remote_path = repo
[all …]
Drevision_control_unittest.py37 # where there exists a commit in the upstream repo.
64 @param filename: Name of the file in current repo.
78 @param repodir: directory for repo.
80 logging.info('initializing git repo in: %s', repodir)
90 Add all unadded files in repodir to repo.
95 raise revision_control.GitError('Unable to add files to repo', rv)
100 Commit changes to repo with the supplied commit msg.
112 If the dependent repo is empty pull from master.
128 Create a master repo and clone it into a dependent repo.
154 msg=(("hashes don't match after clone, master and dependent repo"
[all …]
/external/toolchain-utils/
Drepo_to_repo.py49 class Repo(object): class
74 """Push to the external repo with the commit message."""
109 # Note - this type of repo is used only for "readonly", in other words, this
110 # only serves as a incoming repo.
111 class FileRepo(Repo):
115 Repo.__init__(self, no_create_tmp_dir=True)
131 class P4Repo(Repo):
135 Repo.__init__(self)
161 class SvnRepo(Repo):
165 Repo.__init__(self)
[all …]
Dsetup_chromeos.py135 '--jobs', '-j', dest='jobs', help='Number of repo sync threads to use.')
179 init = 'repo init -u %s' % manifest_repo
186 init = ('repo init -u %s -m paladin/buildspecs/%s/%s.xml' %
199 init = ('repo init -u %s -m paladin/buildspecs/%s/%s.xml' %
207 init = ('repo init -u %s -m buildspecs/%s/%s.xml' % (versions_repo, version,
218 init = ('repo init -u %s -m buildspecs/%s/%s.xml' % (versions_repo, version,
225 init = 'repo init -u %s -m %s' % (versions_repo, version_spec_file)
230 init += ' --repo-url=https://chromium.googlesource.com/external/repo.git'
234 sync = 'umask 022 && repo sync'
/external/syzkaller/pkg/bisect/
Dbisect.go31 Repo string member
41 Repo string member
54 repo vcs.Repo member
67 repo, err := vcs.NewRepo(cfg.Manager.TargetOS, cfg.Manager.Type, cfg.Manager.KernelSrc)
73 repo: repo,
107 if env.head, err = env.repo.Poll(cfg.Kernel.Repo, cfg.Kernel.Branch); err != nil {
115 if err := env.inst.BuildSyzkaller(cfg.Syzkaller.Repo, cfg.Syzkaller.Commit); err != nil {
118 if _, err := env.repo.SwitchCommit(cfg.Kernel.Commit); err != nil {
136 return env.repo.Bisect(bad, good, cfg.Trace, func() (vcs.BisectResult, error) {
158 if _, err := env.repo.SwitchCommit(env.head.Hash); err != nil {
[all …]
/external/skia/infra/bots/assets/clang_linux/
Dcreate.py17 REPO = "https://llvm.googlesource.com/" variable
27 BRANCH, REPO + "llvm"])
30 BRANCH, REPO + "clang"])
32 BRANCH, REPO + "lld"])
35 BRANCH, REPO + "clang-tools-extra", "extra"])
39 BRANCH, REPO + "compiler-rt"])
41 BRANCH, REPO + "libcxx"])
43 BRANCH, REPO + "libcxxabi"])
/external/skqp/infra/bots/assets/clang_linux/
Dcreate.py17 REPO = "https://llvm.googlesource.com/" variable
27 BRANCH, REPO + "llvm"])
30 BRANCH, REPO + "clang"])
32 BRANCH, REPO + "lld"])
35 BRANCH, REPO + "clang-tools-extra", "extra"])
39 BRANCH, REPO + "compiler-rt"])
41 BRANCH, REPO + "libcxx"])
43 BRANCH, REPO + "libcxxabi"])
/external/grpc-grpc/tools/interop_matrix/patches/csharp_v1.0.1/
Dgit_repo.patch45 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy main" | tee /etc/apt/sources.lis…
47 +RUN echo "deb http://download.mono-project.com/repo/debian wheezy/snapshots/4.6 main" | tee /etc/a…
48 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compat main" | tee -a /…
49 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | tee -a …
50 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | tee -a /e…
63 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy main" | tee /etc/apt/sources.lis…
65 +RUN echo "deb http://download.mono-project.com/repo/debian jessie main" | tee /etc/apt/sources.lis…
66 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compat main" | tee -a /…
67 …RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | tee -a …
68 -RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | tee -a /e…
/external/skia/tools/
Dgit-sync-deps111 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument
117 repo (string) the location of the repository, suitable
132 [git, 'clone', '--quiet', repo, directory])
135 # if the directory exists, but isn't a git repo, you will modify
140 # Check to see if this repo is disabled. Quick return.
155 # If the repo has changed, always force use of the correct repo.
156 # If origin already points to repo, this is a quick no-op.
158 [git, 'remote', 'set-url', 'origin', repo], cwd=directory)
212 repo, checkoutable = dependencies[directory].split('@', 1)
219 (git, repo, checkoutable, relative_directory, verbose))
/external/skqp/tools/
Dgit-sync-deps111 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument
117 repo (string) the location of the repository, suitable
132 [git, 'clone', '--quiet', repo, directory])
135 # if the directory exists, but isn't a git repo, you will modify
140 # Check to see if this repo is disabled. Quick return.
155 # If the repo has changed, always force use of the correct repo.
156 # If origin already points to repo, this is a quick no-op.
158 [git, 'remote', 'set-url', 'origin', repo], cwd=directory)
212 repo, checkoutable = dependencies[directory].split('@', 1)
219 (git, repo, checkoutable, relative_directory, verbose))
/external/grpc-grpc/tools/gource/
Dgen-all-logs.sh23 for repo in $repos
26 git clone https://github.com/grpc/$repo.git
27 cd $repo
28 gource --output-custom-log $tmpdir/logs/$repo
29 sed -i "s,|/,|/$repo/,g" $tmpdir/logs/$repo
/external/syzkaller/pkg/vcs/
Dgit.go36 func (git *git) Poll(repo, branch string) (*Commit, error) {
41 if err != nil || strings.TrimSpace(string(origin)) != repo {
42 // The repo is here, but it has wrong origin (e.g. repo in config has changed), re-clone.
43 if err := git.clone(repo, branch); err != nil {
52 if err := git.clone(repo, branch); err != nil {
58 if err := git.clone(repo, branch); err != nil {
68 func (git *git) CheckoutBranch(repo, branch string) (*Commit, error) {
76 _, err := runSandboxed(dir, "git", "fetch", repo, branch)
86 func (git *git) CheckoutCommit(repo, commit string) (*Commit, error) {
94 _, err := runSandboxed(dir, "git", "fetch", repo)
[all …]
Dfuchsia.go29 func (ctx *fuchsia) Poll(repo, branch string) (*Commit, error) {
30 if repo != "https://fuchsia.googlesource.com" || branch != "master" {
31 // fuchsia ecosystem is hard-tailored to the main repo.
44 return fmt.Errorf("failed to remove repo dir: %v", err)
48 return fmt.Errorf("failed to create repo dir: %v", err)
62 func (ctx *fuchsia) CheckoutBranch(repo, branch string) (*Commit, error) {
66 func (ctx *fuchsia) CheckoutCommit(repo, commit string) (*Commit, error) {
/external/skia/tools/android/
Dupload_to_android.py9 * Downloads the repo tool.
39 REPO_TOOL_URL = 'https://storage.googleapis.com/git-repo-downloads/repo'
60 # Ensure the repo tool exists in the work_dir.
62 repo_binary = os.path.join(repo_dir, 'repo')
76 # Create android-repo directory in the work_dir.
77 android_dir = os.path.join(work_dir, 'android-repo')
84 About to run repo init. If it hangs asking you to run glogin then please:
208 # Create repo branch.
219 # Abandon repo branch.
/external/skqp/tools/android/
Dupload_to_android.py9 * Downloads the repo tool.
39 REPO_TOOL_URL = 'https://storage.googleapis.com/git-repo-downloads/repo'
60 # Ensure the repo tool exists in the work_dir.
62 repo_binary = os.path.join(repo_dir, 'repo')
76 # Create android-repo directory in the work_dir.
77 android_dir = os.path.join(work_dir, 'android-repo')
84 About to run repo init. If it hangs asking you to run glogin then please:
208 # Create repo branch.
219 # Abandon repo branch.
/external/autotest/cli/
Dskylab_utils.py5 """Constants and util methods to interact with skylab inventory repo."""
38 """Error raised when no inventory repo change number is found."""
55 """Construct commit message for skylab inventory repo commit.
112 """Initialize inventory repo at the given dir."""
122 'changes. Please clean up the local repo directory or '
125 logging.info('Inventory repo was already initialized, start '
130 logging.info('No inventory repo was found, start cloning.')

12345678910>>...27