Home
last modified time | relevance | path

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

123456789

/external/v8/tools/release/
Dtest_search_related_commits.py80 commits = self._execute_git(
82 return commits
98 commits = self._get_commits()
99 hash_of_first_commit = commits[0]
104 self._assert_correct_standard_result(result, commits, hash_of_first_commit)
118 commits = self._get_commits()
119 hash_of_first_commit = commits[0]
124 self._assert_correct_standard_result(result, commits, hash_of_first_commit)
127 commits = self._get_commits()
128 hash_of_first_commit = commits[0]
[all …]
Dtest_mergeinfo.py72 commits = self._execute_git(
74 return commits
85 commits = self._get_commits()
86 hash_of_first_commit = commits[0]
97 commits = self._get_commits()
98 hash_of_first_commit = commits[0]
109 commits = self._get_commits()
110 hash_of_first_commit = commits[0]
116 commits = self._get_commits()
123 self.assertEqual(set(followups), set(commits[1:]))
[all …]
Dauto_push.py62 commits = self.GitLog(
65 if not commits:
/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/u-boot/tools/buildman/
Dcontrol.py25 def GetActionSummary(is_summary, commits, selected, options): argument
31 if commits:
32 count = len(commits)
63 commits = series.commits
65 commits = None
66 print GetActionSummary(False, commits, boards_selected,
69 if commits:
70 for upto in range(0, len(series.commits), options.step):
71 commit = series.commits[upto]
261 options.step = len(series.commits) - 1
[all …]
Dtest.py78 commits = [ variable
109 self.commits = []
111 for commit_info in commits:
118 self.commits.append(comm)
193 build.BuildBoards(self.commits, board_selected, keep_outputs=False,
203 self.assertEqual(count, len(commits) * len(boards) + 2)
205 build.ShowSummary(self.commits, board_selected)
208 self.assertEqual(lines[0].text, '01: %s' % commits[0][1])
209 self.assertEqual(lines[1].text, '02: %s' % commits[1][1])
222 self.assertEqual(lines[6].text, '03: %s' % commits[2][1])
[all …]
Dbuilder.py440 self.ProduceResultSummary(result.commit_upto, self.commits,
477 if self.commits:
478 commit = self.commits[commit_upto]
1404 def ProduceResultSummary(self, commit_upto, commits, board_selected): argument
1411 if commits:
1413 commits[commit_upto].subject)
1421 def ShowSummary(self, commits, board_selected): argument
1431 self.commit_count = len(commits) if commits else 1
1432 self.commits = commits
1437 self.ProduceResultSummary(commit_upto, commits, board_selected)
[all …]
/external/skia/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/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/scripts/
Dget_reviewer.pl1331 my $commits;
1345 $commits = grep(/$pattern/, @lines); # of commits
1365 return ($commits, $signers_ref, $authors_ref, \@stats);
1399 my @commits = ();
1405 push(@commits, $1);
1409 return @commits;
1415 my @commits = ();
1417 return @commits if (!(-f $file));
1433 push(@commits, $all_commits[$i]);
1445 push(@commits, vcs_save_commits($cmd));
[all …]
/external/u-boot/scripts/
Dget_maintainer.pl1547 my $commits;
1561 $commits = grep(/$pattern/, @lines); # of commits
1581 return ($commits, $signers_ref, $authors_ref, \@stats);
1615 my @commits = ();
1621 push(@commits, $1);
1625 return @commits;
1631 my @commits = ();
1633 return @commits if (!(-f $file));
1649 push(@commits, $all_commits[$i]);
1661 push(@commits, vcs_save_commits($cmd));
[all …]
Dmailmapper77 commits, name = line.split(None, 1) variable
81 commits_per_name[name] = int(commits)
/external/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)
/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/libunwind_llvm/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/mesa3d/bin/
D.cherry-ignore1 # fixes: The following commits were applied without the "cherry-picked from" tag
16 # fixes: The commit requires earlier commits 639c4f2b54a6 and 2cfba40eea4c
20 # fixes: The commit fixes earlier commits 83d4a5d5aea5a8a05be2,
/external/u-boot/tools/patman/
Dseries.py35 self.commits = []
92 self.commits.append(commit)
114 commit = self.commits[upto]
227 for commit in self.commits:
Dfunc_test.py59 for i, commit in enumerate(series.commits):
163 self.assertEqual('Cleaned %s patches' % len(series.commits), lines[0])
171 for i, commit in enumerate(series.commits):
DREADME18 It is configured almost entirely by tags it finds in your commits.
26 in one of your commits, the series will be sent there.
39 - Add tags into the commits within each branch to indicate where the
44 automatically determine the number of commits in it (optional)
245 By adding your change lists into your commits it is easier to
314 The basic workflow is to create your commits, add some tags to the top
399 and use git rebase -i to edit the commits, dropping the wip one. You add
418 Finally, you need to add a change log to the two commits you changed. You
429 commits and combine them into the cover letter, if you have one. So finally
430 you have a new series of commits:
[all …]
/external/compiler-rt/www/
Dmenu.html.incl14 <a href="http://lists.llvm.org/mailman/listinfo/llvm-commits">llvm-commits</a>
/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/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/syzkaller/pkg/vcs/
Dgit_test.go123 commits, err := gitExtractFixTags(strings.NewReader(extractFixTagsInput), extractFixTagsEmail)
127 if !reflect.DeepEqual(commits, extractFixTagsOutput) {
128 t.Fatalf("got : %+v\twant: %+v", commits, extractFixTagsOutput)
Dgit.go226 commits []FixCommit
261 commits = append(commits, FixCommit{tag, commitTitle})
263 return commits, s.Err()
/external/syzkaller/docs/linux/
Dkernel_configs.md14 Note that `CONFIG_KCOV_ENABLE_COMPARISONS` feature also requires `gcc8+` and the following commits
41 If your kernel doesn't have commits [arm64: setup: introduce kaslr_offset()](https://github.com/tor…
71 Note: you also need the following commits if you are testing an old kernel:

123456789