Home
last modified time | relevance | path

Searched refs:commits (Results 1 – 25 of 282) sorted by relevance

12345678910>>...12

/external/clang/tools/clang-format/
Dgit-clang-format127 commits, files = interpret_args(opts.args, dash_dash, opts.commit)
128 if len(commits) > 1:
132 if len(commits) > 2:
133 die('at most two commits allowed; %d given' % len(commits))
134 changed_lines = compute_diff_and_extract_lines(commits, files)
154 if len(commits) > 1:
155 old_tree = commits[1]
157 revision=commits[1],
212 commits = [default_commit]
214 commits = args
[all …]
/external/llvm-project/clang/tools/clang-format/
Dgit-clang-format129 commits, files = interpret_args(opts.args, dash_dash, opts.commit)
130 if len(commits) > 1:
134 if len(commits) > 2:
135 die('at most two commits allowed; %d given' % len(commits))
136 changed_lines = compute_diff_and_extract_lines(commits, files)
157 if len(commits) > 1:
158 old_tree = commits[1]
160 revision=commits[1],
220 commits = [default_commit]
222 commits = args
[all …]
/external/skqp/tools/
Dbisect_roll.go89 commits, err := rm.ChildRevList(ctx, fmt.Sprintf("%s..%s", lastRoll, nextRoll))
93 if len(commits) == 0 {
96 } else if len(commits) == 1 {
97 log("Recommend reverting commit %s", commits[0])
132 log("%d commits have not yet rolled:", len(commits))
136 for idx, commit := range commits {
155 suggestedCommit = commits[latestSuccess]
158 suggestedCommit = commits[0]
166 log("Recommend reverting commit %s", commits[earliestFail])
169 remaining := commits[earliestFail+1:]
/external/mesa3d/bin/pick/
Dcore.py216 def split_commit_list(commits: str) -> typing.Generator[typing.Tuple[str, str], None, None]:
217 if not commits:
219 for line in commits.split('\n'):
299 async def resolve_fixes(commits: typing.List['Commit'], previous: typing.List['Commit']) -> None:
311 for commit in reversed(commits):
318 for commit in commits:
321 for oldc in reversed(commits):
344 commits: typing.List[typing.Optional['Commit']],
346 commits[index] = await resolve_nomination(commit, version)
355 commits = typing.cast(typing.List[Commit], m_commits)
[all …]
/external/oss-fuzz/infra/
Drepo_manager.py166 commits = out.split('\n')
167 commits = [commit for commit in commits if commit]
168 if err_code or not commits:
174 commits.append(oldest_commit)
175 return commits
/external/skia/tools/skqp/
Dmake_apk_list.py92 commits = [rev_parse((remote, branch))]
94 commits.append('^' + rev_parse(exclude))
99 '--date=format-local:%Y-%m-%d %H:%M:%S %Z'] + commits
100 commits = check_output(git_cmd, env=env_copy)
101 for line in commits.split('\n'):
Dfind_commit_with_best_gold_results.py93 def find_best_commit(commits): argument
96 for commit_name in commits:
115 commits = generate_commit_list(args)
116 sys.stderr.write('%d\n' % len(commits))
117 best = find_best_commit(commits)
/external/oboe/docs/
DChangeLog.md10 - [Remove `AudioStream::setNativeFormat`](https://github.com/google/oboe/pull/213/commits/0e8af6a65…
11 - [Remove `AudioStream::isPlaying`](https://github.com/google/oboe/pull/213/commits/6437f5aa224330f…
12 - [Add `AudioStream::getTimestamp(clockid_t)`](https://github.com/google/oboe/pull/213/commits/ab69…
/external/vixl/
DVERSIONS.md24 commits from `master`. Our day-to-day development process hasn't changed and
25 these commits should still pass their own tests. However, note that commits not
/external/toolchain-utils/rust_tools/
Drust_watch.py162 commits = subprocess.run(
177 if commits.returncode:
179 commits.stderr)
180 commits.check_returncode()
183 for line in commits.stdout.strip().splitlines():
/external/grpc-grpc/tools/github/
Dpr_latency.py105 commits = json.loads(gh(COMMITS.format(pr_number=pr_number)))
107 'num_commits': len(commits),
109 parse_timestamp(commits[-1]['commit']['author']['date'])
/external/rust/crates/grpcio-sys/grpc/tools/github/
Dpr_latency.py105 commits = json.loads(gh(COMMITS.format(pr_number=pr_number)))
108 len(commits),
110 parse_timestamp(commits[-1]['commit']['author']['date'])
/external/llvm-project/compiler-rt/www/
Dmenu.html.incl14 <a href="http://lists.llvm.org/mailman/listinfo/llvm-commits">llvm-commits</a>
/external/openscreen/docs/
Dadvanced_gerrit.md57 If you need to modify commits on your local branch to ensure they have the
71 If you have made multiple local commits, you can squash them all into a single
79 where '4' means that you want to squash three additional commits onto an
158 N, and O are squash commits that were pushed to Gerrit. The arrow/caret (`^`)
171 git rebase -i origin/master # squash commits
179 git rebase -i C --onto M # squash commits
183 git rebase -i origin/master # squash commits and copy the Change-Id line from M
210 git rebase -i origin/master # squash commits, same note as M about Change-Id
/external/compiler-rt/www/
Dmenu.html.incl14 <a href="http://lists.llvm.org/mailman/listinfo/llvm-commits">llvm-commits</a>
/external/hamcrest/
DREADME.version6 point at which v2.0.0.0 and master diverge. There are only about 7 commits
10 2016 it seems unnecessary to take those extra 7 commits given the potential for
/external/curl/tests/
Dtestcurl.pl421 my @commits;
437 @commits=`git log --pretty=oneline --abbrev-commit -5`;
439 for (@commits) {
460 @commits=`git log --pretty=oneline --abbrev-commit -5`;
462 for (@commits) {
/external/llvm-project/libunwind/docs/
Dindex.rst88 add `cfe-commits` as a subscriber. Also make sure you are subscribed to the
89 `cfe-commits mailing list <http://lists.llvm.org/mailman/listinfo/cfe-commits>`_.
102 * `cfe-commits Mailing List`_
/external/toolchain-utils/llvm_tools/
Drevert_checker_test.py48 commits = [
73 self.assertEqual(commits, logs)
/external/llvm-project/llvm/utils/git/
Dpre-push.py135 commits = git('rev-list', range).splitlines()
137 commits.reverse()
138 return commits
/external/tpm2-tss/
DCONTRIBUTING.md23 * All commits should adhere to the git commit message guidelines described
33 must add a 'Signed-off-by' line to their commits. This indicates the
37 Changes must be merged with the "rebase" option on github to avoid merge commits.
/external/llvm-project/
D.git-blame-ignore-revs2 # to ignore or bypass certain commits.
4 # This file contains a list of commits that are not likely what you
/external/skqp/tools/skqp/
Dmake_apk_list.py77 commits = check_output(git_cmd, env=env_copy)
78 for line in commits.split('\n'):
/external/wayland/
DREADME.android.md107 - Additional commits for each patch in `./patches/`
143 commits involved.
146 patch files for the last N commits.
152 # Export the last five commits as patches. You should adjust this number.
157 Create a new commit that adds those same patches, and squash all the commits
/external/libchrome/libchrome_tools/uprev/
Dutils.py215 commits = []
234 commits.append((hashes[0], hashes[1:]))
235 return list(reversed(commits))

12345678910>>...12