/third_party/python/Lib/distutils/ |
H A D | dir_util.py | 17 def mkpath(name, mode=0o777, verbose=1, dry_run=0): 68 if not dry_run: 80 def create_tree(base_dir, files, mode=0o777, verbose=1, dry_run=0): 88 'dry_run' flags are as for 'mkpath()'. 97 mkpath(dir, mode, verbose=verbose, dry_run=dry_run) 100 preserve_symlinks=0, update=0, verbose=1, dry_run=0): 109 return value is unaffected by 'update' or 'dry_run': it is simply 122 if not dry_run and not os.path.isdir(src): 128 if dry_run [all...] |
H A D | archive_util.py | 55 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, 87 mkpath(os.path.dirname(archive_name), dry_run=dry_run) 106 if not dry_run: 122 spawn(cmd, dry_run=dry_run) 127 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0): 137 mkpath(os.path.dirname(zip_filename), dry_run=dry_run) 149 dry_run [all...] |
H A D | cmd.py | 94 # XXX A more explicit way to customize dry_run would be better. 96 if attr == 'dry_run': 335 util.execute(func, args, msg, dry_run=self.dry_run) 338 dir_util.mkpath(name, mode, dry_run=self.dry_run) 347 dry_run=self.dry_run) 356 not self.force, dry_run=self.dry_run) [all...] |
H A D | ccompiler.py | 85 def __init__(self, verbose=0, dry_run=0, force=0): 86 self.dry_run = dry_run 468 if self.dry_run: 907 execute(func, args, msg, self.dry_run) 910 spawn(cmd, dry_run=self.dry_run) 913 return move_file(src, dst, dry_run=self.dry_run) 916 mkpath(name, mode, dry_run [all...] |
H A D | util.py | 289 def execute (func, args, msg=None, verbose=0, dry_run=0): 292 are disabled by the 'dry_run' flag. This method takes care of all 304 if not dry_run: 327 verbose=1, dry_run=0, 346 If 'dry_run' is true, doesn't actually do anything that would 389 if not dry_run: 419 verbose=%r, dry_run=0, 428 spawn(cmd, dry_run=dry_run) 430 dry_run variable [all...] |
H A D | file_util.py | 68 link=None, verbose=1, dry_run=0): 91 have been copied, if 'dry_run' true). 129 if dry_run: 168 dry_run=0): 183 if dry_run:
|
H A D | cygwinccompiler.py | 98 def __init__(self, verbose=0, dry_run=0, force=0): 100 UnixCCompiler.__init__(self, verbose, dry_run, force) 278 def __init__(self, verbose=0, dry_run=0, force=0): 280 CygwinCCompiler.__init__ (self, verbose, dry_run, force)
|
H A D | spawn.py | 23 def spawn(cmd, search_path=1, verbose=0, dry_run=0): 33 must be the exact path to the executable. If 'dry_run' is true, 44 if dry_run:
|
/third_party/python/Lib/distutils/command/ |
H A D | clean.py | 53 remove_tree(self.build_temp, dry_run=self.dry_run) 64 remove_tree(directory, dry_run=self.dry_run) 71 if not self.dry_run:
|
H A D | build_scripts.py | 78 if not self.dry_run: 98 if not self.dry_run: 142 if self.dry_run: 158 if not self.dry_run:
|
H A D | install_egg_info.py | 35 dir_util.remove_tree(target, dry_run=self.dry_run) 42 if not self.dry_run:
|
H A D | install_lib.py | 134 dry_run=self.dry_run) 138 verbose=self.verbose, dry_run=self.dry_run)
|
H A D | build_clib.py | 101 dry_run=self.dry_run,
|
H A D | bdist_dumb.py | 123 remove_tree(self.bdist_dir, dry_run=self.dry_run)
|
H A D | sdist.py | 431 dir_util.create_tree(base_dir, files, dry_run=self.dry_run) 488 dir_util.remove_tree(base_dir, dry_run=self.dry_run)
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | roll_chromium_deps.py | 565 def _EnsureUpdatedMainBranch(dry_run): 569 if not dry_run: 576 def _CreateRollBranch(dry_run): 578 if not dry_run: 582 def _RemovePreviousRollBranch(dry_run): 588 if not dry_run: 593 def _LocalCommit(commit_msg, dry_run): 595 if not dry_run: 600 def _LocalCommitAmend(commit_msg, dry_run): 602 if not dry_run [all...] |
/third_party/node/deps/v8/tools/release/ |
H A D | create_release.py | 84 if self._options.dry_run: 99 if self._options.dry_run: 149 if self._options.dry_run: 160 if self._options.dry_run: 172 if self._options.dry_run:
|
/third_party/python/Lib/test/ |
H A D | test_bdb.py | 70 # When 'dry_run' is set to true, expect tuples are ignored and the actual 74 dry_run = 0 variable 167 def __init__(self, expect_set, skip=None, dry_run=False, test_case=None): 170 self.dry_run = dry_run 212 if self.dry_run and self.breakpoint_hits: 267 if self.dry_run: 402 if self.dry_run: 418 self.dry_run = test_case.dry_run 578 dry_run = dry_run global() variable in BaseTestCase [all...] |
H A D | test_marshal.py | 389 @support.bigmemtest(size=LARGE_SIZE, memuse=2, dry_run=False) 393 @support.bigmemtest(size=LARGE_SIZE, memuse=2, dry_run=False) 397 @support.bigmemtest(size=LARGE_SIZE, memuse=pointer_size + 1, dry_run=False) 401 @support.bigmemtest(size=LARGE_SIZE, memuse=pointer_size + 1, dry_run=False) 407 dry_run=False) 413 dry_run=False) 417 @support.bigmemtest(size=LARGE_SIZE, memuse=2, dry_run=False)
|
/third_party/rust/crates/once_cell/xtask/src/ |
H A D | main.rs | 74 let dry_run = sh.var("CI").is_err() || has_tag || current_branch != "master"; in main() 75 eprintln!("Publishing{}!", if dry_run { " (dry run)" } else { "" }); in main() 77 let dry_run_arg = if dry_run { Some("--dry-run") } else { None }; in main() 79 if dry_run { in main()
|
/third_party/eudev/src/udev/ |
H A D | udevadm-trigger.c | 39 static int dry_run; variable 50 if (dry_run) in exec_list() 142 dry_run = 1; in adm_trigger()
|
/third_party/vixl/tools/ |
H A D | test.py | 370 if not args.nolint and not args.dry_run: 373 if not args.noclang_format and not args.dry_run: 376 if not args.noclang_tidy and not args.dry_run: 415 if (args.dry_run): 448 if not args.dry_run:
|
/third_party/skia/tools/ |
H A D | rewrite_includes.py | 93 output = StringIO() if args.dry_run else open(file_path, 'w') 110 if args.dry_run and output.getvalue() != open(file_path).read():
|
/third_party/ninja/src/ |
H A D | build.h | 160 BuildConfig() : verbosity(NORMAL), dry_run(false), parallelism(1),
in BuildConfig() 170 bool dry_run;
member
|
/third_party/python/Lib/ |
H A D | shutil.py | 899 def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, 936 if not dry_run: 955 if not dry_run: 969 def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, 984 if not dry_run: 991 if not dry_run: 1084 dry_run=0, owner=None, group=None, logger=None): 1107 kwargs = {'dry_run': dry_run, 'logger': logger, 1129 if not dry_run [all...] |