Home
last modified time | relevance | path

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

12345678910>>...15

/openbsd-src/gnu/usr.bin/perl/Porting/
H A Dcheck-cpan-pollution76 my $commit = shift;
78 my $author_info = "by $commit->{author}"
79 . ($commit->{author} eq $commit->{committer}
81 : " committed by $commit->{committer}");
85 my $header = "$commit->{hash} $author_info: $commit->{msg}";
90 . $commit->{hash};
96 print " $commit->{hash} $author_info: $commit->{msg}\n";
104 my $commit = shift;
116 @{$commit->{files}};
132 $commit->{msg} = 'Touched files under cpan/ and other locations';
[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);
/openbsd-src/gnu/llvm/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp60 const NSAPI &NS, Commit &commit) { in rewriteObjCRedundantCallWithLiteral() argument
86 commit.replaceWithInner(Msg->getSourceRange(), in rewriteObjCRedundantCallWithLiteral()
174 static void maybePutParensOnReceiver(const Expr *Receiver, Commit &commit) { in maybePutParensOnReceiver() argument
177 commit.insertWrap("(", RecRange, ")"); in maybePutParensOnReceiver()
182 Commit &commit) { in rewriteToSubscriptGetCommon() argument
193 commit.replaceWithInner(CharSourceRange::getCharRange(MsgRange.getBegin(), in rewriteToSubscriptGetCommon()
196 commit.replaceWithInner(SourceRange(ArgRange.getBegin(), MsgRange.getEnd()), in rewriteToSubscriptGetCommon()
198 commit.insertWrap("[", ArgRange, "]"); in rewriteToSubscriptGetCommon()
199 maybePutParensOnReceiver(Rec, commit); in rewriteToSubscriptGetCommon()
206 Commit &commit) { in rewriteToArraySubscriptGet() argument
[all …]
/openbsd-src/gnu/llvm/clang/lib/ARCMigrate/
H A DObjCMT.cpp236 const NSAPI &NS, edit::Commit &commit, in rewriteToPropertyDotSyntax() argument
275 commit.insertBefore(receiver->getBeginLoc(), "("); in rewriteToPropertyDotSyntax()
281 commit.replace(SpaceRange, PropertyDotString); in rewriteToPropertyDotSyntax()
284 commit.replace(SourceRange(MsgRange.getBegin(), MsgRange.getBegin()), ""); in rewriteToPropertyDotSyntax()
285 commit.replace(SourceRange(MsgRange.getEnd(), MsgRange.getEnd()), ""); in rewriteToPropertyDotSyntax()
288 commit.insertWrap("(", receiver->getSourceRange(), ")"); in rewriteToPropertyDotSyntax()
306 commit.replace(Range, PropertyDotString); in rewriteToPropertyDotSyntax()
308 commit.replace(SourceRange(MsgRange.getBegin(), MsgRange.getBegin()), ""); in rewriteToPropertyDotSyntax()
309 commit.replace(SourceRange(MsgRange.getEnd(), MsgRange.getEnd()), ""); in rewriteToPropertyDotSyntax()
327 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() local
[all …]
/openbsd-src/sys/dev/pci/drm/
H A Ddrm_atomic_helper.c1492 else if (funcs->commit) in drm_atomic_helper_commit_modeset_enables()
1493 funcs->commit(crtc); in drm_atomic_helper_commit_modeset_enables()
1527 else if (funcs->commit) in drm_atomic_helper_commit_modeset_enables()
1528 funcs->commit(encoder); in drm_atomic_helper_commit_modeset_enables()
1715 struct drm_crtc_commit *commit = old_state->crtcs[i].commit; in drm_atomic_helper_wait_for_flip_done() local
1720 if (!crtc || !commit) in drm_atomic_helper_wait_for_flip_done()
1723 ret = wait_for_completion_timeout(&commit->flip_done, 10 * HZ); in drm_atomic_helper_wait_for_flip_done()
1926 if (old_plane_state->commit && in drm_atomic_helper_async_check()
1927 !try_wait_for_completion(&old_plane_state->commit->hw_done)) { in drm_atomic_helper_async_check()
2141 struct drm_crtc_commit *commit, *stall_commit = NULL; in stall_checks() local
[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()
205 if (state->event && state->commit->abort_completion) 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()
[all …]
/openbsd-src/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-src/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.rst26 to the relevant -commits mailing list. If you are not subscribed to the commit
49 The basic way of creating a revision for the current commit in your local
60 llvm-commit mailing list, patch reviewers, and all other subscribers, buildbot
68 If you later update your commit message, you need to add the `--verbatim`
114 in the form of a :ref:`commit message <commit messages>`.
152 This assumes that you've already created a Phabricator review for each commit,
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`
198 commit messages, since they add noise and duplicate git's implicit ordering.
[all …]
H A DContributing.rst61 * have a single commit (unless stacked on another Differential), up-to-date with the upstream ``ori…
70 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>`_
[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
46 promptly to post-commit feedback and address it. Failure to do so is cause for
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
81 Pre-commit code reviews are conducted on our web-based code-review tool (see
[all …]
/openbsd-src/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-src/gnu/usr.bin/perl/pod/
H A Dperlgit.pod104 staged for the next commit, and usually some useful information about
109 Your branch is ahead of 'origin/blead' by 1 commit.
116 Changes not staged for commit:
128 This shows that there were changes to this document staged for commit,
132 shows that there is one commit on the working branch C<blead> which has
135 C<git commit>.
202 Now commit your change locally:
204 % git commit -a -m 'Rename Leon Brocard to Orange Brocard'
205 Created commit 6196c1d: Rename Leon Brocard to Orange Brocard
209 have changed. If at this time, you only want to commit som
[all...]
/openbsd-src/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-src/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-src/gnu/usr.bin/cvs/
H A DChangeLog.zoo127 * The "cvs -n commit" command now works, to show which files are
128 out-of-date and will cause the real commit to fail, or which files
129 will fail any pre-commit checks. Also, the "cvs -n import ..."
133 * Doing "cvs commit modules" to checkin the modules file will no
148 * Doing "cvs commit */Makefile" now works as one would expect.
149 Rather than trying to commit everything recursively, it will now
150 commit just the files specified.
156 next "cvs commit".
188 % cvs commit
191 actually commit the change. As such, forking development at some
[all …]
/openbsd-src/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-src/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-src/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-src/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-src/gnu/llvm/llvm/lib/Support/
H A DBinaryStreamRef.cpp60 Error commit() override { return BBS.commit(); } in commit() function in __anon62fa0aa10111::MutableArrayRefImpl
128 Error WritableBinaryStreamRef::commit() { return BorrowedImpl->commit(); } in commit() function in WritableBinaryStreamRef
/openbsd-src/gnu/llvm/llvm/utils/phabricator/
H A D0001-Fix-PHP-8.1-incompatibility-with-arc-patch-D-12345.patch60 public function hasLocalCommit($commit) {
62 - if (!$this->getCanonicalRevisionName($commit)) {
63 + if (!phutil_nonempty_string($commit) ||
64 + !$this->getCanonicalRevisionName($commit)) {

12345678910>>...15