Home
last modified time | relevance | path

Searched refs:allowed_path (Results 1 – 25 of 33) sorted by relevance

12

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/import_export/json/
H A Dlegacy_reader.rb10 def initialize(path, relation_names:, allowed_path: nil)
14 allowed_path: allowed_path)
38 def initialize(tree_hash, relation_names:, allowed_path: nil)
42 allowed_path: allowed_path)
54 def initialize(relation_names:, allowed_path:) argument
61 @allowed_path = allowed_path
H A Dlegacy_writer.rb11 def initialize(path, allowed_path:) argument
18 @allowed_path = allowed_path
/dports/www/py-protego/Protego-0.1.16/tests/
H A Dtest_on_google_spec.py30 for allowed_path in ('/group1', '/group2', '/group3'):
31 if rp.can_fetch(allowed_path, user_agent):
34 allowed_path = None
35 assert allowed_path == path
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/sandbox/mac/
H A Dsandbox_mac_seatbelt_exec_unittest.cc29 std::string allowed_path = "/Applications"; in MULTIPROCESS_TEST_MAIN() local
33 "ALLOWED_READ_DIR", allowed_path); in MULTIPROCESS_TEST_MAIN()
42 CHECK_EQ(0, stat(allowed_path.c_str(), &sb)); in MULTIPROCESS_TEST_MAIN()
/dports/www/chromium-legacy/chromium-88.0.4324.182/sandbox/mac/
H A Dsandbox_mac_seatbelt_exec_unittest.cc29 std::string allowed_path = "/Applications"; in MULTIPROCESS_TEST_MAIN() local
33 "ALLOWED_READ_DIR", allowed_path); in MULTIPROCESS_TEST_MAIN()
42 CHECK_EQ(0, stat(allowed_path.c_str(), &sb)); in MULTIPROCESS_TEST_MAIN()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/guest_os/
H A Dguest_os_share_path.cc253 allowed_path = true; in CallSeneschalSharePath()
271 allowed_path = true; in CallSeneschalSharePath()
276 allowed_path = true; in CallSeneschalSharePath()
281 allowed_path = true; in CallSeneschalSharePath()
300 allowed_path = true; in CallSeneschalSharePath()
305 allowed_path = true; in CallSeneschalSharePath()
310 allowed_path = true; in CallSeneschalSharePath()
316 allowed_path = true; in CallSeneschalSharePath()
320 allowed_path = true; in CallSeneschalSharePath()
331 allowed_path = true; in CallSeneschalSharePath()
[all …]
/dports/sysutils/usermin/usermin-1.830/filemin/
H A Ddownload.cgi14 for $allowed_path (@allowed_paths) {
15 if (&is_under_directory($allowed_path, $file)) {
H A Dfilemin-lib.pl114 for $allowed_path (@allowed_paths) {
115 if (&is_under_directory($allowed_path, $cwd) ||
116 $allowed_path =~ /^\Q$cwd\E/) {
450 foreach my $allowed_path (@allowed_paths) {
451 if (&is_under_directory($allowed_path, $file)) {
/dports/sysutils/webmin/webmin-1.981/filemin/
H A Ddownload.cgi14 for $allowed_path (@allowed_paths) {
15 if (&is_under_directory($allowed_path, $file)) {
H A Dfilemin-lib.pl114 for $allowed_path (@allowed_paths) {
115 if (&is_under_directory($allowed_path, $cwd) ||
116 $allowed_path =~ /^\Q$cwd\E/) {
450 foreach my $allowed_path (@allowed_paths) {
451 if (&is_under_directory($allowed_path, $file)) {
/dports/security/denyhosts/DenyHosts-3.1.2/DenyHosts/
H A Dallowedhosts.py18 self.allowed_path = os.path.join(work_dir, ALLOWED_HOSTS)
38 fp = open(self.allowed_path, "r")
40 debug("Could not open %s - %s", self.allowed_path, str(e))
/dports/www/chromium-legacy/chromium-88.0.4324.182/url/
H A Dgurl.cc481 bool GURL::IsAboutUrl(base::StringPiece allowed_path) const { in IsAboutUrl()
488 if (!base::StartsWith(path_piece(), allowed_path)) in IsAboutUrl()
491 if (path_piece().size() == allowed_path.size()) { in IsAboutUrl()
492 DCHECK_EQ(path_piece(), allowed_path); in IsAboutUrl()
496 if ((path_piece().size() == allowed_path.size() + 1) && in IsAboutUrl()
498 DCHECK_EQ(path_piece(), allowed_path.as_string() + '/'); in IsAboutUrl()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/url/
H A Dgurl.cc490 bool GURL::IsAboutUrl(base::StringPiece allowed_path) const { in IsAboutUrl()
497 if (!path_piece().starts_with(allowed_path)) in IsAboutUrl()
500 if (path_piece().size() == allowed_path.size()) { in IsAboutUrl()
501 DCHECK_EQ(path_piece(), allowed_path); in IsAboutUrl()
505 if ((path_piece().size() == allowed_path.size() + 1) && in IsAboutUrl()
507 DCHECK_EQ(path_piece(), allowed_path.as_string() + '/'); in IsAboutUrl()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/
H A Dutils.rb28 allowlist.map(&:downcase).any? do |allowed_path|
29 path.start_with?(allowed_path)
/dports/polish/trf/trf-0.4/
H A Dtrfs.c107 char allowed_path[] = in main() local
378 if (validate(home, allowed_path) == 1) { in main()
400 if (validate(file_log_suffix, allowed_path) == 1) { in main()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/import_export/json/
H A Dlegacy_writer_spec.rb9 described_class.new(path, allowed_path: "project")
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/import_export/project/
H A Dtree_saver.rb84 Gitlab::ImportExport::Json::LegacyWriter.new(full_path, allowed_path: 'project')
H A Dtree_restorer.rb68 allowed_path: importable_path
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/import_export/json/legacy_reader/
H A Dshared_example.rb10 allowed_path: "project")
/dports/lang/python310/Python-3.10.1/Lib/test/
H A Dtest_compileall.py399 allowed_path = os.path.join(self.directory, "test", "dir", "allowed")
402 os.makedirs(allowed_path)
407 allowed_script = script_helper.make_script(allowed_path, "test_allowed", "a = 0")
416 compileall.compile_dir(symlinks_path, quiet=True, limit_sl_dest=allowed_path)
865 allowed_path = os.path.join(self.directory, "test", "dir", "allowed")
868 os.makedirs(allowed_path)
873 allowed_script = script_helper.make_script(allowed_path, "test_allowed", "a = 0")
882 self.assertRunOK(symlinks_path, "-e", allowed_path)
/dports/lang/python39/Python-3.9.9/Lib/test/
H A Dtest_compileall.py391 allowed_path = os.path.join(self.directory, "test", "dir", "allowed")
394 os.makedirs(allowed_path)
399 allowed_script = script_helper.make_script(allowed_path, "test_allowed", "a = 0")
408 compileall.compile_dir(symlinks_path, quiet=True, limit_sl_dest=allowed_path)
858 allowed_path = os.path.join(self.directory, "test", "dir", "allowed")
861 os.makedirs(allowed_path)
866 allowed_script = script_helper.make_script(allowed_path, "test_allowed", "a = 0")
875 self.assertRunOK(symlinks_path, "-e", allowed_path)
/dports/lang/python311/Python-3.11.0a3/Lib/test/
H A Dtest_compileall.py399 allowed_path = os.path.join(self.directory, "test", "dir", "allowed")
402 os.makedirs(allowed_path)
407 allowed_script = script_helper.make_script(allowed_path, "test_allowed", "a = 0")
416 compileall.compile_dir(symlinks_path, quiet=True, limit_sl_dest=allowed_path)
865 allowed_path = os.path.join(self.directory, "test", "dir", "allowed")
868 os.makedirs(allowed_path)
873 allowed_script = script_helper.make_script(allowed_path, "test_allowed", "a = 0")
882 self.assertRunOK(symlinks_path, "-e", allowed_path)
/dports/devel/efl/efl-1.25.1/src/scripts/pyolian/
H A Dpyratemp.py393 def __init__(self, allowed_path=None, encoding='utf-8'): argument
402 if allowed_path and not os.path.isdir(allowed_path):
404 self.path = allowed_path
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/util/py_lib/
H A Dpyratemp.py366 def __init__(self, allowed_path=None, encoding='utf-8'): argument
375 if allowed_path and not os.path.isdir(allowed_path):
377 self.path = allowed_path
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/import_export/project/
H A Drelation_tree_restorer_spec.rb95 allowed_path: 'project'

12