/aosp_15_r20/external/angle/scripts/ |
H A D | angle_presubmit_utils_unittest.py | 36 def run_check_commit_message_formatting(self, commit_msg): argument 37 input_api = InputAPI_mock(commit_msg) 41 commit_msg = """a 48 errors = self.run_check_commit_message_formatting(commit_msg) 52 commit_msg = """Change-Id: I966c79d96175da9eee92ef6da20db50d488137b2""" 53 errors = self.run_check_commit_message_formatting(commit_msg) 62 commit_msg = """ 68 errors = self.run_check_commit_message_formatting(commit_msg) 72 commit_msg = """a 76 errors = self.run_check_commit_message_formatting(commit_msg) [all …]
|
H A D | roll_chromium_deps.py | 461 commit_msg = [] 464 commit_msg.extend([ 472 commit_msg.append('%s %s' % (adjective, noun)) 480 commit_msg.append('* %s: %s..%s' % (c.path, c.current_version, c.new_version)) 482 commit_msg.append('* %s: %s/+log/%s..%s' % 490 commit_msg.append('DEPS diff: %s\n' % change_url) 492 commit_msg.append('No dependencies changed.') 496 commit_msg.append('Clang version changed %s:%s' % 502 commit_msg.append('Details: %s\n' % change_url) 504 commit_msg.append('No update to Clang.\n') [all …]
|
/aosp_15_r20/external/webrtc/tools_webrtc/autoroller/ |
H A D | roll_deps.py | 474 commit_msg = [ 482 commit_msg.append('%s %s' % (adjective, noun)) 489 commit_msg.append('* %s: %s..%s' % 492 commit_msg.append('* %s: %s/+log/%s..%s' % 497 commit_msg.extend('* %s' % p for p in added_deps_paths) 501 commit_msg.extend('* %s' % p for p in removed_deps_paths) 505 commit_msg.append('DEPS diff: %s\n' % change_url) 507 commit_msg.append('No dependencies changed.') 510 commit_msg.append('Clang version changed %s:%s' % 514 commit_msg.append('Details: %s\n' % change_url) [all …]
|
/aosp_15_r20/external/libyuv/tools_libyuv/autoroller/ |
H A D | roll_deps.py | 511 commit_msg = [ 519 commit_msg.append('%s %s' % (adjective, noun)) 526 commit_msg.append('* %s: %s..%s' % 529 commit_msg.append('* %s_vesion: %s..%s' % 532 commit_msg.append('* %s: %s/+log/%s..%s' % 537 commit_msg.extend('* %s' % p for p in added_deps_paths) 541 commit_msg.extend('* %s' % p for p in removed_deps_paths) 545 commit_msg.append('DEPS diff: %s\n' % change_url) 547 commit_msg.append('No dependencies changed.') 550 commit_msg.append('Clang version changed %s:%s' % [all …]
|
/aosp_15_r20/packages/modules/Wifi/ |
D | wifi_upload_hook.py | 36 def is_commit_msg_valid(commit_msg, checkResource, checkXmlTag): argument 38 for line in commit_msg.splitlines(): 87 def is_commit_msg_has_translation_bug_id(commit_msg): argument 88 for line in commit_msg.splitlines(): 112 commit_msg = args.commit_msg 121 if not is_commit_msg_has_translation_bug_id(commit_msg): 130 if not is_commit_msg_valid(commit_msg, True, False): 146 if not is_commit_msg_valid(commit_msg, False, True):
|
/aosp_15_r20/external/webrtc/tools_webrtc/version_updater/ |
H A D | update_version.py | 110 commit_msg = ('Update WebRTC code version (%02d-%02d-%02dT%02d:%02d:%02d).' 112 commit_msg = commit_msg % (d.year, d.month, d.day, d.hour, d.minute, d.second) 114 subprocess.check_call(['git', 'commit', '-m', commit_msg])
|
/aosp_15_r20/external/openthread/tools/gerrit/ |
H A D | git-squash-merge.sh | 107 commit_msg="${commit_msg_header}${NEWLINE}${NEWLINE}${commit_list}" 109 commit_msg="${commit_msg_header}${NEWLINE}${NEWLINE}$2${NEWLINE}${NEWLINE}${commit_list}" 122 …git commit -m "$commit_msg" 1>/dev/null 2>/dev/null || die "git commit failed${NEWLINE}${NEWLINE}$…
|
/aosp_15_r20/packages/services/Telecomm/scripts/ |
D | aosp_tag_preupload.py | 41 commit_msg = subprocess.check_output(["git", "show", 43 for commit_line in commit_msg.splitlines():
|
/aosp_15_r20/packages/modules/common/tools/ |
D | check_allowed_deps.py | 34 commit_msg = subprocess.run(["git", "show", "--no-patch", "--format=%B", sha], variable 38 for line in commit_msg:
|
/aosp_15_r20/tools/repohooks/rh/ |
H A D | config_test.py | 97 if opts.commit_msg is not None: 98 check_commit_msg(opts.commit_msg)
|
/aosp_15_r20/external/skia/infra/bots/ |
H A D | git_utils.py | 51 def __init__(self, branch_name, commit_msg, upload=True, commit_queue=False, argument 54 self._commit_msg = commit_msg
|
/aosp_15_r20/external/rust/android-crates-io/crates/mls-rs/examples/ |
D | basic_server_usage.rs | 88 let commit_msg = MlsMessage::from_bytes(&commit)?; in upload_commit() localVariable 89 let res = group.process_incoming_message(commit_msg)?; in upload_commit()
|
/aosp_15_r20/external/toolchain-utils/llvm_tools/ |
H A D | clean_up_old_llvm_patches.py | 62 commit_msg = textwrap.dedent( 75 ["git", "commit", "--quiet", "-a", "-m", commit_msg],
|
/aosp_15_r20/external/toolchain-utils/llvm_tools/patch_sync/src/ |
H A D | version_control.rs | 177 commit_msg: &str, in repo_upload() 197 .and_then(|_| git_cd_cmd(git_path, ["commit", "-m", commit_msg])) in repo_upload()
|
/aosp_15_r20/external/webrtc/tools_webrtc/autoroller/unittests/ |
H A D | roll_deps_test.py | 278 commit_msg = GenerateCommitMessage(NO_CHROMIUM_REVISION_UPDATE, 282 return [l.strip() for l in commit_msg.split('\n')]
|
/aosp_15_r20/external/toolchain-utils/afdo_tools/ |
H A D | update_kernel_afdo.py | 681 commit_msg = "\n".join(commit_message_lines) 689 commit_msg,
|
/aosp_15_r20/external/autotest/client/common_lib/ |
H A D | revision_control_unittest.py | 19 commit_msg = None variable in GitRepoManager
|
/aosp_15_r20/external/pytorch/.github/scripts/ |
H A D | trymerge.py | 1084 commit_msg = pr.gen_commit_message( 1096 repo.amend_commit_message(commit_msg)
|
/aosp_15_r20/external/executorch/.github/scripts/ |
H A D | trymerge.py | 1074 commit_msg = pr.gen_commit_message( 1086 repo.amend_commit_message(commit_msg)
|
/aosp_15_r20/external/angle/doc/ |
H A D | ContributingCode.md | 129 6. Install the Gerrit `commit_msg` hook
|