Searched refs:commits (Results 1 - 15 of 15) sorted by relevance
/third_party/node/deps/v8/tools/release/ |
H A D | test_mergeinfo.py | 15 "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 D | auto_push.py | 62 commits = self.GitLog( 65 if not commits:
|
H A D | mergeinfo.py | 45 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 D | core.py | 224 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 D | ui.py | 109 :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 D | find_commit_with_best_gold_results.py | 93 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 D | make_apk_list.py | 92 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 D | check.py | 95 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 D | testinfo.pl | 431 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 D | commit-queue.sh | 77 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 D | testcurl.pl | 413 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 D | gen_release_notes.py | 185 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 D | update_glslang_sources.py | 125 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 D | test-lz4-speed.py | 119 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 D | checkpatch.pl | 97 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