Home
last modified time | relevance | path

Searched refs:commit (Results 1 – 25 of 383) sorted by relevance

12345678910>>...16

/openbsd/gnu/usr.bin/perl/Porting/
H A Dcheck-cpan-pollution76 my $commit = shift;
79 . ($commit->{author} eq $commit->{committer}
85 my $header = "$commit->{hash} $author_info: $commit->{msg}";
96 print " $commit->{hash} $author_info: $commit->{msg}\n";
104 my $commit = shift;
133 push @$unsafe, $commit;
147 push @$safe, $commit;
183 my $commit;
186 if (not $commit) {
191 $commit = {
[all …]
H A Dbisect.pl187 my $commit = shift;
188 if (defined $start && `git rev-list -n1 $commit ^$start^` eq "") {
189 print "Skipping $commit, as it is earlier than $start\n";
192 if (defined $end && `git rev-list -n1 $end ^$commit^` eq "") {
193 print "Skipping $commit, as it is more recent than $end\n";
196 print "Testing $commit...\n";
197 system "git checkout $commit </dev/null" and die;
199 die "Runner returned $ret, not 0 for revision $commit" if $ret;
202 return $commit;
H A Dgit-find-p4-change24 my $commit = qx(git rev-list -1 --all $before '$grep');
25 chomp $commit;
26 die "no commit found" unless $commit;
27 system(git => checkout => $commit);
H A Dbisect-runner.pl1524 my ($commit, @files) = @_;
1525 my $patch = `git show $commit @files`;
1527 die_255("Can't get commit $commit for @files: $?") if @files;
1528 die_255("Can't get commit $commit: $?");
1534 my ($commit, @files) = @_;
1535 my $patch = `git show -R $commit @files`;
1538 die_255("Can't get revert commit $commit: $?");
1544 my ($file, $commit) = @_;
1545 $commit ||= $options{gold} || 'blead';
1546 system "git show $commit:$file > $file </dev/null"
[all …]
/openbsd/gnu/llvm/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp394 commit.replace(MsgRange, "@[]"); in rewriteToArrayLiteral()
420 commit.replace(MsgRange, "@[]"); in rewriteToArrayLiteral()
498 commit.replace(MsgRange, "@{}"); in rewriteToDictionaryLiteral()
534 commit.replace(MsgRange, "@{}"); in rewriteToDictionaryLiteral()
583 objectifyExpr(Vals[i], commit); in rewriteToDictionaryLiteral()
584 objectifyExpr(Keys[i], commit); in rewriteToDictionaryLiteral()
870 commit.insert(LitB, "@"); in rewriteToNumberLiteral()
873 commit.insert(LitE, ".0"); in rewriteToNumberLiteral()
877 commit.insert(LitE, LitInfo.F); in rewriteToNumberLiteral()
880 commit.insert(LitE, LitInfo.U); in rewriteToNumberLiteral()
[all …]
/openbsd/gnu/llvm/clang/lib/ARCMigrate/
H A DObjCMT.cpp885 Editor->commit(commit); in migrateProtocolConformance()
951 Editor->commit(commit); in migrateNSEnumDecl()
1229 Editor->commit(commit); in migrateProperty()
1243 Editor->commit(commit); in migrateProperty()
1263 Editor->commit(commit); in migrateNsReturnsInnerPointer()
1275 Editor->commit(commit); in migratePropertyNsReturnsInnerPointer()
1412 Editor->commit(commit); in AnnotateImplicitBridging()
1475 Editor->commit(commit); in AddCFAnnotations()
1642 Editor->commit(commit); in migrateAddMethodAnnotation()
1738 Editor->commit(commit); in InsertFoundation()
[all …]
/openbsd/sys/dev/pci/drm/
H A Ddrm_atomic_helper.c2292 commit = kzalloc(sizeof(*commit), GFP_KERNEL); in drm_atomic_helper_setup_commit()
2298 new_crtc_state->commit = commit; in drm_atomic_helper_setup_commit()
2321 commit->event = kzalloc(sizeof(*commit->event), in drm_atomic_helper_setup_commit()
2335 state->crtcs[i].commit = commit; in drm_atomic_helper_setup_commit()
2358 new_conn_state->commit = drm_crtc_commit_get(commit); in drm_atomic_helper_setup_commit()
2503 commit = new_crtc_state->commit; in drm_atomic_helper_commit_hw_done()
2515 old_crtc_state->commit = drm_crtc_commit_get(commit); in drm_atomic_helper_commit_hw_done()
2548 commit = old_crtc_state->commit; in drm_atomic_helper_commit_cleanup_done()
3044 commit = old_crtc_state->commit; in drm_atomic_helper_swap_state()
3055 commit = old_conn_state->commit; in drm_atomic_helper_swap_state()
[all …]
H A Ddrm_atomic_state_helper.c152 state->commit = NULL; in __drm_atomic_helper_crtc_duplicate_state()
195 if (state->commit) { in __drm_atomic_helper_crtc_destroy_state()
206 drm_crtc_commit_put(state->commit); in __drm_atomic_helper_crtc_destroy_state()
208 kfree(state->commit->event); in __drm_atomic_helper_crtc_destroy_state()
209 state->commit->event = NULL; in __drm_atomic_helper_crtc_destroy_state()
211 drm_crtc_commit_put(state->commit); in __drm_atomic_helper_crtc_destroy_state()
339 state->commit = NULL; in __drm_atomic_helper_plane_duplicate_state()
383 if (state->commit) in __drm_atomic_helper_plane_destroy_state()
384 drm_crtc_commit_put(state->commit); in __drm_atomic_helper_plane_destroy_state()
623 state->commit = NULL; in __drm_atomic_helper_connector_duplicate_state()
[all …]
/openbsd/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DFixItRewriter.cpp154 edit::Commit commit(Editor); in HandleDiagnostic() local
161 commit.insertFromRange(Hint.RemoveRange.getBegin(), in HandleDiagnostic()
165 commit.remove(Hint.RemoveRange); in HandleDiagnostic()
169 commit.replace(Hint.RemoveRange, Hint.CodeToInsert); in HandleDiagnostic()
171 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert, in HandleDiagnostic()
175 bool CanRewrite = Info.getNumFixItHints() > 0 && commit.isCommitable(); in HandleDiagnostic()
189 if (!Editor.commit(commit)) { in HandleDiagnostic()
/openbsd/gnu/llvm/llvm/docs/
H A DGitHub.rst27 /cherry-pick <commit> <commit> <...>
29 This command takes one or more git commit hashes as arguments and will attempt
30 to cherry-pick the commit(s) to the release branch. If the commit(s) fail to
32 the issue. If the commit(s) do apply cleanly, then a pull request will
H A DPhabricator.rst114 in the form of a :ref:`commit message <commit messages>`.
179 * For each commit after that, add the following line to the commit message or patch
184 [llvm] Example commit
190 * Upload the commit with the web interface or `arc`
211 * For the first commit:
220 - Add the "Depends on..." line using ``git commit --amend``
346 yourself. If you have commit access, there are multiple workflows to commit the
359 review, and add a link from the review to the commit.
368 and place it in the commit message. You may also commit an accepted change
399 git commit --amend --author="John Doe <jdoe@llvm.org>"
[all …]
H A DContributing.rst70 recent commit:
76 Note that this modifies the files, but doesn't commit them -- you'll likely want
81 % git commit --amend -a
83 in order to update the last commit with all pending changes.
108 Once that is done the change can be committed. If you do not have commit
109 access, please let people know during the review and someone should commit it
122 For developers to commit changes from Git
125 Once a patch is reviewed, you should rebase it, re-test locally, and commit the
129 `obtaining commit access <DeveloperPolicy.html#obtaining-commit-access>`_
130 for commit access.
[all …]
H A DGitBisecting.rst32 If you can't repro at the current commit (maybe the build is broken), run
33 ``git bisect skip`` and git will pick a nearby alternate commit.
72 later you'll know which commit caused the regression.
89 ``A`` is the first commit in LLVM ever, ``97724f18c79c``.
91 ``B`` is the first commit in MLIR, ``aed0d21a62db``.
93 ``D`` is the merge commit that merged MLIR into the main LLVM repository,
96 ``C`` is the last commit in MLIR before it got merged, ``0f0d0ed1c78f^2``. (The
97 ``^n`` modifier selects the n'th parent of a merge commit.)
H A DSecurityTransparencyReports.rst12 commit <https://github.com/llvm/llvm-project/commit/7bf73bcf6d93>`_ describing
18 * We defined details on how to report security issues, see `this commit on
19 20th of May 2021 <https://github.com/llvm/llvm-project/commit/c9dbaa4c86d2>`_
21 commit on 30th of July 2021 <https://github.com/llvm/llvm-project/commit/4c98e9455aad>`_
H A DCodeReview.rst37 those requested during any post-commit review.
44 Post-commit review is encouraged, and can be accomplished using any of the
49 If a community member expresses a concern about a recent commit, and this
51 pre-commit review (including around the need for more design discussions),
56 this is inherent to our post-commit review practices.
67 Please note: The bar for post-commit feedback is not higher than for pre-commit
70 pre-commit (had you noticed it earlier), please feel free to provide that
75 address the issues than comment on the original commit. The original patch
117 commit message).
141 When providing an unqualified LGTM (approval to commit), it is the
[all …]
/openbsd/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFileBuilder.cpp245 cantFail(InjectedSourceTable.commit(Writer)); in commitSrcHeaderBlock()
269 Error PDBFileBuilder::commit(StringRef Filename, codeview::GUID *Guid) { in commit() function in PDBFileBuilder
276 Msf->commit(Filename, Layout); in commit()
288 if (auto EC = Strings.commit(NSWriter)) in commit()
303 if (auto EC = Info->commit(Layout, Buffer)) in commit()
308 if (auto EC = Dbi->commit(Layout, Buffer)) in commit()
313 if (auto EC = Tpi->commit(Layout, Buffer)) in commit()
318 if (auto EC = Ipi->commit(Layout, Buffer)) in commit()
323 if (auto EC = Gsi->commit(Layout, Buffer)) in commit()
361 return Buffer.commit(); in commit()
/openbsd/gnu/usr.bin/perl/pod/
H A Dperlgit.pod116 Changes not staged for commit:
135 C<git commit>.
202 Now commit your change locally:
221 makes a good commit message.
253 % git commit -a --amend
636 % git commit -a -m "Some fixing" \
769 % git commit -a
775 by the merge commit.
777 C<--no-commit> means that the merge commit will be I<prepared> but not
780 Without C<--no-commit>, the commit would be made with nearly no useful
[all …]
/openbsd/gnu/usr.bin/cvs/src/
H A Dwatch.c99 add_commit_pending = what->adding && what->commit;
102 remove_commit_pending = !what->adding && what->commit;
257 the_args.commit = 0;
278 the_args.commit = 1;
283 the_args.commit = 1;
289 the_args.commit = 0;
307 the_args.commit = 1;
330 if (the_args.commit)
335 if (!the_args.edit && !the_args.unedit && !the_args.commit)
/openbsd/gnu/llvm/clang/include/clang/Edit/
H A DRewriters.h26 const NSAPI &NS, Commit &commit);
29 const NSAPI &NS, Commit &commit,
33 const NSAPI &NS, Commit &commit);
/openbsd/gnu/usr.bin/cvs/
H A DChangeLog.zoo150 commit just the files specified.
156 next "cvs commit".
188 % cvs commit
199 % cvs commit
227 % cvs commit -r2.0
237 added to commit/rtag/tag/checkout/update.
365 commit to glean the log message from the
396 various commit core dumps
485 before completing the commit operation.
536 commit: Removed -a option; use -l instead.
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DBinaryByteStream.h123 Error commit() override { return Error::success(); } in commit() function
192 Error commit() override { return Error::success(); } in commit() function
214 Error commit() override { in commit() function
215 if (FileBuffer->commit()) in commit()
256 Error commit() override { return Impl.commit(); } in commit() function
/openbsd/gnu/usr.bin/binutils-2.17/binutils/
H A DBRANCHES10 contact regarding the branch) and a description of the commit policy
17 Please do not commit to these branches without
23 Please do not commit to this branch without
/openbsd/sys/dev/pci/drm/amd/display/amdgpu_dm/
H A Damdgpu_dm_crc.c258 struct drm_crtc_commit *commit; in amdgpu_dm_crtc_set_crc_source() local
278 commit = list_first_entry_or_null(&crtc->commit_list, in amdgpu_dm_crtc_set_crc_source()
280 if (commit) in amdgpu_dm_crtc_set_crc_source()
281 drm_crtc_commit_get(commit); in amdgpu_dm_crtc_set_crc_source()
284 if (commit) { in amdgpu_dm_crtc_set_crc_source()
293 &commit->hw_done, 10 * HZ); in amdgpu_dm_crtc_set_crc_source()
403 if (commit) in amdgpu_dm_crtc_set_crc_source()
404 drm_crtc_commit_put(commit); in amdgpu_dm_crtc_set_crc_source()
/openbsd/gnu/llvm/clang/utils/analyzer/
H A DProjectMap.py86 commit: str = "" variable in ProjectInfo
163 origin, commit = ProjectMap._get_git_params(raw_project)
165 origin, commit = "", ""
167 return ProjectInfo(name, build_mode, source, origin, commit,
/openbsd/gnu/llvm/llvm/lib/Support/
H A DBinaryStreamRef.cpp60 Error commit() override { return BBS.commit(); } in commit() function in __anonbc10a3d70111::MutableArrayRefImpl
128 Error WritableBinaryStreamRef::commit() { return BorrowedImpl->commit(); } in commit() function in WritableBinaryStreamRef

12345678910>>...16