Home
last modified time | relevance | path

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

12345678910

/third_party/boost/libs/histogram/benchmark/
Drun_benchmarks.py36 commits = []
42 commits.append(hash)
44 commits = commits[::-1]
45 return commits, comments
48 def recursion(results, commits, comments, ia, ib): argument
52 run(results, comments, commits[ic], False)
53 if all([results[commits[i]] is None for i in (ia, ib, ic)]):
55 recursion(results, commits, comments, ic, ib)
56 recursion(results, commits, comments, ia, ic)
87 commits, comments = get_commits()
[all …]
Dplot_benchmarks.py20 commits, comments = get_commits() variable
24 for hash in commits:
30 benchmarks[name].append((commits.index(hash), time))
75 current_index = max(0, min(int(x + 0.5), len(commits) - 1))
76 hash = commits[current_index]
89 hash = commits[current_index]
/third_party/flutter/skia/third_party/externals/dawn/scripts/
Dgit-clang-format128 commits, files = interpret_args(opts.args, dash_dash, opts.commit)
129 if len(commits) > 1:
133 if len(commits) > 2:
134 die('at most two commits allowed; %d given' % len(commits))
135 changed_lines = compute_diff_and_extract_lines(commits, files)
155 if len(commits) > 1:
156 old_tree = commits[1]
158 revision=commits[1],
213 commits = [default_commit]
215 commits = args
[all …]
/third_party/mesa3d/bin/pick/
Dcore.py224 def split_commit_list(commits: str) -> typing.Generator[typing.Tuple[str, str], None, None]:
225 if not commits:
227 for line in commits.split('\n'):
307 async def resolve_fixes(commits: typing.List['Commit'], previous: typing.List['Commit']) -> None:
319 for commit in reversed(commits):
326 for commit in commits:
329 for oldc in reversed(commits):
352 commits: typing.List[typing.Optional['Commit']],
354 commits[index] = await resolve_nomination(commit, version)
363 commits = typing.cast(typing.List[Commit], m_commits)
[all …]
/third_party/icu/tools/commit-checker/
Dcheck.py171 commits = list(get_commits(**vars(args)))
174 commit_issue_ids = set(commit.issue_id for commit in commits if commit.issue_id is not None)
176 (issue_id, [commit for commit in commits if commit.issue_id == issue_id])
193 print("- Latest Commit: %s" % commits[0].commit.hexsha)
244 for commit in commits:
259 for issue_id, commits in grouped_commits:
274 for commit in commits:
285 for issue_id, commits in grouped_commits:
303 for commit in commits:
/third_party/flutter/skia/tools/skqp/
Dfind_commit_with_best_gold_results.py84 def find_best_commit(commits): argument
87 for commit_name in commits:
106 commits = generate_commit_list(args)
107 sys.stderr.write('%d\n' % len(commits))
108 best = find_best_commit(commits)
Dmake_apk_list.py85 commits = [rev_parse((remote, branch))]
87 commits.append('^' + rev_parse(exclude))
92 '--date=format-local:%Y-%m-%d %H:%M:%S %Z'] + commits
93 commits = check_output(git_cmd, env=env_copy)
94 for line in commits.split('\n'):
/third_party/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)
/third_party/skia/third_party/externals/dawn/docs/
Dcontributing.md33 for the commits pushed.
35 the commits that were pushed for codereview for "change number" at a certain
40 To push commits to Gerrit your `git` command needs to be authenticated. This is
48 Gerrit associates commits to CLs based on a `Change-Id:` tag in the commit
49 message. Each push with commits with a `Change-Id:` will update the
60 before pushing commits.
78 Pushing commits is done with `git push origin HEAD:refs/for/main`. Which means
88 When code review asks for changes in the commits, you can amend them any way
94 We usually like to have commits associated with issues in [Dawn's issue tracker](https://bugs.chrom…
95 so that commits for the issue can all be found on the same page. This is done
/third_party/skia/third_party/externals/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…
/third_party/ltp/docparse/
Dtestinfo.pl430 my %commits;
442 $commits{$k} = () unless (defined($commits{$k}));
443 unless (defined($commits{$k}{$v})) {
445 $commits{$k}{$v} = `git log --pretty=format:'%s' -1 $v`;
448 $v .= ' ("' . $commits{$k}{$v} . '")';
/third_party/flutter/flutter/bin/internal/
DREADME.md10 commit for a pull request no matter how many engine commits there are inside
11 that pull request. If it's `rebase`, the number of commits in the framework is
12 equal to the number of engine commits in the pull request. The latter method
/third_party/node/tools/
Dfind-inactive-collaborators.mjs55 // Get all approving reviewers of landed commits during the time period.
185 console.log(`In the last ${SINCE} commits:\n`);
186 console.log(`* ${authors.size.toLocaleString()} authors have made commits.`);
187 console.log(`* ${landers.size.toLocaleString()} landers have landed commits.`);
188 console.log(`* ${approvingReviewers.size.toLocaleString()} reviewers have approved landed commits.`…
/third_party/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'])
/third_party/ffmpeg/doc/
Dgit-howto.texi113 fetches the changes from the main repository and replays your local commits
115 FFmpeg's master tree. The master tree will reject pushes with merge commits.
172 For cosmetics-only commits you should get (almost) empty output from
243 will generate patches for all commits on current branch which are not
251 which will generate patches from last @var{n} commits.
269 Git automatically tracks such changes, making those normal commits.
306 @section Reverting broken commits
325 will replay local commits over the main repository allowing to edit, merge
348 (@var{origin}). And list which branches and ranges or commits would have been
370 Since version 1.7.1 Git supports @samp{:/foo} syntax for specifying commits
[all …]
/third_party/pixman/
DRELEASING3 1) Ensure that there are no uncommitted changes or unpushed commits,
4 and that you are up to date with the latest commits in the central
49 configure.ac. Commit this change, and push all commits created
/third_party/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) {
/third_party/node/deps/npm/node_modules/normalize-package-data/node_modules/resolve/
Dchangelog.hbs23 {{#each commits}}
33 {{#each commits}}
/third_party/node/deps/npm/node_modules/yargs/
DREADME.md15 [![Conventional Commits][conventional-commits-image]][conventional-commits-url]
132 [conventional-commits-image]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg
133 [conventional-commits-url]: https://conventionalcommits.org/
/third_party/curl/scripts/
Ddelta42 $commits = `git log --oneline $start.. | wc -l`;
127 $commits, $acommits;
/third_party/node/tools/actions/
Dcommit-queue.sh88 commits="$(git rev-parse $UPSTREAM/$DEFAULT_BRANCH)...$(git rev-parse HEAD)"
97 gitHubCurl "$(commentsUrl "$pr")" POST --data '{"body": "Landed in '"$commits"'"}'
/third_party/mesa3d/bin/
Dgen_release_notes.py185 async def parse_issues(commits: str) -> typing.List[str]:
187 for commit in commits.split('\n'):
210 commits = await gather_commits(version)
211 issues = await parse_issues(commits)
/third_party/mesa3d/docs/relnotes/
D17.1.6.rst90 - cherry-ignore: add a couple of radeon commits
94 - cherry-ignore: add a couple of radeonsi/gfx9 commits
104 - cherry-ignore: add a bunch more commits to the list
105 - fixup! cherry-ignore: add a bunch more commits to the list
/third_party/node/doc/guides/
Dreleases.md151 appropriate PRs and commits into it.
167 To determine the relevant commits, use
175 For a list of commits that could be landed in a patch release on v1.x:
181 Previously released commits and version bumps do not need to be
184 Carefully review the list of commits:
193 When you are ready to cherry-pick commits, you can automate with the following
201 When cherry-picking commits, if there are simple conflicts you can resolve
207 If commits were cherry-picked in this step, check that the test still pass.
250 Collect a formatted list of commits since the last release. Use
257 `changelog-maker` counts commits since the last tag and if the last tag
[all …]

12345678910