Home
last modified time | relevance | path

Searched refs:rootpath (Results 1 – 25 of 1596) sorted by relevance

12345678910>>...64

/dports/devel/viewvc-devel/viewvc-c93d9da79c31457ecb0a771ff52d28353dc6e878/lib/vclib/svn/
H A D__init__.py26 def canonicalize_rootpath(rootpath): argument
28 rootpath = _canonicalize_path(rootpath)
35 rootpath_lower = rootpath.lower()
43 rootpath = os.path.normpath(urllib.parse.unquote(rootpath[16:]))
45 rootpath = os.path.normpath(urllib.parse.unquote(rootpath[7:]))
48 if not re.search(_re_url, rootpath):
49 assert os.path.isabs(rootpath)
50 return rootpath
79 return canonicalize_rootpath(rootpath)
85 rootpath = canonicalize_rootpath(rootpath)
[all …]
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/astaxie/beego/
H A Dnamespace.go123 n.handlers.Get(rootpath, f)
144 n.handlers.Put(rootpath, f)
316 ns.Get(rootpath, f)
323 ns.Post(rootpath, f)
330 ns.Head(rootpath, f)
337 ns.Put(rootpath, f)
344 ns.Delete(rootpath, f)
351 ns.Any(rootpath, f)
358 ns.Options(rootpath, f)
365 ns.Patch(rootpath, f)
[all …]
H A Dapp.go376 Router(rootpath, c)
377 Router(path.Join(rootpath, ":objectId"), c)
404 func Get(rootpath string, f FilterFunc) *App {
405 BeeApp.Handlers.Get(rootpath, f)
415 BeeApp.Handlers.Post(rootpath, f)
425 BeeApp.Handlers.Delete(rootpath, f)
435 BeeApp.Handlers.Put(rootpath, f)
445 BeeApp.Handlers.Head(rootpath, f)
455 BeeApp.Handlers.Options(rootpath, f)
465 BeeApp.Handlers.Patch(rootpath, f)
[all …]
/dports/devel/viewvc-devel/viewvc-c93d9da79c31457ecb0a771ff52d28353dc6e878/lib/vclib/ccvs/
H A D__init__.py21 def canonicalize_rootpath(rootpath): argument
22 assert os.path.isabs(rootpath)
23 return os.path.normpath(rootpath)
39 rootpath = os.path.join(parent_path, rootname)
40 if _is_cvsroot(parent_path) or _is_cvsroot(rootpath):
41 roots[rootname] = canonicalize_rootpath(rootpath)
53 rootpath = os.path.join(parent_path, rootname)
54 if (_is_cvsroot(parent_path) and os.path.exists(rootpath)) \
55 or _is_cvsroot(rootpath):
56 return canonicalize_rootpath(rootpath)
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/apr/file_io/win32/
H A Dfilesys.c124 for (*rootpath = path; **rootpath; ++*rootpath) { in filepath_drive_get()
125 if (**rootpath == '\\') in filepath_drive_get()
126 **rootpath = '/'; in filepath_drive_get()
129 *rootpath = apr_pstrdup(p, path); in filepath_drive_get()
156 *rootpath = apr_pstrdup(p, (char*)wroot); in filepath_root_case()
166 *rootpath = apr_pstrdup(p, path); in filepath_root_case()
196 for (*rootpath = path; **rootpath; ++*rootpath) { in apr_filepath_get()
197 if (**rootpath == '\\') in apr_filepath_get()
198 **rootpath = '/'; in apr_filepath_get()
201 *rootpath = apr_pstrdup(p, path); in apr_filepath_get()
[all …]
/dports/devel/apr1/apr-1.7.0/file_io/win32/
H A Dfilesys.c124 for (*rootpath = path; **rootpath; ++*rootpath) { in filepath_drive_get()
125 if (**rootpath == '\\') in filepath_drive_get()
126 **rootpath = '/'; in filepath_drive_get()
129 *rootpath = apr_pstrdup(p, path); in filepath_drive_get()
156 *rootpath = apr_pstrdup(p, (char*)wroot); in filepath_root_case()
166 *rootpath = apr_pstrdup(p, path); in filepath_root_case()
196 for (*rootpath = path; **rootpath; ++*rootpath) { in apr_filepath_get()
197 if (**rootpath == '\\') in apr_filepath_get()
198 **rootpath = '/'; in apr_filepath_get()
201 *rootpath = apr_pstrdup(p, path); in apr_filepath_get()
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/apr/file_io/netware/
H A Dfilesys.c21 apr_status_t filepath_root_case(char **rootpath, char *root, apr_pool_t *p) in filepath_root_case() argument
27 *rootpath = apr_pstrdup(p, root); in filepath_root_case()
31 apr_status_t filepath_has_drive(const char *rootpath, int only, apr_pool_t *p) in filepath_has_drive() argument
35 if (rootpath) { in filepath_has_drive()
36 s = strchr (rootpath, ':'); in filepath_has_drive()
40 return (s && (s != rootpath) && !s[1]); in filepath_has_drive()
44 return (s && (s != rootpath)); in filepath_has_drive()
88 *rootpath = apr_pstrdup(p, ptr); in apr_filepath_get()
90 for (ptr = *rootpath; *ptr; ++ptr) { in apr_filepath_get()
98 APR_DECLARE(apr_status_t) apr_filepath_set(const char *rootpath, in apr_filepath_set() argument
[all …]
/dports/devel/apr1/apr-1.7.0/file_io/netware/
H A Dfilesys.c21 apr_status_t filepath_root_case(char **rootpath, char *root, apr_pool_t *p) in filepath_root_case() argument
27 *rootpath = apr_pstrdup(p, root); in filepath_root_case()
31 apr_status_t filepath_has_drive(const char *rootpath, int only, apr_pool_t *p) in filepath_has_drive() argument
35 if (rootpath) { in filepath_has_drive()
36 s = strchr (rootpath, ':'); in filepath_has_drive()
40 return (s && (s != rootpath) && !s[1]); in filepath_has_drive()
44 return (s && (s != rootpath)); in filepath_has_drive()
88 *rootpath = apr_pstrdup(p, ptr); in apr_filepath_get()
90 for (ptr = *rootpath; *ptr; ++ptr) { in apr_filepath_get()
98 APR_DECLARE(apr_status_t) apr_filepath_set(const char *rootpath, in apr_filepath_set() argument
[all …]
/dports/devel/py-monty/monty-2021.8.17/monty/
H A Dtempfile.py41 rootpath, argument
74 if Path is not None and isinstance(rootpath, Path):
75 rootpath = str(rootpath)
77 self.rootpath = os.path.abspath(rootpath) if rootpath is not None else None
85 if self.rootpath is not None and os.path.exists(self.rootpath):
86 tempdir = tempfile.mkdtemp(dir=self.rootpath)
96 if self.rootpath is not None and os.path.exists(self.rootpath):
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/apr/file_io/unix/
H A Dfilepath.c70 *rootpath = apr_pstrdup(p, "/"); in apr_filepath_root()
115 rootpath = ""; in apr_filepath_merge()
124 if (!rootpath) in apr_filepath_merge()
125 rootpath = ""; in apr_filepath_merge()
126 else if (rootpath[0] == '/') in apr_filepath_merge()
131 if (!rootpath) { in apr_filepath_merge()
138 rootpath = getpath; in apr_filepath_merge()
152 rootlen = strlen(rootpath); in apr_filepath_merge()
181 memcpy(path, rootpath, rootlen); in apr_filepath_merge()
282 if (strncmp(rootpath, path, rootlen)) { in apr_filepath_merge()
[all …]
/dports/devel/apr1/apr-1.7.0/file_io/unix/
H A Dfilepath.c70 *rootpath = apr_pstrdup(p, "/"); in apr_filepath_root()
115 rootpath = ""; in apr_filepath_merge()
124 if (!rootpath) in apr_filepath_merge()
125 rootpath = ""; in apr_filepath_merge()
126 else if (rootpath[0] == '/') in apr_filepath_merge()
131 if (!rootpath) { in apr_filepath_merge()
138 rootpath = getpath; in apr_filepath_merge()
149 rootlen = strlen(rootpath); in apr_filepath_merge()
178 memcpy(path, rootpath, rootlen); in apr_filepath_merge()
279 if (strncmp(rootpath, path, rootlen)) { in apr_filepath_merge()
[all …]
/dports/sysutils/fusefs-cryptofs/cryptofs-0.6.0/src/fuse/
H A Dcryptofs.c33 static gchar *rootpath = NULL; variable
37 { "root", 'r', 0, G_OPTION_ARG_STRING, &rootpath, "Path of encrypted directory", "R" },
59 if (rootpath == NULL) { in main()
64 if (!g_path_is_absolute(rootpath)) { in main()
65 gchar *oldpath = rootpath; in main()
68 rootpath = g_strconcat(curpath, G_DIR_SEPARATOR_S, rootpath, NULL); in main()
73 cryptofs_cfg = g_strconcat(rootpath, G_DIR_SEPARATOR_S, CONFIGFILE, NULL); in main()
76 "Check that %s/" CONFIGFILE " is available and correct\n", rootpath); in main()
81 …fs_init(rootpath, crypto_create_global_ctx_default(cipheralgo, mdalgo, fileblocksize, num_of_salts… in main()
/dports/x11/radare-cutter/r2cutter-0.1.1/docs/
H A Dapidoc.py53 xmlfile = os.path.join(rootpath, package_id + '.xml')
69 def get_compound_folder(rootpath, compound): argument
76 def recurse_tree(rootpath, destdir): argument
81 index = xml.etree.ElementTree.parse(os.path.join(rootpath, 'index.xml'))
88 rootpath, destdir)
90 def get_folders_tree(rootpath): argument
94 for root, _, files in os.walk(rootpath):
103 data = xml.etree.ElementTree.parse(os.path.join(rootpath, xmlfile))
114 rootpath = './doxygen-out/xml'
120 dirs = sorted(get_folders_tree(rootpath))
[all …]
/dports/www/trafficserver/trafficserver-9.1.1/src/tscore/
H A Dink_file.cc172 rootpath = ""; in ink_filepath_merge()
181 if (!rootpath) { in ink_filepath_merge()
182 rootpath = ""; in ink_filepath_merge()
183 } else if (rootpath[0] == '/') { in ink_filepath_merge()
188 if (!rootpath) { in ink_filepath_merge()
196 rootpath = curdir; in ink_filepath_merge()
198 rootlen = strlen(rootpath); in ink_filepath_merge()
226 memcpy(path, rootpath, rootlen); in ink_filepath_merge()
356 if (!rootpath || !*rootpath) { in ink_filepath_make()
361 rootlen = strlen(rootpath); in ink_filepath_make()
[all …]
/dports/biology/abyss/abyss-2.3.1/RResolver/btllib/
H A Dmeson.build35 rootpath = meson.source_root() variable
37 run_target('build-sdsl', command: join_paths(rootpath, 'scripts/build_sdsl'))
41 run_target('format', command: join_paths(rootpath, 'scripts/format'))
46 run_target('wrap', command: join_paths(rootpath, 'scripts/wrap'))
51 …run_target('tidycheck', command: [ join_paths(rootpath, 'scripts/tidycheck') ] + global_args + glo…
56 run_target('formatcheck', command: join_paths(rootpath, 'scripts/formatcheck'))
61 run_target('cppcheck', command: join_paths(rootpath, 'scripts/cppcheck'))
66 run_target('docs', command: join_paths(rootpath, 'scripts/docs'))
69 run_target('complete', command: join_paths(rootpath, 'scripts/complete'))
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/apr/file_io/os2/
H A Dfilesys.c66 apr_status_t filepath_drive_get(char **rootpath, char drive, in filepath_drive_get() argument
91 *rootpath = apr_pstrdup(p, path); in filepath_drive_get()
96 apr_status_t filepath_root_case(char **rootpath, char *root, apr_pool_t *p) in filepath_root_case() argument
99 *rootpath = apr_pstrdup(p, root); in filepath_root_case()
100 (*rootpath)[0] = apr_toupper((*rootpath)[0]); in filepath_root_case()
103 *rootpath = root; in filepath_root_case()
/dports/devel/apr1/apr-1.7.0/file_io/os2/
H A Dfilesys.c66 apr_status_t filepath_drive_get(char **rootpath, char drive, in filepath_drive_get() argument
91 *rootpath = apr_pstrdup(p, path); in filepath_drive_get()
96 apr_status_t filepath_root_case(char **rootpath, char *root, apr_pool_t *p) in filepath_root_case() argument
99 *rootpath = apr_pstrdup(p, root); in filepath_root_case()
100 (*rootpath)[0] = apr_toupper((*rootpath)[0]); in filepath_root_case()
103 *rootpath = root; in filepath_root_case()
/dports/science/py-pymatgen/pymatgen-2022.0.15/pymatgen/apps/borg/
H A Dqueen.py29 def __init__(self, drone, rootpath=None, number_of_drones=1): argument
49 if rootpath:
51 self.parallel_assimilate(rootpath)
53 self.serial_assimilate(rootpath)
55 def parallel_assimilate(self, rootpath): argument
61 for (parent, subdirs, files) in os.walk(rootpath):
77 def serial_assimilate(self, rootpath): argument
82 for (parent, subdirs, files) in os.walk(rootpath):
/dports/mail/claws-mail-pgp/claws-mail-3.18.0/src/
H A Dlocalfolder.c31 LOCAL_FOLDER(folder)->rootpath = g_strdup(path); in folder_local_folder_init()
38 g_free(lfolder->rootpath); in folder_local_folder_destroy()
53 g_free(folder->rootpath); in folder_local_set_xml()
54 folder->rootpath = g_strdup(attr->value); in folder_local_set_xml()
66 xml_tag_add_attr(tag, xml_attr_new("path", folder->rootpath)); in folder_local_get_xml()
/dports/mail/claws-mail-spamassassin/claws-mail-3.18.0/src/
H A Dlocalfolder.c31 LOCAL_FOLDER(folder)->rootpath = g_strdup(path); in folder_local_folder_init()
38 g_free(lfolder->rootpath); in folder_local_folder_destroy()
53 g_free(folder->rootpath); in folder_local_set_xml()
54 folder->rootpath = g_strdup(attr->value); in folder_local_set_xml()
66 xml_tag_add_attr(tag, xml_attr_new("path", folder->rootpath)); in folder_local_get_xml()
/dports/mail/claws-mail-rssyl/claws-mail-3.18.0/src/
H A Dlocalfolder.c31 LOCAL_FOLDER(folder)->rootpath = g_strdup(path); in folder_local_folder_init()
38 g_free(lfolder->rootpath); in folder_local_folder_destroy()
53 g_free(folder->rootpath); in folder_local_set_xml()
54 folder->rootpath = g_strdup(attr->value); in folder_local_set_xml()
66 xml_tag_add_attr(tag, xml_attr_new("path", folder->rootpath)); in folder_local_get_xml()
/dports/mail/claws-mail-notification/claws-mail-3.18.0/src/
H A Dlocalfolder.c31 LOCAL_FOLDER(folder)->rootpath = g_strdup(path); in folder_local_folder_init()
38 g_free(lfolder->rootpath); in folder_local_folder_destroy()
53 g_free(folder->rootpath); in folder_local_set_xml()
54 folder->rootpath = g_strdup(attr->value); in folder_local_set_xml()
66 xml_tag_add_attr(tag, xml_attr_new("path", folder->rootpath)); in folder_local_get_xml()
/dports/mail/claws-mail-pdf_viewer/claws-mail-3.18.0/src/
H A Dlocalfolder.c31 LOCAL_FOLDER(folder)->rootpath = g_strdup(path); in folder_local_folder_init()
38 g_free(lfolder->rootpath); in folder_local_folder_destroy()
53 g_free(folder->rootpath); in folder_local_set_xml()
54 folder->rootpath = g_strdup(attr->value); in folder_local_set_xml()
66 xml_tag_add_attr(tag, xml_attr_new("path", folder->rootpath)); in folder_local_get_xml()
/dports/mail/claws-mail-spam_report/claws-mail-3.18.0/src/
H A Dlocalfolder.c31 LOCAL_FOLDER(folder)->rootpath = g_strdup(path); in folder_local_folder_init()
38 g_free(lfolder->rootpath); in folder_local_folder_destroy()
53 g_free(folder->rootpath); in folder_local_set_xml()
54 folder->rootpath = g_strdup(attr->value); in folder_local_set_xml()
66 xml_tag_add_attr(tag, xml_attr_new("path", folder->rootpath)); in folder_local_get_xml()
/dports/mail/claws-mail-newmail/claws-mail-3.18.0/src/
H A Dlocalfolder.c31 LOCAL_FOLDER(folder)->rootpath = g_strdup(path); in folder_local_folder_init()
38 g_free(lfolder->rootpath); in folder_local_folder_destroy()
53 g_free(folder->rootpath); in folder_local_set_xml()
54 folder->rootpath = g_strdup(attr->value); in folder_local_set_xml()
66 xml_tag_add_attr(tag, xml_attr_new("path", folder->rootpath)); in folder_local_get_xml()

12345678910>>...64