Home
last modified time | relevance | path

Searched refs:commits (Results 1 - 15 of 15) sorted by relevance

/third_party/node/deps/v8/tools/release/
H A Dtest_mergeinfo.py15 "GIT_REPO": "/tmp/test-v8-search-related-commits",
72 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
[all...]
H A Dauto_push.py62 commits = self.GitLog(
65 if not commits:
H A Dmergeinfo.py45 commits = git_execute(git_working_dir, ['log',
53 return commits.splitlines()
93 print('3.) Found follow-up commits, reverts and ports:')
/third_party/mesa3d/bin/pick/
H A 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:
308 """Determine if any of the undecided commits fix/revert a staged commit.
319 for commit in reversed(commits):
326 for commit in commits:
329 for oldc in reversed(commits):
346 # asynchronously gathered, but to also ensure that the commits list remains
352 commits
[all...]
H A Dui.py109 :previous_commits: A list of commits to main since this branch was created
126 commits = urwid.ListBox(self.commit_list)
128 return urwid.Columns([commits, feedback])
/third_party/skia/tools/skqp/
H A Dfind_commit_with_best_gold_results.py93 def find_best_commit(commits):
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)
H A 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'):
/third_party/icu/tools/commit-checker/
H A Dcheck.py95 description = "Generates a Markdown report for commits on main since the 'latest' tag.",
125 help = "JQL query load tickets; this should match tickets expected to correspond to the commits being checked. Example: 'project=ICU and fixVersion=63.1'; set fixVersion to the upcoming version.",
297 print("TIP: Have you pulled the latest main? This script only looks at local commits.", file=sys.stderr)
307 commits = list(get_commits(**vars(args)))
310 # commit_issue_ids is all commits in the git query. Excluding cherry exclusions.
311 commit_issue_ids = set(commit.issue_id for commit in commits if commit.issue_id is not None and commit.commit.hexsha not in excludeAlreadyMergedToOldMaint)
312 # which issues have commits that were excluded
313 excluded_commit_issue_ids = set(commit.issue_id for commit in commits if commit.issue_id is not None and commit.commit.hexsha in excludeAlreadyMergedToOldMaint)
315 # grouped_commits is all commits and issue_ids in the git query, regardless of issue status
318 (issue_id, [commit for commit in commits i
[all...]
/third_party/ltp/docparse/
H A Dtestinfo.pl431 my %commits;
443 $commits{$k} = () unless (defined($commits{$k}));
444 unless (defined($commits{$k}{$v})) {
446 $commits{$k}{$v} = `git log --pretty=format:'%s' -1 $v`;
449 $v .= ' ("' . $commits{$k}{$v} . '")';
/third_party/node/tools/actions/
H A Dcommit-queue.sh77 commits="${start_sha}...${end_sha}"
88 commit_head=$(grep 'Fetched commits as' output | cut -d. -f3 | xargs git rev-parse)
101 if ! commits="$(jq -r 'if .merged then .sha else error("not merged") end' < output)"; then
110 gh pr comment "$pr" --body "Landed in $commits"
/third_party/curl/tests/
H A Dtestcurl.pl413 my @commits;
428 # get the last 5 commits for show (even if no pull was made)
429 @commits=`git log --pretty=oneline --abbrev-commit -5`;
430 logit "The most recent curl git commits:";
431 for (@commits) {
451 # get the last 5 commits for show (even if no pull was made)
452 @commits=`git log --pretty=oneline --abbrev-commit -5`;
453 logit "The most recent ares git commits:";
454 for (@commits) {
/third_party/mesa3d/bin/
H A 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/glslang/
H A Dupdate_glslang_sources.py125 return [GoodCommit(c) for c in json.loads(known_good.read())['commits']]
137 commits = GetGoodCommits(args.site)
145 for c in sorted(commits, key=lambda x: x.subdir):
/third_party/lz4/tests/
H A Dtest-lz4-speed.py119 commits = execute('git log -n 10 %s %s' % (fmt, commit))
121 commits = execute('git --no-pager log %s %s..%s' % (fmt, last_commit, commit))
122 return str('Changes in %s since %s:\n' % (branch, last_commit)) + '\n'.join(commits)
/third_party/ltp/scripts/
H A Dcheckpatch.pl97 multiple git commits with:
1179 # echo "checking commits $1..."
1205 # If input is git commits, extract all commits from the commit expressions.
1210 my @commits = ();
1226 unshift(@commits, $sha1);
1230 die "$P: no git commits after extraction!\n" if (@commits == 0);
1231 @ARGV = @commits;

Completed in 13 milliseconds