Home
last modified time | relevance | path

Searched refs:dest_path (Results 1 – 25 of 1367) sorted by relevance

12345678910>>...55

/dports/devel/nuitka/Nuitka-0.6.17/nuitka/plugins/standard/
H A DDataFileCollectorPlugin.py141 KnownDataFileDesc(filename_pattern="version.txt", dest_path=None),
148 filename_pattern="ec2/resources/amis.json", dest_path=None
154 filename_pattern="io/_plugins/fits_plugin.ini", dest_path=None
157 filename_pattern="io/_plugins/gdal_plugin.ini", dest_path=None
160 filename_pattern="io/_plugins/gtk_plugin.ini", dest_path=None
172 filename_pattern="io/_plugins/pil_plugin.ini", dest_path=None
175 filename_pattern="io/_plugins/qt_plugin.ini", dest_path=None
186 filename_pattern="orb_descriptor_positions.txt", dest_path=None
242 target_dir = know_data_file_desc.dest_path
264 dest_path=os.path.normpath(
[all …]
/dports/devel/emscripten/emscripten-2.0.3/tools/ports/
H A Dfreetype.py25 shared.try_delete(dest_path)
26 os.makedirs(dest_path)
27 shutil.rmtree(dest_path, ignore_errors=True)
28 shutil.copytree(source_path, dest_path)
91 '-I' + dest_path + '/include',
93 '-I' + dest_path + '/sfnt',
94 '-I' + dest_path + '/autofit',
95 '-I' + dest_path + '/smooth',
96 '-I' + dest_path + '/raster',
97 '-I' + dest_path + '/psaux',
[all …]
/dports/devel/nuitka/Nuitka-0.6.17/nuitka/freezer/
H A DIncludedDataFiles.py36 for dest_path in dest_paths:
37 assert not os.path.isabs(dest_path)
43 kind="empty_dirs", source_path=source_path, dest_path=dest_paths, reason=reason
47 def makeIncludedDataFile(source_path, dest_path, reason): argument
48 assert isRelativePath(dest_path), dest_path
51 kind="data_file", source_path=source_path, dest_path=dest_path, reason=reason
55 def makeIncludedDataDirectory(source_path, dest_path, reason): argument
56 assert isRelativePath(dest_path), dest_path
59 kind="data_dir", source_path=source_path, dest_path=dest_path, reason=reason
H A DIncludedEntryPoints.py44 dest_path, argument
50 return IncludedEntryPoint(kind, source_path, dest_path, package_name)
53 def makeExecutableEntryPoint(source_path, dest_path): argument
54 return makeIncludedEntryPoint("executable", source_path, dest_path, None)
60 def makeDllEntryPoint(source_path, dest_path, package_name): argument
61 assert type(dest_path) not in (tuple, list)
64 dest_path = os.path.join(getStandaloneDirectoryPath(), dest_path)
69 def makeDllEntryPointOld(source_path, dest_path, package_name): argument
73 def makeExtensionModuleEntryPoint(source_path, dest_path, package_name): argument
88 source_path=binary_filename, dest_path=binary_filename
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/common/py_utils/py_utils/
H A Dfile_util_unittest.py27 dest_path = os.path.join(self._tempdir, 'dest')
29 self.assertFalse(os.path.exists(dest_path))
31 self.assertTrue(os.path.exists(dest_path))
32 self.assertEqual('data', open(dest_path, 'r').read())
39 dest_path = os.path.join(self._tempdir, 'path', 'to', 'dest')
41 self.assertFalse(os.path.exists(dest_path))
43 self.assertTrue(os.path.exists(dest_path))
44 self.assertEqual('data', open(dest_path, 'r').read())
51 dest_path = os.path.join(self._tempdir, 'dest')
52 with open(dest_path, 'w') as f:
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/catapult/common/py_utils/py_utils/
H A Dfile_util_unittest.py27 dest_path = os.path.join(self._tempdir, 'dest')
29 self.assertFalse(os.path.exists(dest_path))
31 self.assertTrue(os.path.exists(dest_path))
32 self.assertEqual('data', open(dest_path, 'r').read())
39 dest_path = os.path.join(self._tempdir, 'path', 'to', 'dest')
41 self.assertFalse(os.path.exists(dest_path))
43 self.assertTrue(os.path.exists(dest_path))
44 self.assertEqual('data', open(dest_path, 'r').read())
51 dest_path = os.path.join(self._tempdir, 'dest')
52 with open(dest_path, 'w') as f:
[all …]
/dports/devel/R-cran-pkgbuild/pkgbuild/R/
H A Dbuild.R67 file.path(options$out_dir, out_file), options$dest_path,
71 if (is_dir(options$dest_path)) {
72 file.path(options$dest_path, out_file)
74 options$dest_path
96 if (is.null(dest_path)) {
97 dest_path <- dirname(path)
105 build_setup_binary(path, dest_path, args, needs_compilation)
107 build_setup_source(path, dest_path, vignettes, manual, clean_doc, args,
112 build_setup_binary <- function(path, dest_path, args, needs_compilation) { argument
127 dest_path = dest_path nameattr
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/credential_provider/setup/
H A Dsetup_lib.cc44 base::FilePath dest_path = GetInstallDirectory(); in CreateInstallDirectory() local
46 if (dest_path.empty()) { in CreateInstallDirectory()
47 return dest_path; in CreateInstallDirectory()
50 if (!base::CreateDirectory(dest_path)) { in CreateInstallDirectory()
56 return dest_path; in CreateInstallDirectory()
64 const base::FilePath& dest_path, in InstallFiles() argument
168 LOGFN(VERBOSE) << "Install to: " << dest_path; in DoInstall()
172 if (!RemoveFromMovesPendingReboot(dest_path)) { in DoInstall()
249 if (!base::DeletePathRecursively(dest_path)) { in DoUninstall()
251 ScheduleDirectoryForDeletion(dest_path); in DoUninstall()
[all …]
/dports/devel/etl/synfig-1.2.2/ETL/test/
H A Dstringf.cpp105 string dest_path=unix_to_local_path("/usr/share"); in relative_path_test() local
107 cout<<"curr_path="<<curr_path<<" dest_path="<<dest_path<<endl; in relative_path_test()
108 cout<<"relative_path="<<relative_path(curr_path,dest_path)<<endl; in relative_path_test()
109 if(relative_path(curr_path,dest_path)!=unix_to_local_path("../../share")) in relative_path_test()
115 dest_path=unix_to_local_path("/home/darco/projects/voria/myfile.txt"); in relative_path_test()
116 cout<<"curr_path="<<curr_path<<" dest_path="<<dest_path<<endl; in relative_path_test()
117 cout<<"relative_path="<<relative_path(curr_path,dest_path)<<endl; in relative_path_test()
118 if(relative_path(curr_path,dest_path)!=unix_to_local_path("myfile.txt")) in relative_path_test()
124 dest_path=unix_to_local_path("/home/darco/projects/voria/files/myfile.txt"); in relative_path_test()
125 cout<<"curr_path="<<curr_path<<" dest_path="<<dest_path<<endl; in relative_path_test()
[all …]
/dports/graphics/synfig/synfig-1.2.2/ETL/test/
H A Dstringf.cpp105 string dest_path=unix_to_local_path("/usr/share"); in relative_path_test() local
107 cout<<"curr_path="<<curr_path<<" dest_path="<<dest_path<<endl; in relative_path_test()
108 cout<<"relative_path="<<relative_path(curr_path,dest_path)<<endl; in relative_path_test()
109 if(relative_path(curr_path,dest_path)!=unix_to_local_path("../../share")) in relative_path_test()
115 dest_path=unix_to_local_path("/home/darco/projects/voria/myfile.txt"); in relative_path_test()
116 cout<<"curr_path="<<curr_path<<" dest_path="<<dest_path<<endl; in relative_path_test()
117 cout<<"relative_path="<<relative_path(curr_path,dest_path)<<endl; in relative_path_test()
118 if(relative_path(curr_path,dest_path)!=unix_to_local_path("myfile.txt")) in relative_path_test()
124 dest_path=unix_to_local_path("/home/darco/projects/voria/files/myfile.txt"); in relative_path_test()
125 cout<<"curr_path="<<curr_path<<" dest_path="<<dest_path<<endl; in relative_path_test()
[all …]
/dports/graphics/synfigstudio/synfig-1.2.2/ETL/test/
H A Dstringf.cpp105 string dest_path=unix_to_local_path("/usr/share"); in relative_path_test() local
107 cout<<"curr_path="<<curr_path<<" dest_path="<<dest_path<<endl; in relative_path_test()
108 cout<<"relative_path="<<relative_path(curr_path,dest_path)<<endl; in relative_path_test()
109 if(relative_path(curr_path,dest_path)!=unix_to_local_path("../../share")) in relative_path_test()
115 dest_path=unix_to_local_path("/home/darco/projects/voria/myfile.txt"); in relative_path_test()
116 cout<<"curr_path="<<curr_path<<" dest_path="<<dest_path<<endl; in relative_path_test()
117 cout<<"relative_path="<<relative_path(curr_path,dest_path)<<endl; in relative_path_test()
118 if(relative_path(curr_path,dest_path)!=unix_to_local_path("myfile.txt")) in relative_path_test()
124 dest_path=unix_to_local_path("/home/darco/projects/voria/files/myfile.txt"); in relative_path_test()
125 cout<<"curr_path="<<curr_path<<" dest_path="<<dest_path<<endl; in relative_path_test()
[all …]
/dports/databases/mariadb104-server/mariadb-10.4.24/storage/mroonga/tools/
H A Dprepare-sphinx-html.rb141 dest_path = language_dest_dir + relative_path
143 dest_path.mkpath
153 dest_path.open("wb") do |dest|
156 FileUtils.touch(dest_path, :mtime => source_path.mtime)
162 FileUtils.cp(source_path, dest_path, :preserve => true)
169 dest_dir.find do |dest_path|
170 if dest_path.directory? and /\A_/ =~ dest_path.basename.to_s
171 normalized_dest_path = dest_path + ".."
172 normalized_dest_path += dest_path.basename.to_s.gsub(/\A_/, '')
173 FileUtils.mv(dest_path, normalized_dest_path)
/dports/databases/mariadb104-client/mariadb-10.4.24/storage/mroonga/tools/
H A Dprepare-sphinx-html.rb141 dest_path = language_dest_dir + relative_path
143 dest_path.mkpath
153 dest_path.open("wb") do |dest|
156 FileUtils.touch(dest_path, :mtime => source_path.mtime)
162 FileUtils.cp(source_path, dest_path, :preserve => true)
169 dest_dir.find do |dest_path|
170 if dest_path.directory? and /\A_/ =~ dest_path.basename.to_s
171 normalized_dest_path = dest_path + ".."
172 normalized_dest_path += dest_path.basename.to_s.gsub(/\A_/, '')
173 FileUtils.mv(dest_path, normalized_dest_path)
/dports/databases/mariadb103-client/mariadb-10.3.34/storage/mroonga/tools/
H A Dprepare-sphinx-html.rb141 dest_path = language_dest_dir + relative_path
143 dest_path.mkpath
153 dest_path.open("wb") do |dest|
156 FileUtils.touch(dest_path, :mtime => source_path.mtime)
162 FileUtils.cp(source_path, dest_path, :preserve => true)
169 dest_dir.find do |dest_path|
170 if dest_path.directory? and /\A_/ =~ dest_path.basename.to_s
171 normalized_dest_path = dest_path + ".."
172 normalized_dest_path += dest_path.basename.to_s.gsub(/\A_/, '')
173 FileUtils.mv(dest_path, normalized_dest_path)
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/mroonga/tools/
H A Dprepare-sphinx-html.rb141 dest_path = language_dest_dir + relative_path
143 dest_path.mkpath
153 dest_path.open("wb") do |dest|
156 FileUtils.touch(dest_path, :mtime => source_path.mtime)
162 FileUtils.cp(source_path, dest_path, :preserve => true)
169 dest_dir.find do |dest_path|
170 if dest_path.directory? and /\A_/ =~ dest_path.basename.to_s
171 normalized_dest_path = dest_path + ".."
172 normalized_dest_path += dest_path.basename.to_s.gsub(/\A_/, '')
173 FileUtils.mv(dest_path, normalized_dest_path)
/dports/databases/mariadb103-server/mariadb-10.3.34/storage/mroonga/tools/
H A Dprepare-sphinx-html.rb141 dest_path = language_dest_dir + relative_path
143 dest_path.mkpath
153 dest_path.open("wb") do |dest|
156 FileUtils.touch(dest_path, :mtime => source_path.mtime)
162 FileUtils.cp(source_path, dest_path, :preserve => true)
169 dest_dir.find do |dest_path|
170 if dest_path.directory? and /\A_/ =~ dest_path.basename.to_s
171 normalized_dest_path = dest_path + ".."
172 normalized_dest_path += dest_path.basename.to_s.gsub(/\A_/, '')
173 FileUtils.mv(dest_path, normalized_dest_path)
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/mroonga/tools/
H A Dprepare-sphinx-html.rb141 dest_path = language_dest_dir + relative_path
143 dest_path.mkpath
153 dest_path.open("wb") do |dest|
156 FileUtils.touch(dest_path, :mtime => source_path.mtime)
162 FileUtils.cp(source_path, dest_path, :preserve => true)
169 dest_dir.find do |dest_path|
170 if dest_path.directory? and /\A_/ =~ dest_path.basename.to_s
171 normalized_dest_path = dest_path + ".."
172 normalized_dest_path += dest_path.basename.to_s.gsub(/\A_/, '')
173 FileUtils.mv(dest_path, normalized_dest_path)
/dports/devel/etl/synfig-1.2.2/ETL/ETL/
H A D_stringf.h441 if(!is_absolute_path(dest_path)) in relative_path()
442 dest_path=absolute_path(dest_path); in relative_path()
444 dest_path=cleanup_path(dest_path); in relative_path()
454 if(dest_path.size()>=3 && dest_path[1]==':' && dest_path[0]!=curr_path[0]) in relative_path()
455 return dest_path; in relative_path()
459 return basename(dest_path); in relative_path()
463 dest_path=remove_root_from_path(dest_path); in relative_path()
469 dest_path=std::string("..")+ETL_DIRECTORY_SEPARATOR+dest_path; in relative_path()
473 return dest_path; in relative_path()
483 if(is_absolute_path(dest_path)) in solve_relative_path()
[all …]
/dports/graphics/synfig/synfig-1.2.2/ETL/ETL/
H A D_stringf.h441 if(!is_absolute_path(dest_path)) in relative_path()
442 dest_path=absolute_path(dest_path); in relative_path()
444 dest_path=cleanup_path(dest_path); in relative_path()
454 if(dest_path.size()>=3 && dest_path[1]==':' && dest_path[0]!=curr_path[0]) in relative_path()
455 return dest_path; in relative_path()
459 return basename(dest_path); in relative_path()
463 dest_path=remove_root_from_path(dest_path); in relative_path()
469 dest_path=std::string("..")+ETL_DIRECTORY_SEPARATOR+dest_path; in relative_path()
473 return dest_path; in relative_path()
483 if(is_absolute_path(dest_path)) in solve_relative_path()
[all …]
/dports/graphics/synfigstudio/synfig-1.2.2/ETL/ETL/
H A D_stringf.h441 if(!is_absolute_path(dest_path)) in relative_path()
442 dest_path=absolute_path(dest_path); in relative_path()
444 dest_path=cleanup_path(dest_path); in relative_path()
454 if(dest_path.size()>=3 && dest_path[1]==':' && dest_path[0]!=curr_path[0]) in relative_path()
455 return dest_path; in relative_path()
459 return basename(dest_path); in relative_path()
463 dest_path=remove_root_from_path(dest_path); in relative_path()
469 dest_path=std::string("..")+ETL_DIRECTORY_SEPARATOR+dest_path; in relative_path()
473 return dest_path; in relative_path()
483 if(is_absolute_path(dest_path)) in solve_relative_path()
[all …]
/dports/databases/mariadb104-server/mariadb-10.4.24/storage/mroonga/vendor/groonga/tools/
H A Dprepare-sphinx-html.rb148 dest_path = language_dest_dir + relative_path
150 dest_path.mkpath
161 dest_path.open("wb") do |dest|
164 FileUtils.touch(dest_path, :mtime => source_path.mtime)
170 FileUtils.cp(source_path, dest_path, :preserve => true)
177 dest_dir.find do |dest_path|
178 if dest_path.directory? and /\A_/ =~ dest_path.basename.to_s
179 normalized_dest_path = dest_path + ".."
180 normalized_dest_path += dest_path.basename.to_s.gsub(/\A_/, '')
181 FileUtils.mv(dest_path, normalized_dest_path)
/dports/databases/mariadb104-client/mariadb-10.4.24/storage/mroonga/vendor/groonga/tools/
H A Dprepare-sphinx-html.rb148 dest_path = language_dest_dir + relative_path
150 dest_path.mkpath
161 dest_path.open("wb") do |dest|
164 FileUtils.touch(dest_path, :mtime => source_path.mtime)
170 FileUtils.cp(source_path, dest_path, :preserve => true)
177 dest_dir.find do |dest_path|
178 if dest_path.directory? and /\A_/ =~ dest_path.basename.to_s
179 normalized_dest_path = dest_path + ".."
180 normalized_dest_path += dest_path.basename.to_s.gsub(/\A_/, '')
181 FileUtils.mv(dest_path, normalized_dest_path)
/dports/databases/mariadb103-client/mariadb-10.3.34/storage/mroonga/vendor/groonga/tools/
H A Dprepare-sphinx-html.rb148 dest_path = language_dest_dir + relative_path
150 dest_path.mkpath
161 dest_path.open("wb") do |dest|
164 FileUtils.touch(dest_path, :mtime => source_path.mtime)
170 FileUtils.cp(source_path, dest_path, :preserve => true)
177 dest_dir.find do |dest_path|
178 if dest_path.directory? and /\A_/ =~ dest_path.basename.to_s
179 normalized_dest_path = dest_path + ".."
180 normalized_dest_path += dest_path.basename.to_s.gsub(/\A_/, '')
181 FileUtils.mv(dest_path, normalized_dest_path)
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/mroonga/vendor/groonga/tools/
H A Dprepare-sphinx-html.rb148 dest_path = language_dest_dir + relative_path
150 dest_path.mkpath
161 dest_path.open("wb") do |dest|
164 FileUtils.touch(dest_path, :mtime => source_path.mtime)
170 FileUtils.cp(source_path, dest_path, :preserve => true)
177 dest_dir.find do |dest_path|
178 if dest_path.directory? and /\A_/ =~ dest_path.basename.to_s
179 normalized_dest_path = dest_path + ".."
180 normalized_dest_path += dest_path.basename.to_s.gsub(/\A_/, '')
181 FileUtils.mv(dest_path, normalized_dest_path)
/dports/databases/mariadb103-server/mariadb-10.3.34/storage/mroonga/vendor/groonga/tools/
H A Dprepare-sphinx-html.rb148 dest_path = language_dest_dir + relative_path
150 dest_path.mkpath
161 dest_path.open("wb") do |dest|
164 FileUtils.touch(dest_path, :mtime => source_path.mtime)
170 FileUtils.cp(source_path, dest_path, :preserve => true)
177 dest_dir.find do |dest_path|
178 if dest_path.directory? and /\A_/ =~ dest_path.basename.to_s
179 normalized_dest_path = dest_path + ".."
180 normalized_dest_path += dest_path.basename.to_s.gsub(/\A_/, '')
181 FileUtils.mv(dest_path, normalized_dest_path)

12345678910>>...55