Home
last modified time | relevance | path

Searched refs:repo (Results 1 – 25 of 319) sorted by relevance

12345678910>>...13

/external/autotest/site_utils/
Dautomated_deploy.py88 def clone_prod_branch(repo): argument
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
107 def update_prod_branch(repo, repo_dir, hash_to_rebase): argument
120 print 'Updating %s prod branch.' % repo
133 print 'Successfully pushed %s prod branch!\n' % repo
142 (repo, result))
145 print 'No new %s changes found since last push.' % repo
[all …]
Dautomated_deploy_unittest.py113 repo = 'autotest'
117 (repo, expect_display_cmd, autotest_commits_logs))
118 actual_return = ad.get_pushed_commits(repo, 'test', '123..789')
124 repo = 'chromite'
127 (repo, expect_git_log_cmd, fake_commits_logs))
128 actual_return = ad.get_pushed_commits(repo, 'test', '123..789')
/external/autotest/client/common_lib/
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 …]
/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/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/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/vulkan-validation-layers/scripts/
Dupdate_deps.py486 GoodRepo(repo, args)
487 for repo in json.loads(known_good.read())['repos']
527 for repo in repos:
528 if install_names and repo.name in install_names and repo.on_build_platform:
531 var=install_names[repo.name],
532 dir=escape(repo.install_dir)))
609 for repo in repos:
612 if not repo.on_build_platform:
631 repo_dict[repo.name] = {field: getattr(repo, field) for field in field_list};
635 if len(repo.ci_only):
[all …]
/external/autotest/client/site_tests/power_Consumption/
Dpower_Consumption.py91 repo = 'http://commondatastorage.googleapis.com/chromeos-test-public/'
92 file_list = [repo + 'big_buck_bunny/big_buck_bunny_trailer_400p.mp4', ]
95 repo + 'big_buck_bunny/big_buck_bunny_trailer_400p.ogg',
96 repo + 'big_buck_bunny/big_buck_bunny_trailer_400p.vp8.webm',
97 repo + 'big_buck_bunny/big_buck_bunny_trailer_400p.vp9.webm',
98 repo + 'big_buck_bunny/big_buck_bunny_trailer_720p.mp4',
99 repo + 'big_buck_bunny/big_buck_bunny_trailer_720p.ogg',
100 repo + 'big_buck_bunny/big_buck_bunny_trailer_720p.vp8.webm',
101 repo + 'big_buck_bunny/big_buck_bunny_trailer_720p.vp9.webm',
102 repo + 'big_buck_bunny/big_buck_bunny_trailer_1080p.mp4',
[all …]
/external/syzkaller/pkg/bisect/
Dbisect.go54 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 {
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 {
173 tags, err := env.repo.PreviousReleaseTags(cfg.Kernel.Commit)
192 commit, err := env.repo.SwitchCommit(tag)
216 current, err := env.repo.HeadCommit()
[all …]
/external/syzkaller/pkg/vcs/
Dgit.go36 func (git *git) Poll(repo, branch string) (*Commit, error) {
41 if err != nil || strings.TrimSpace(string(origin)) != repo {
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)
109 func (git *git) clone(repo, branch string) error {
[all …]
Dakaros.go24 func (ctx *akaros) Poll(repo, branch string) (*Commit, error) {
28 return ctx.git.Poll(repo, branch)
31 func (ctx *akaros) CheckoutBranch(repo, branch string) (*Commit, error) {
35 func (ctx *akaros) CheckoutCommit(repo, commit string) (*Commit, error) {
Dfuchsia.go29 func (ctx *fuchsia) Poll(repo, branch string) (*Commit, error) {
30 if repo != "https://fuchsia.googlesource.com" || branch != "master" {
62 func (ctx *fuchsia) CheckoutBranch(repo, branch string) (*Commit, error) {
66 func (ctx *fuchsia) CheckoutCommit(repo, commit string) (*Commit, error) {
Dvcs.go22 Poll(repo, branch string) (*Commit, error) argument
25 CheckoutBranch(repo, branch string) (*Commit, error) argument
28 CheckoutCommit(repo, commit string) (*Commit, error) argument
128 func CheckRepoAddress(repo string) bool {
129 return gitRepoRe.MatchString(repo)
/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/swiftshader/third_party/LLVM/utils/git/
Dfind-rev16 repo,rev = args
23 os.chdir(repo)
33 _,repo,_ = ln.strip().split(' ')
34 _,lrev = repo.rsplit('@',1)
/external/llvm/utils/git/
Dfind-rev16 repo,rev = args
23 os.chdir(repo)
33 _,repo,_ = ln.strip().split(' ')
34 _,lrev = repo.rsplit('@',1)
/external/swiftshader/third_party/llvm-7.0/llvm/utils/git/
Dfind-rev16 repo,rev = args
23 os.chdir(repo)
33 _,repo,_ = ln.strip().split(' ')
34 _,lrev = repo.rsplit('@',1)
/external/protobuf/protoc-artifacts/
DDockerfile29 RUN wget http://people.centos.org/tru/devtools-1.1/devtools-1.1.repo -P /etc/yum.repos.d
30 RUN bash -c 'echo "enabled=1" >> /etc/yum.repos.d/devtools-1.1.repo'
31 … 's/\$basearch/i386/g' /etc/yum.repos.d/devtools-1.1.repo > /etc/yum.repos.d/devtools-i386-1.1.rep…
32 RUN sed -e 's/testing-/testing-i386-/g' -i /etc/yum.repos.d/devtools-i386-1.1.repo
/external/skia/tools/
Dgit-sync-deps111 def git_checkout_to_directory(git, repo, checkoutable, directory, verbose): argument
132 [git, 'clone', '--quiet', repo, directory])
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
132 [git, 'clone', '--quiet', repo, directory])
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/dockerfile/grpc_artifact_protoc/
DDockerfile34 RUN wget http://people.centos.org/tru/devtools-2/devtools-2.repo -P /etc/yum.repos.d
35 RUN bash -c 'echo "enabled=1" >> /etc/yum.repos.d/devtools-2.repo'
36 … -e 's/\$basearch/i386/g' /etc/yum.repos.d/devtools-2.repo > /etc/yum.repos.d/devtools-i386-2.repo"
37 RUN sed -e 's/testing-/testing-i386-/g' -i /etc/yum.repos.d/devtools-i386-2.repo
/external/grpc-grpc/tools/run_tests/performance/
DREADME.md11 * From the grpc repo root, start the
35 * These are more simple since they all live in the main grpc repo.
47 * You'll need the [grpc-java](https://github.com/grpc/grpc-java) repo.
50 $ cd <grpc-java-repo>
56 * You'll need the [grpc-go repo](https://github.com/grpc/grpc-go)
59 $ cd <grpc-go-repo>/benchmark/worker && go install
65 * Connect to the driver machine (if using a remote driver) and from the grpc repo root:
78 2. From the grpc repo root:
/external/grpc-grpc/tools/interop_matrix/patches/
DREADME.md1 # Patches to grpc repo tags for the backwards compatibility interop tests
4 of the grpc git repo in order to run the interop tests for a specific
24 3. Make necessary modifications to the git repo at that tag.
38 tag with `git apply` before uploading to the test image repo.
/external/grpc-grpc/templates/tools/dockerfile/
Dcsharp_deps.include6 RUN echo "deb http://download.mono-project.com/repo/debian jessie main" | tee /etc/apt/sources.list…
7 RUN echo "deb http://download.mono-project.com/repo/debian wheezy-apache24-compat main" | tee -a /e…
8 RUN echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | tee -a /…
/external/curl/docs/
DRELEASE-PROCEDURE.md4 in the source code repo
13 - tag the git repo in this style: `git tag -a curl-7_34_0`. -a annotates the
28 in the curl-www repo
39 - tag the repo with the same name as used for the source repo.

12345678910>>...13