HomeSort by relevance Sort by last modified time
    Searched refs:dry_run (Results 1 - 25 of 257) sorted by null

1 2 3 4 5 6 7 8 91011

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
spawn.py 17 def spawn(cmd, search_path=1, verbose=0, dry_run=0):
27 must be the exact path to the executable. If 'dry_run' is true,
34 _spawn_posix(cmd, search_path, dry_run=dry_run)
36 _spawn_nt(cmd, search_path, dry_run=dry_run)
38 _spawn_os2(cmd, search_path, dry_run=dry_run)
59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0):
66 if not dry_run:
    [all...]
dir_util.py 19 def mkpath(name, mode=0777, verbose=1, dry_run=0):
70 if not dry_run:
82 def create_tree(base_dir, files, mode=0777, verbose=1, dry_run=0):
90 'dry_run' flags are as for 'mkpath()'.
101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run)
104 preserve_symlinks=0, update=0, verbose=1, dry_run=0):
113 return value is unaffected by 'update' or 'dry_run': it is simply
126 if not dry_run and not os.path.isdir(src):
132 if dry_run:
    [all...]
archive_util.py 51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
81 mkpath(os.path.dirname(archive_name), dry_run=dry_run)
100 if not dry_run:
116 spawn(cmd, dry_run=dry_run)
121 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
136 mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
148 dry_run=dry_run)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
clean.py 55 remove_tree(self.build_temp, dry_run=self.dry_run)
66 remove_tree(directory, dry_run=self.dry_run)
73 if not self.dry_run:
  /external/python/cpython2/Lib/distutils/command/
clean.py 55 remove_tree(self.build_temp, dry_run=self.dry_run)
66 remove_tree(directory, dry_run=self.dry_run)
73 if not self.dry_run:
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
clean.py 55 remove_tree(self.build_temp, dry_run=self.dry_run)
66 remove_tree(directory, dry_run=self.dry_run)
73 if not self.dry_run:
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
clean.py 55 remove_tree(self.build_temp, dry_run=self.dry_run)
66 remove_tree(directory, dry_run=self.dry_run)
73 if not self.dry_run:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
clean.py 55 remove_tree(self.build_temp, dry_run=self.dry_run)
66 remove_tree(directory, dry_run=self.dry_run)
73 if not self.dry_run:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
clean.py 55 remove_tree(self.build_temp, dry_run=self.dry_run)
66 remove_tree(directory, dry_run=self.dry_run)
73 if not self.dry_run:
  /bionic/tools/bionicbb/
presubmit.py 67 def clean_project(dry_run):
75 if not dry_run:
88 def build_project(gerrit_info, dry_run, lunch_target=None):
125 if not dry_run:
139 def handle_change(gerrit_info, _, dry_run):
142 return build_project(gerrit_info, dry_run)
145 def drop_rejection(gerrit_info, dry_run):
152 if not dry_run:
162 def handle_comment(gerrit_info, body, dry_run):
164 drop_rejection(gerrit_info, dry_run)
    [all...]
tasks.py 37 def process_message(msg, dry_run):
58 return handlers[message_type](gerrit_info, body, dry_run)
72 dry_run = False
82 process_changes(gmail_service, msg_service, dry_run)
92 def process_changes(gmail_service, msg_service, dry_run):
105 if process_message(msg, dry_run) and not dry_run:
  /external/toolchain-utils/
auto_delete_nightly_test_data.py 21 def CleanNumberedDir(s, dry_run=False):
30 if misc.DeleteChromeOsTree(cd, dry_run=dry_run):
51 if dry_run:
62 def CleanDatedDir(dated_dir, dry_run=False):
70 if not CleanNumberedDir(s, dry_run):
82 '--dry_run',
83 dest='dry_run',
98 def CleanChromeOsTmpFiles(chroot_tmp, days_to_preserve, dry_run):
110 if dry_run
    [all...]
  /external/python/cpython2/Lib/distutils/
dir_util.py 19 def mkpath(name, mode=0777, verbose=1, dry_run=0):
70 if not dry_run:
82 def create_tree(base_dir, files, mode=0777, verbose=1, dry_run=0):
90 'dry_run' flags are as for 'mkpath()'.
101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run)
104 preserve_symlinks=0, update=0, verbose=1, dry_run=0):
113 return value is unaffected by 'update' or 'dry_run': it is simply
126 if not dry_run and not os.path.isdir(src):
132 if dry_run
    [all...]
archive_util.py 51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
81 mkpath(os.path.dirname(archive_name), dry_run=dry_run)
100 if not dry_run:
116 spawn(cmd, dry_run=dry_run)
121 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
136 mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
148 dry_run=dry_run
    [all...]
