Home
last modified time | relevance | path

Searched refs:absolute_path (Results 26 – 50 of 1885) sorted by relevance

12345678910>>...76

/dports/sysutils/conan/conan-1.44.0/conans/server/store/
H A Ddisk_adapter.py59 def _get_paths(self, absolute_path, files_subset): argument
60 if not path_exists(absolute_path, self._store_folder):
62 paths = relative_dirs(absolute_path)
65 abs_paths = [os.path.join(absolute_path, relpath) for relpath in paths]
68 def get_snapshot(self, absolute_path="", files_subset=None): argument
70 abs_paths = self._get_paths(absolute_path, files_subset)
73 def get_file_list(self, absolute_path="", files_subset=None): argument
74 abs_paths = self._get_paths(absolute_path, files_subset)
/dports/www/ilias/ILIAS-5.4.25/Modules/File/classes/Sanitation/
H A DFilePathSanitizer.php35 private $absolute_path; variable in ILIAS\\File\\Sanitation\\FilePathSanitizer
51 …$this->absolute_path = $this->file_object->getDirectory($this->version) . "/" . $this->file_object…
52 $this->relative_path = LegacyPathHelper::createRelativePath($this->absolute_path);
53 $this->fs = LegacyPathHelper::deriveFilesystemFrom($this->absolute_path);
65 $native_absolute_path_exists = file_exists($this->absolute_path);
66 …ve_valid_absolute_path_existing = file_exists(ilFileUtils::getValidFilename($this->absolute_path));
140 $scandir = scandir(dirname($this->absolute_path));
153 … throw new Exception("no File found in " . dirname($this->absolute_path));
159 … foreach (new DirectoryIterator(dirname($this->absolute_path)) as $item) {
/dports/devel/arcanist-lib/arcanist-b2e715f/src/unit/engine/
H A DPytestTestEngine.php88 $absolute_path = Filesystem::resolvePath($relative_path);
89 if (is_dir($absolute_path)) {
91 $absolute_path .= '/__init__.py';
97 if (is_file($absolute_path.'.py')) {
99 $absolute_path .= '.py';
102 if (!file_exists($absolute_path)) {
111 $line_count = count(file($absolute_path));
/dports/devel/arcanist/arcanist-b2e715f/src/unit/engine/
H A DPytestTestEngine.php88 $absolute_path = Filesystem::resolvePath($relative_path);
89 if (is_dir($absolute_path)) {
91 $absolute_path .= '/__init__.py';
97 if (is_file($absolute_path.'.py')) {
99 $absolute_path .= '.py';
102 if (!file_exists($absolute_path)) {
111 $line_count = count(file($absolute_path));
/dports/devel/py-pathtools/pathtools-0.1.2/pathtools/
H A Dpath.py121 yield absolute_path(os.path.join(root, dirname))
123 yield absolute_path(os.path.join(root, filename))
147 yield absolute_path(os.path.join(root, dirname))
171 yield absolute_path(os.path.join(root, filename))
174 def absolute_path(path): function
195 return os.path.realpath(absolute_path(path))
207 return absolute_path(os.path.dirname(path))
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/common/py_vulcanize/py_vulcanize/
H A Dstyle_sheet.py21 def absolute_path(self): member in Image
22 return self.resource.absolute_path
43 dependent_filenames.append(i.resource.absolute_path)
56 ext = os.path.splitext(image.absolute_path)[1]
67 dependent_filenames.append(i.resource.absolute_path)
104 return self.resource.absolute_path
121 dependent_filenames.append(self.resource.absolute_path)
136 module_dirname = os.path.dirname(self.resource.absolute_path)
H A Dhtml_module_unittest.py25 def __init__(self, toplevel_dir, absolute_path, fake_contents): argument
31 super(ResourceWithFakeContents, self).__init__(toplevel_dir, absolute_path)
50 def FindResourceGivenAbsolutePath(self, absolute_path): argument
53 if absolute_path.startswith(source_path):
63 longest_candidate, absolute_path,
64 self._file_contents.get(absolute_path, None))
67 absolute_path = None
69 absolute_path = os.path.join(script_path, relative_path)
70 if absolute_path in self._file_contents:
71 return ResourceWithFakeContents(script_path, absolute_path,
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/catapult/common/py_vulcanize/py_vulcanize/
H A Dstyle_sheet.py21 def absolute_path(self): member in Image
22 return self.resource.absolute_path
43 dependent_filenames.append(i.resource.absolute_path)
56 ext = os.path.splitext(image.absolute_path)[1]
67 dependent_filenames.append(i.resource.absolute_path)
104 return self.resource.absolute_path
121 dependent_filenames.append(self.resource.absolute_path)
136 module_dirname = os.path.dirname(self.resource.absolute_path)
H A Dhtml_module_unittest.py25 def __init__(self, toplevel_dir, absolute_path, fake_contents): argument
31 super(ResourceWithFakeContents, self).__init__(toplevel_dir, absolute_path)
50 def FindResourceGivenAbsolutePath(self, absolute_path): argument
53 if absolute_path.startswith(source_path):
63 longest_candidate, absolute_path,
64 self._file_contents.get(absolute_path, None))
67 absolute_path = None
69 absolute_path = os.path.join(script_path, relative_path)
70 if absolute_path in self._file_contents:
71 return ResourceWithFakeContents(script_path, absolute_path,
[all …]
/dports/devel/py-pyface/pyface-7.2.0/pyface/ui/null/
H A Dimage_resource.py35 absolute_path = Property(Str) variable in ImageResource
61 absolute_path = os.path.abspath(self._ref.filename)
64 absolute_path = self._get_image_not_found().absolute_path
66 return absolute_path
/dports/devel/py-pyface/pyface-7.2.0/pyface/tests/
H A Dtest_image_resource.py45 self.assertEqual(image_resource.absolute_path, IMAGE_PATH)
51 self.assertEqual(image_resource.absolute_path, IMAGE_PATH)
61 image_resource.absolute_path,
73 image_resource.absolute_path,
87 self.assertEqual(image_resource.absolute_path, IMAGE_PATH)
93 self.assertEqual(image_resource.absolute_path, IMAGE_PATH)
110 image_resource.absolute_path,
/dports/devel/py-pyface/pyface-7.2.0/pyface/ui/qt4/
H A Dimage_resource.py41 absolute_path = Property(Str) variable in ImageResource
90 absolute_path = os.path.abspath(self._ref.filename)
93 absolute_path = self._get_image_not_found().absolute_path
95 return absolute_path
/dports/www/chromium-legacy/chromium-88.0.4324.182/build/config/ios/
H A Dcompile_xcassets.py105 absolute_path = line.split(':')[0]
106 relative_path = relative_paths.get(absolute_path, absolute_path)
107 if absolute_path != relative_path:
108 line = relative_path + line[len(absolute_path):]
186 absolute_path = os.path.abspath(relative_path)
187 relative_paths[absolute_path] = relative_path
188 command.append(absolute_path)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/build/config/ios/
H A Dcompile_xcassets.py103 absolute_path = line.split(':')[0]
104 relative_path = relative_paths.get(absolute_path, absolute_path)
105 if absolute_path != relative_path:
106 line = relative_path + line[len(absolute_path):]
184 absolute_path = os.path.abspath(relative_path)
185 relative_paths[absolute_path] = relative_path
186 command.append(absolute_path)
/dports/lang/v8/v8-9.6.180.12/build/toolchain/ios/
H A Dcompile_xcassets.py42 absolute_path = line.split(':')[0]
43 relative_path = relative_paths.get(absolute_path, absolute_path)
44 if absolute_path == relative_path:
46 return relative_path + line[len(absolute_path):]
173 absolute_path = os.path.abspath(relative_path)
174 relative_paths[absolute_path] = relative_path
175 command.append(absolute_path)
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/build/config/ios/
H A Dcompile_xcassets.py105 absolute_path = line.split(':')[0]
106 relative_path = relative_paths.get(absolute_path, absolute_path)
107 if absolute_path != relative_path:
108 line = relative_path + line[len(absolute_path):]
186 absolute_path = os.path.abspath(relative_path)
187 relative_paths[absolute_path] = relative_path
188 command.append(absolute_path)
/dports/devel/kyua/kyua-0.13/store/
H A Dtestdata_v1.sql67 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
82 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
108 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
124 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
140 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
169 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
238 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
279 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
304 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
H A Dtestdata_v2.sql79 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
105 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
142 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
169 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
196 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
236 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
318 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
381 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
417 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
/dports/audio/libgpod/libgpod-0.8.3/tests/
H A Dtest-rebuild-db.cc153 char *absolute_path; in foreach_file() local
155 absolute_path = g_build_filename (basedir, name, NULL); in foreach_file()
157 if (g_file_test (absolute_path, G_FILE_TEST_IS_DIR)) { in foreach_file()
159 foreach_file (absolute_path, func, data, &tmp_error); in foreach_file()
162 g_free (absolute_path); in foreach_file()
166 } else if (g_file_test (absolute_path, G_FILE_TEST_IS_REGULAR)){ in foreach_file()
167 func (absolute_path, data); in foreach_file()
169 g_free (absolute_path); in foreach_file()
/dports/audio/libgpod-sharp/libgpod-0.8.3/tests/
H A Dtest-rebuild-db.cc153 char *absolute_path; in foreach_file() local
155 absolute_path = g_build_filename (basedir, name, NULL); in foreach_file()
157 if (g_file_test (absolute_path, G_FILE_TEST_IS_DIR)) { in foreach_file()
159 foreach_file (absolute_path, func, data, &tmp_error); in foreach_file()
162 g_free (absolute_path); in foreach_file()
166 } else if (g_file_test (absolute_path, G_FILE_TEST_IS_REGULAR)){ in foreach_file()
167 func (absolute_path, data); in foreach_file()
169 g_free (absolute_path); in foreach_file()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/content/browser/loader/
H A Dfile_url_loader_factory_browsertest.cc62 base::FilePath absolute_path; member
79 const base::FilePath& absolute_path, in IsFileAccessAllowed() argument
82 FileAccessAllowedArgs{path, absolute_path, profile_path}); in IsFileAccessAllowed()
83 return blocked_path_ != absolute_path; in IsFileAccessAllowed()
140 test_browser_client.access_allowed_args()[0].absolute_path); in IN_PROC_BROWSER_TEST_F()
162 test_browser_client.access_allowed_args()[0].absolute_path); in IN_PROC_BROWSER_TEST_F()
194 test_browser_client.access_allowed_args()[0].absolute_path); in IN_PROC_BROWSER_TEST_F()
219 test_browser_client.access_allowed_args()[0].absolute_path); in IN_PROC_BROWSER_TEST_F()
263 test_browser_client.access_allowed_args()[0].absolute_path); in IN_PROC_BROWSER_TEST_F()
269 test_browser_client.access_allowed_args()[1].absolute_path); in IN_PROC_BROWSER_TEST_F()
[all …]
/dports/shells/ksh2020/ast-ksh2020/src/lib/libast/tests/path/
H A Dpathpath.c19 char absolute_path[PATH_MAX]; in tmain() local
34 if (!pathpath("cat", NULL, PATH_EXECUTE, absolute_path, sizeof(absolute_path))) in tmain()
37 if (!pathpath(absolute_path, NULL, PATH_EXECUTE, path, sizeof(path))) in tmain()
/dports/devel/cutter/cutter-1.2.6/test/cutter/
H A Dtest-cut-main.c30 const gchar *absolute_path, *relative_cutter, *absolute_cutter; in test_cutter_command_path() local
43 absolute_path = in test_cutter_command_path()
46 cut_set_cutter_command_path(absolute_path); in test_cutter_command_path()
47 cut_assert_equal_string(absolute_path, cut_get_cutter_command_path()); in test_cutter_command_path()
/dports/devel/ccls/ccls-0.20210330/src/
H A Dinclude_complete.cc23 std::string absolute_path; member
125 candidate.absolute_path = search + path; in rescan()
132 insertCompletionItem(result.absolute_path, in rescan()
141 void IncludeComplete::insertCompletionItem(const std::string &absolute_path, in insertCompletionItem() argument
146 auto it = absolute_path_to_completion_item.find(absolute_path); in insertCompletionItem()
149 absolute_path_to_completion_item[absolute_path] = in insertCompletionItem()
177 const std::string &absolute_path) { in findCompletionItemForAbsolutePath() argument
180 auto it = absolute_path_to_completion_item.find(absolute_path); in findCompletionItemForAbsolutePath()
/dports/devel/py-b2sdk/b2sdk-1.12.0/b2sdk/sync/
H A Dpath.py40 def __init__(self, absolute_path: str, relative_path: str, mod_time: int, size: int):
41 self.absolute_path = absolute_path
49 self.absolute_path == other.absolute_path and

12345678910>>...76