Home
last modified time | relevance | path

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

12345678910>>...14

/freebsd/
H A DMAINTAINERS31 or makes a commit to the specified subtree.
36 aio(4) asomers Pre-commit review requested.
37 ath(4) adrian Pre-commit review requested, send to freebsd-wireless@freebsd.org
38 contrib/atf ngie,#test Pre-commit review requested.
39 contrib/googletest ngie,#test Pre-commit review requested.
40 sbin/ipf cy Pre-commit review requested.
41 contrib/libcxxrt dim,emaste Pre-commit review preferred.
42 contrib/llvm-project/compiler-rt dim Pre-commit review preferred.
43 contrib/llvm-project/libcxx dim Pre-commit review preferred.
44 contrib/llvm-project/libunwind dim,emaste,jhb Pre-commit review preferred.
[all …]
/freebsd/tools/tools/git/
H A Dgit-arc.sh61 create [-dl] [-r <reviewer1>[,<reviewer2>...]] [-s subscriber[,...]] [<commit>|<commit range>]
62 diff <commit>|<commit range>
63 list <commit>|<commit range>
65 stage [-b branch] [<commit>|<commit range>]
66 update [-l] [-m message] [<commit>|<commit range>]
186 diff=$(git show -s --format=%B "$commit" |
212 local commit diff title
214 commit=$1
218 diff=$(log2diff "$commit")
226 title=$(git show -s --format=%s "$commit")
[all …]
H A Dgit-mfc30 def commit_summary(commit): argument
34 def commit_match(commit, author, committer): argument
35 return (author is None or author in commit.author.email) and \
36 (committer is None or committer in commit.committer.email)
77 def fixes(repo, commit, warn=False): argument
129 if commit.hexsha in special:
130 return [repo.commit(c) for c in special[commit.hexsha]]
132 if commit.committed_date < datetime.datetime(2021, 1, 1).timestamp():
138 for line in commit.message.splitlines():
146 fixed.append(repo.commit(m.group(1)))
[all …]
H A Darcgit56 local commit phab_id arc_dir
58 commit=$1
62 echo "Create review for '`git show $commit -s --oneline`'"
69 git checkout $commit > /dev/null || error "Could not checkout $commit"
90 headline="$(git show $commit -s --format=%s)"
102 cat - <<EOF | git commit --allow-empty -F -
199 git log --format=%H $range | tail -r | while read -r commit
201 create_review $commit < /dev/null
H A DHOWTO11 1. Create a series of commits in git. Each commit will be a separate review, so
12 try to make each commit as self-contained as possible. The series of commits
14 one commit might refactor existing code to expose a new API without changing
15 any current functionality. A subsequent commit could then introduce your new
21 subsequent commit, it is a waste of your reviewer's time to have them review
23 bug fix into the commit that introduced it, so that the bug is never
26 The commit headline and commit message will be imported verbatim into
27 Differential, so try to give each commit a meaningful commit message that
33 C1 should be the first commit that you want reviewed, and C2 should be the
34 last commit that you want reviewed. You may add multiple reviewers by
[all …]
/freebsd/contrib/llvm-project/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 …]
/freebsd/crypto/openssh/
H A DChangeLog1 commit 449d25b4f8b8d3bb55a865ebcbec17b39b37c208
7 commit 0227fe4606ebf86b3f6f9b80af12e171eaa58416
13 commit 0210c7cc942ee54bd6a647d5732df9786c4b08d0
21 commit 5d04ca6af739b82fd30d84d2783ca802ebfa1192
44 commit e8bdfb151a356d0171fea4194dd205fbb252be23
58 commit d43ba60c91cb323ca921049b7d43b1908c318454
70 commit cf67d46cba77d493152830a108b5f294ee9c5140
80 commit 93d6348ae44491b7542d78c0d55da7130e9db017
90 commit aab5620a66777afbe9e0939b4961e5751d6e7938
96 commit c123ac1c579212c08c17d927cb8e379d45f9fccb
[all …]
/freebsd/contrib/xz/
H A DChangeLog1 commit 4b73f2ec19a99ef465282fbce633e8deb33691b3
11 commit 97b7440006d69a30048ff1ffc29fc7a0615e5d51
20 commit 8e1022cfb1d177e482e487c202a0ab43dee761a3
55 commit a3ea8832bec11128597c454f5d14d05ef6010e3f
64 commit c8c22869e780ff57c96b46939c3d79ff99395f87
85 commit a37658bec72ed581a683b7498a75a70122b831b0
100 commit 9e499f714cade4beade31c86dcb0de9fc72d0562
109 commit 1e00837f72e0551ab73927642a8f61aad80c958d
118 commit 8082851b7848ac32fea7bc7cfb84d9b3ef5537b0
127 commit 3cdd412bcea6bb5b4c5d41d2b4104230a5a9569c
[all …]
/freebsd/sys/contrib/device-tree/scripts/
H A Dgit-filter-branch54 git commit-tree "$@"
192 --commit-filter)
364 printf "\rRewrite $commit ($count/$commits)$progress "
389 while read commit parents; do
393 test -f "$workdir"/../map/$commit && continue
399 GIT_ALLOW_NULL_SHA1=1 git read-tree -i -m $commit
405 git read-tree -i -m $commit:"$filter_subdir" 2>&1) || {
406 if ! git rev-parse -q --verify $commit:"$filter_subdir"
416 GIT_COMMIT=$commit
418 git cat-file commit "$commit" >../commit ||
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/
H A Derr.D_COMM_COMM.DisjointCommit.d43 self->commit = 0;
80 commit(var1);
81 commit(var2);
82 self->commit++;
86 /self->commit/
93 /!self->commit/
H A Dtst.SpeculationCommit.d45 self->commit = 0;
59 commit(self->var);
60 self->commit++;
64 /(1 == self->commit)/
71 /(0 == self->commit)/
H A Dtst.CommitAfterDiscard.d44 self->commit = 0;
64 commit(var1);
65 self->commit++;
69 /self->commit/
77 /!self->commit/
H A Dtst.DiscardAftCommit.d43 self->commit = 0;
61 commit(var1);
62 self->commit++;
/freebsd/contrib/jemalloc/src/
H A Dpages.c114 os_pages_map(void *addr, size_t size, size_t alignment, bool *commit) { in os_pages_trim()
120 *commit = true; in os_pages_trim()
129 ret = VirtualAlloc(addr, size, MEM_RESERVE | (*commit ? MEM_COMMIT : 0),
149 int prot = *commit ? PAGES_PROT_COMMIT : PAGES_PROT_DECOMMIT; in os_pages_unmap()
172 bool *commit) { in pages_map_slow()
178 void *new_addr = os_pages_map(ret, size, PAGE, commit); in pages_map_slow()
227 pages_map_slow(size_t size, size_t alignment, bool *commit) { in pages_map()
236 void *pages = os_pages_map(NULL, alloc_size, alignment, commit); in pages_map()
242 ret = os_pages_trim(pages, alloc_size, leadsize, size, commit);
251 pages_map(void *addr, size_t size, size_t alignment, bool *commit) { in pages_commit_impl() argument
56 os_pages_map(void * addr,size_t size,size_t alignment,bool * commit) os_pages_map() argument
102 os_pages_trim(void * addr,size_t alloc_size,size_t leadsize,size_t size,bool * commit) os_pages_trim() argument
157 pages_map_slow(size_t size,size_t alignment,bool * commit) pages_map_slow() argument
181 pages_map(void * addr,size_t size,size_t alignment,bool * commit) pages_map() argument
[all...]
H A Dextent_mmap.c22 bool *commit) { in extent_alloc_mmap()
24 void *ret = pages_map(new_addr, size, alignment, commit); in extent_alloc_mmap()
29 if (*commit) { in extent_alloc_mmap()
23 extent_alloc_mmap(void * new_addr,size_t size,size_t alignment,bool * zero,bool * commit) extent_alloc_mmap() argument
/freebsd/contrib/libyaml/
H A DChanges267 - https://github.com/yaml/libyaml/commit/d1003a9
271 - https://github.com/yaml/libyaml/commit/662f4be
276 - https://github.com/yaml/libyaml/commit/303b455
279 - https://github.com/yaml/libyaml/commit/1ef1171
282 - https://github.com/yaml/libyaml/commit/c9479c7
285 - https://github.com/yaml/libyaml/commit/c201bf6
288 - https://github.com/yaml/libyaml/commit/bb8ab82
291 - https://github.com/yaml/libyaml/commit/2d94fc5
294 - https://github.com/yaml/libyaml/commit/df33f25
297 - https://github.com/yaml/libyaml/commit/f56726b
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DFixItRewriter.cpp155 edit::Commit commit(Editor); in HandleDiagnostic() local
162 commit.insertFromRange(Hint.RemoveRange.getBegin(), in HandleDiagnostic()
166 commit.remove(Hint.RemoveRange); in HandleDiagnostic()
170 commit.replace(Hint.RemoveRange, Hint.CodeToInsert); in HandleDiagnostic()
172 commit.insert(Hint.RemoveRange.getBegin(), Hint.CodeToInsert, in HandleDiagnostic()
176 bool CanRewrite = Info.getNumFixItHints() > 0 && commit.isCommitable(); in HandleDiagnostic()
190 if (!Editor.commit(commit)) { in HandleDiagnostic()
/freebsd/contrib/xz/src/liblzma/api/lzma/
H A Dversion.h86 #define LZMA_VERSION_STRING_C_(major, minor, patch, stability, commit) \ argument
87 #major "." #minor "." #patch stability commit
89 #define LZMA_VERSION_STRING_C(major, minor, patch, stability, commit) \ argument
90 LZMA_VERSION_STRING_C_(major, minor, patch, stability, commit)
/freebsd/contrib/kyua/store/
H A Dwrite_transaction_test.cpp84 tx.commit(); in do_put_result_ok_test()
117 tx.commit(); in ATF_TEST_CASE_BODY()
141 ATF_REQUIRE_THROW(store::error, tx.commit()); in ATF_TEST_CASE_BODY()
148 tx.commit(); in ATF_TEST_CASE_BODY()
192 tx.commit(); in ATF_TEST_CASE_BODY()
228 tx.commit(); in ATF_TEST_CASE_BODY()
248 tx.commit(); in ATF_TEST_CASE_BODY()
275 tx.commit(); in ATF_TEST_CASE_BODY()
305 tx.commit(); in ATF_TEST_CASE_BODY()
394 tx.commit(); in ATF_TEST_CASE_BODY()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFileBuilder.cpp248 cantFail(InjectedSourceTable.commit(Writer)); in commitSrcHeaderBlock()
273 Error PDBFileBuilder::commit(StringRef Filename, codeview::GUID *Guid) { in commit() function in PDBFileBuilder
280 Msf->commit(Filename, Layout); in commit()
292 if (auto EC = Strings.commit(NSWriter)) in commit()
310 if (auto EC = Info->commit(Layout, Buffer)) in commit()
315 if (auto EC = Dbi->commit(Layout, Buffer)) in commit()
320 if (auto EC = Tpi->commit(Layout, Buffer)) in commit()
325 if (auto EC = Ipi->commit(Layout, Buffer)) in commit()
330 if (auto EC = Gsi->commit(Layout, Buffer)) in commit()
370 return Buffer.commit(); in commit()
/freebsd/contrib/kyua/
H A DCONTRIBUTING.md61 every commit does one (and only one) thing. In particular, commits of the
71 branches. This is required if you need to go through the commit/test cycle
103 * Follow standard Git commit message guidelines. The first line has a maximum
105 the whole commit. Then a blank line comes, and then multiple plain-text
106 paragraphs provide details on the commit if necessary with a maximum length of
107 72-75 characters per line. Vim has syntax highlighting for Git commit
124 * If the fix to the issue can be done *in a single commit*, terminate the commit
126 include a note in `NEWS` about the issue in the same commit. Such fixes can
130 * If the fix to the issue requires *more than one commit*, do **not** include
131 `Fixes #N.` in any of the individual commit messages of the branch nor include
[all …]
/freebsd/contrib/llvm-project/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);
/freebsd/lib/libc/stdio/
H A Dvfscanf.c982 char *commit, *p; in parsefloat() local
1001 commit = buf - 1; in parsefloat()
1016 commit = p; in parsefloat()
1037 commit = p; /* inf or infinity */ in parsefloat()
1050 commit = p; in parsefloat()
1058 commit = p; in parsefloat()
1080 commit = p; in parsefloat()
1092 commit = p; in parsefloat()
1114 commit = p; in parsefloat()
1127 commit = p; in parsefloat()
[all …]
H A Dvfwscanf.c850 wchar_t *commit, *p; in parsefloat() local
874 commit = buf - 1; in parsefloat()
891 commit = p; in parsefloat()
912 commit = p; /* inf or infinity */ in parsefloat()
925 commit = p; in parsefloat()
933 commit = p; in parsefloat()
961 commit = p; in parsefloat()
971 commit = p; in parsefloat()
984 commit = p; in parsefloat()
998 while (commit < --p) in parsefloat()
[all …]
/freebsd/contrib/kyua/utils/sqlite/
H A Dtransaction.cpp86 commit(void) in commit() function
129 sqlite::transaction::commit(void) in commit() function in sqlite::transaction
131 _pimpl->commit(); in commit()

12345678910>>...14