spawn.py 18 def spawn(cmd, search_path=1, verbose=0, dry_run=0):
28 must be the exact path to the executable. If 'dry_run' is true,
38 _spawn_posix(cmd, search_path, dry_run=dry_run)
40 _spawn_nt(cmd, search_path, dry_run=dry_run)
42 _spawn_os2(cmd, search_path, dry_run=dry_run)
63 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0):
70 if not dry_run
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
dir_util.py 19 def mkpath(name, mode=0777, verbose=1, dry_run=0):
70 if not dry_run:
82 def create_tree(base_dir, files, mode=0777, verbose=1, dry_run=0):
90 'dry_run' flags are as for 'mkpath()'.
101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run)
104 preserve_symlinks=0, update=0, verbose=1, dry_run=0):
113 return value is unaffected by 'update' or 'dry_run': it is simply
126 if not dry_run and not os.path.isdir(src):
132 if dry_run
    [all...]
archive_util.py 51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
81 mkpath(os.path.dirname(archive_name), dry_run=dry_run)
100 if not dry_run:
116 spawn(cmd, dry_run=dry_run)
121 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
136 mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
148 dry_run=dry_run
    [all...]
spawn.py 17 def spawn(cmd, search_path=1, verbose=0, dry_run=0):
27 must be the exact path to the executable. If 'dry_run' is true,
34 _spawn_posix(cmd, search_path, dry_run=dry_run)
36 _spawn_nt(cmd, search_path, dry_run=dry_run)
38 _spawn_os2(cmd, search_path, dry_run=dry_run)
59 def _spawn_nt(cmd, search_path=1, verbose=0, dry_run=0):
66 if not dry_run
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
dir_util.py 19 def mkpath(name, mode=0777, verbose=1, dry_run=0):
70 if not dry_run:
82 def create_tree(base_dir, files, mode=0777, verbose=1, dry_run=0):
90 'dry_run' flags are as for 'mkpath()'.
101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run)
104 preserve_symlinks=0, update=0, verbose=1, dry_run=0):
113 return value is unaffected by 'update' or 'dry_run': it is simply
126 if not dry_run and not os.path.isdir(src):
132 if dry_run
    [all...]
archive_util.py 51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
81 mkpath(os.path.dirname(archive_name), dry_run=dry_run)
100 if not dry_run:
116 spawn(cmd, dry_run=dry_run)
121 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
136 mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
148 dry_run=dry_run
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dir_util.py 19 def mkpath(name, mode=0777, verbose=1, dry_run=0):
70 if not dry_run:
82 def create_tree(base_dir, files, mode=0777, verbose=1, dry_run=0):
90 'dry_run' flags are as for 'mkpath()'.
101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run)
104 preserve_symlinks=0, update=0, verbose=1, dry_run=0):
113 return value is unaffected by 'update' or 'dry_run': it is simply
126 if not dry_run and not os.path.isdir(src):
132 if dry_run
    [all...]
archive_util.py 51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
81 mkpath(os.path.dirname(archive_name), dry_run=dry_run)
100 if not dry_run:
116 spawn(cmd, dry_run=dry_run)
121 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
136 mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
148 dry_run=dry_run
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dir_util.py 19 def mkpath(name, mode=0777, verbose=1, dry_run=0):
70 if not dry_run:
82 def create_tree(base_dir, files, mode=0777, verbose=1, dry_run=0):
90 'dry_run' flags are as for 'mkpath()'.
101 mkpath(dir, mode, verbose=verbose, dry_run=dry_run)
104 preserve_symlinks=0, update=0, verbose=1, dry_run=0):
113 return value is unaffected by 'update' or 'dry_run': it is simply
126 if not dry_run and not os.path.isdir(src):
132 if dry_run
    [all...]
archive_util.py 51 def make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0,
81 mkpath(os.path.dirname(archive_name), dry_run=dry_run)
100 if not dry_run:
116 spawn(cmd, dry_run=dry_run)
121 def make_zipfile(base_name, base_dir, verbose=0, dry_run=0):
136 mkpath(os.path.dirname(zip_filename), dry_run=dry_run)
148 dry_run=dry_run
    [all...]
  /external/jsoncpp/devtools/
licenseupdater.py 16 def update_license( path, dry_run, show_diff ):
20 dry_run: if True, just print the path of the file that would be updated,
35 if not dry_run:
46 def update_license_in_source_directories( source_dirs, dry_run, show_diff ):
51 dry_run: if True, just print the path of the file that would be updated,
63 update_license( source, dry_run, show_diff )
80 parser.add_option('-n', '--dry-run', dest="dry_run", action='store_true', default=False,
86 update_license_in_source_directories( args, options.dry_run, options.show_diff )

Completed in 262 milliseconds

1 2 3 4 5 6 7 8 91011