Home
last modified time | relevance | path

Searched full:commits (Results 1 – 25 of 1404) sorted by relevance

12345678910>>...57

/aosp_15_r20/external/pytorch/scripts/release_notes/
H A Dcommitlist.py25 Said commitlist contains commits between v1.5.0 and f5bc91f851.
64 def __init__(self, path: str, commits: List[Commit]):
66 self.commits = commits
70 commits = CommitList.read_from_disk(path)
71 return CommitList(path, commits)
79 commits = CommitList.get_commits_between(base_version, new_version)
80 return CommitList(path, commits)
95 self.write_to_disk_static(self.path, self.commits)
192 # Revert commits are merged directly to master with no associated PR number
350 # but I found that to catch a decent number of extra commits.
[all …]
H A DREADME.md2 …scripts for access lists of commits between releases. There are other scripts for automatically ge…
17 ### Part 1: getting a list of commits
19 You are going to get a list of commits since the last release in csv format. The usage is the follo…
24 …st to `results/commitlist.csv`. Please confirm visually that the oldest commits weren’t included …
26 … list contains commits from the merge-base of tags/<most_recent_release_tag> and whatever commit h…
28 * Go through the list of cherry-picked commits to the last release and delete them from results/com…
31 …* Look at the commit history https://github.com/pytorch/pytorch/commits/release/<most_recent_rele…
34 …f there are cherry-picks to the release branch or if you’re categorizing commits throughout the th…
38 ### Part 2: categorizing commits
42 … used for exploration and finding relevant commits. For example the commitlist attempts to categor…
[all …]
H A Dcategorize.py26 self.commits = CommitList.from_existing(path)
51 commits = self.commits.filter(category=self.category)
52 total_commits = len(self.commits.commits)
53 already_done = total_commits - len(commits)
55 while i < len(commits):
56 cur_commit = commits[i]
57 next_commit = commits[i + 1] if i + 1 < len(commits) else None
59 cur_commit, already_done + i + 1, total_commits, commits
66 i = len(commits)
68 i = commits.index(next_commit)
[all …]
H A Dtest_release_notes.py14 self.assertEqual(len(commit_list.commits), 33)
15 self.assertEqual(commit_list.commits[0].commit_hash, "7335f079abb")
17 commit_list.commits[0].title.startswith("[pt][quant] qmul and qadd")
19 self.assertEqual(commit_list.commits[-1].commit_hash, "6000dca5df6")
21 commit_list.commits[-1].title.startswith(
33 expected.commits[-2].category = "foobar"
37 for commit, expected_commit in zip(commit_list.commits, expected.commits):
44 initial.commits[-2].category = "foobar"
45 self.assertEqual(len(initial.commits), 2143)
50 self.assertEqual(len(commit_list.commits), 2143 + 4)
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/
H A DREADME.md195 …ullis</b></sub></a><br /><a href="https://github.com/aws/aws-sdk-java-v2/commits?author=sullis" ti…
196 …rooks</b></sub></a><br /><a href="https://github.com/aws/aws-sdk-java-v2/commits?author=abrooksv" …
197 …awski</b></sub></a><br /><a href="https://github.com/aws/aws-sdk-java-v2/commits?author=ktoso" tit…
198 …pkins</b></sub></a><br /><a href="https://github.com/aws/aws-sdk-java-v2/commits?author=andrewhop"…
199 …homas</b></sub></a><br /><a href="https://github.com/aws/aws-sdk-java-v2/commits?author=adamthom-a…
200 … Swor</b></sub></a><br /><a href="https://github.com/aws/aws-sdk-java-v2/commits?author=sworisbrea…
201 …rgess</b></sub></a><br /><a href="https://github.com/aws/aws-sdk-java-v2/commits?author=Carey-AWS"…
204 …rawal</b></sub></a><br /><a href="https://github.com/aws/aws-sdk-java-v2/commits?author=anuraaga" …
205 …alder</b></sub></a><br /><a href="https://github.com/aws/aws-sdk-java-v2/commits?author=jeffalder"…
206 …Boris</b></sub></a><br /><a href="https://github.com/aws/aws-sdk-java-v2/commits?author=dotbg" tit…
[all …]
/aosp_15_r20/external/coreboot/Documentation/releases/
H A Dcoreboot-4.5-relnotes.md13 commits by 119 authors.
25 ### Toolchain (29 commits)
37 ### Build system (32 commits)
42 ### Utilities (103 commits)
49 * General code cleanup (197 commits)
55 ### TPM (55 commits)
59 ### Drivers (54 commits)
67 ### Lib (33 commits)
75 * AMD (14 commits) - Cleanup, add libagesa.a builds, remove unused code.
76 * Google (22 commits) - vboot2 updates and cleanup
[all …]
H A Dcoreboot-4.6-relnotes.md10 commits by 121 authors. The release tarballs and gpg signatures are
115 Build system (20 commits)
119 Codebase cleanup (94 commits)
125 Documentation (6 commits)
133 EC (26 commits)
136 TPM (41 commits)
142 Devices (24 commits)
147 Lib (28 commits)
155 Commonlib (11 commits)
159 Drivers (29 commits)
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/bin/
Dgit-clang-format39 If zero or one commits are given, run clang-format on all lines that differ
53 If two commits are given (requires --diff), run clang-format on all lines in the
136 help=('diff from the last common commit for commits in '
138 'commits'))
151 commits, files = interpret_args(opts.args, dash_dash, opts.commit)
152 if len(commits) > 2:
153 die('at most two commits allowed; %d given' % len(commits))
154 if len(commits) == 2:
156 die('--staged is not allowed when two commits are given')
158 die('--diff is required when two commits are given')
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/bin/
Dgit-clang-format39 If zero or one commits are given, run clang-format on all lines that differ
53 If two commits are given (requires --diff), run clang-format on all lines in the
136 help=('diff from the last common commit for commits in '
138 'commits'))
151 commits, files = interpret_args(opts.args, dash_dash, opts.commit)
152 if len(commits) > 2:
153 die('at most two commits allowed; %d given' % len(commits))
154 if len(commits) == 2:
156 die('--staged is not allowed when two commits are given')
158 die('--diff is required when two commits are given')
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-stable/bin/
Dgit-clang-format39 If zero or one commits are given, run clang-format on all lines that differ
53 If two commits are given (requires --diff), run clang-format on all lines in the
136 help=('diff from the last common commit for commits in '
138 'commits'))
151 commits, files = interpret_args(opts.args, dash_dash, opts.commit)
152 if len(commits) > 2:
153 die('at most two commits allowed; %d given' % len(commits))
154 if len(commits) == 2:
156 die('--staged is not allowed when two commits are given')
158 die('--diff is required when two commits are given')
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/bin/
Dgit-clang-format39 If zero or one commits are given, run clang-format on all lines that differ
53 If two commits are given (requires --diff), run clang-format on all lines in the
136 help=('diff from the last common commit for commits in '
138 'commits'))
151 commits, files = interpret_args(opts.args, dash_dash, opts.commit)
152 if len(commits) > 2:
153 die('at most two commits allowed; %d given' % len(commits))
154 if len(commits) == 2:
156 die('--staged is not allowed when two commits are given')
158 die('--diff is required when two commits are given')
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/bin/
Dgit-clang-format39 If zero or one commits are given, run clang-format on all lines that differ
53 If two commits are given (requires --diff), run clang-format on all lines in the
136 help=('diff from the last common commit for commits in '
138 'commits'))
151 commits, files = interpret_args(opts.args, dash_dash, opts.commit)
152 if len(commits) > 2:
153 die('at most two commits allowed; %d given' % len(commits))
154 if len(commits) == 2:
156 die('--staged is not allowed when two commits are given')
158 die('--diff is required when two commits are given')
[all …]
/aosp_15_r20/external/bcc/scripts/
H A Dgit-clang-format38 If zero or one commits are given, run clang-format on all lines that differ
42 If two commits are given (requires --diff), run clang-format on all lines in the
129 commits, files = interpret_args(opts.args, dash_dash, opts.commit)
130 if len(commits) > 1:
132 die('--diff is required when two commits are given')
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)
156 if len(commits) > 1:
157 old_tree = commits[1]
[all …]
/aosp_15_r20/external/clang/tools/clang-format/
H A Dgit-clang-format38 If zero or one commits are given, run clang-format on all lines that differ
42 If two commits are given (requires --diff), run clang-format on all lines in the
127 commits, files = interpret_args(opts.args, dash_dash, opts.commit)
128 if len(commits) > 1:
130 die('--diff is required when two commits are given')
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]
[all …]
/aosp_15_r20/external/pigweed/docs/_static/js/
H A Dchangelog.js17 // updates. It fetches the commits over a user-specified timeframe, derives
18 // a little metadata about each commit, organizes the commits, and renders
23 // Get the commits from the user-specified timeframe.
30 let commits = [];
32 // The commits are pulled from the Pigweed mirror on GitHub because
34 let url = new URL(`https://api.github.com/repos/google/pigweed/commits`);
55 commits = commits.concat(data);
58 return commits;
64 async function normalize(commits) { argument
72 commits.forEach((commit) => {
[all …]
/aosp_15_r20/external/mesa3d/bin/pick/
H A Dcore.py237 def split_commit_list(commits: str) -> typing.Generator[typing.Tuple[str, str], None, None]:
238 if not commits:
240 for line in commits.split('\n'):
322 async def resolve_fixes(commits: typing.List['Commit'], previous: typing.List['Commit']) -> None:
323 """Determine if any of the undecided commits fix/revert a staged commit.
334 for commit in reversed(commits):
341 for commit in commits:
344 for oldc in reversed(commits):
361 # asynchronously gathered, but to also ensure that the commits list remains
367 commits: typing.List[typing.Optional['Commit']],
[all …]
/aosp_15_r20/development/tools/repo_diff/
H A Drepo_diff_trees.py134 """Match a downstream project to an upstream project using their root commits.
136 Find all root commits in a downstream project and find a matching
142 upstream_root_commits: A dict of root commits and their upstream project.
317 """Returns a list of root commits in a git project path."""
324 """Returns a dict of root commits with all projects with that root commit."""
338 """Extract commits that have not been upstreamed in a specific project.
344 A dict of commits not upstreamed.
348 print('Finding commits not upstreamed in ' + name)
349 commits = git_commits_not_upstreamed.find('FETCH_HEAD', 'HEAD', path)
350 print('Found commits not upstreamed in ' + name)
[all …]
H A Dgit_commits_not_upstreamed.py1 """List downstream commits that are not upstream and are visible in the diff.
62 """Finds all commits that insert lines on top of the upstream baseline.
66 downstream: Downstream branch to search for commits missing upstream.
70 A set of commits that insert lines on top of the upstream baseline.
85 for commits in commits_per_file:
86 insertion_commits.update(commits)
92 """Finds downstream commits that are not upstream and are visible in the diff.
96 downstream: Downstream branch to search for commits missing upstream.
100 A set of downstream commits missing upstream.
106 # TODO(slobdell b/78283222) resolve commits not upstreamed that are purely reverts
[all …]
H A DREADME.md62 3. Find commits in source tree B that are not in source tree A.
65 of finding commits only in B is explaned below.
67 ## Finding commits not upstream
72 the commits that exist in the downstream project (B) but not the
77 not only by finding which commits that were merged
79 commits.
85 * Commits that were squashed with other commits
86 * Commits that were reauthored
88 Cherry pick will not recognize these commits as having an equivalent
93 1. First listing the "git cherry" commits that will give us the
[all …]
/aosp_15_r20/external/executorch/build/
H A Dpick_doc_commits.py8 """Helps find commits to cherrypick into a release branch.
13 It will find commits on the main branch that are not on the release branch, and
14 filter them down to the docs-only commits that should be cherrypicked. It will
15 also print the commits that were filtered out.
159 help="The name of the main (source) branch to pick commits from.",
164 help="The name of the release (destination) branch to pick commits onto, "
190 f"Commits on '{main_branch}' that have already been cherry-picked into '{release_branch}':"
203 # Filter out and print the commits that touch non-documentation files.
205 f"Will not pick these commits on '{main_branch}' that touch non-documentation files:"
217 # Print the commits to cherry-pick.
[all …]
/aosp_15_r20/external/coreboot/util/scripts/
H A Dget_maintainer.pl789 --git-min-percent => minimum percentage of commits required (default: $email_git_min_percent)
790 --git-blame => use git blame to find modified commits for patch or file
802 --rolestats => show roles and statistics (commits/total_commits, %)
841 Using "--rolestats" and "--git-blame" shows the #/total=% commits,
842 not the percentage of the entire file authored. # of commits is
844 contain a thousand lines, 5 trivial commits may modify a single line.
1343 my $commits;
1357 $commits = grep(/$pattern/, @lines); # of commits
1377 return ($commits, $signers_ref, $authors_ref, \@stats);
1411 my @commits = ();
[all …]
/aosp_15_r20/external/libchrome/libchrome_tools/uprev/
H A Dgenerate_filtered_tree.py19 # Use avg speed of last TIMING_DISTANCE commits.
23 # Merge commits are always verified.
91 The parent commits are identified by the parents of the original commit and
129 """Processes new commits in browser repository.
184 description='Copy file from given commits')
205 # Get a mapping between browser repository and filtered branch for commits
207 print('reading commits details for commits mapping')
225 # Process newer commits in browser repository from
227 print('search for commits to filter')
232 print(len(pending_commits), 'commits to process')
[all …]
/aosp_15_r20/external/arm-trusted-firmware/tools/conventional-changelog-tf-a/
H A Dindex.js101 * Register a helper to return a restructured version of the commit groups that includes commits
104 Handlebars.registerHelper("tf-a-commits", function (commitGroups, options) {
105 const generateTemplateData = function (sections, commits) { argument
109 sections: generateTemplateData(section.sections, commits),
110 commits: commits.filter(commit => section.scopes?.includes(commit.scope)), property
116 if ((templateData.sections.length == 0) && (templateData.commits.length == 0)) {
127 sections: generateTemplateData(config.sections, commitGroup.commits),
128 commits: commitGroup.commits.filter(commit =>
161 * similar to the pre-Conventional Commits TF-A changelog.
/aosp_15_r20/tools/treble/build/treble_build/cmd/
H A Dmain.go103 Commits []commit `json:"commits,omitempty"` member
166 var commits repoFlags
177 queryFlags.Var(&commits, "repo", "Repo:SHA to query")
183 pathsFlags.Var(&commits, "repo", "Repo:SHA to build")
207 // Resolve any commits
208 if len(commits) > 0 {
209 log.Printf("Resolving %s", commits.String())
210 for _, c := range commits {
217 rsp.Commits = append(rsp.Commits, commit)
291 if len(rsp.Commits) > 0 {
[all …]
/aosp_15_r20/external/trusty/arm-trusted-firmware/tools/conventional-changelog-tf-a/
Dindex.js101 * Register a helper to return a restructured version of the commit groups that includes commits
104 Handlebars.registerHelper("tf-a-commits", function (commitGroups, options) {
105 const generateTemplateData = function (sections, commits) { argument
109 sections: generateTemplateData(section.sections, commits),
110 commits: commits.filter(commit => section.scopes?.includes(commit.scope)), property
116 if ((templateData.sections.length == 0) && (templateData.commits.length == 0)) {
127 sections: generateTemplateData(config.sections, commitGroup.commits),
128 commits: commitGroup.commits.filter(commit =>
161 * similar to the pre-Conventional Commits TF-A changelog.

12345678910>>...57