Home
last modified time | relevance | path

Searched full:docs_dir (Results 1 – 20 of 20) sorted by relevance

/aosp_15_r20/external/curl/tests/http/
H A Dtest_31_vsftpds.py57 def _make_docs_file(self, docs_dir: str, fname: str, fsize: int):
58 fpath = os.path.join(docs_dir, fname)
69 if os.path.exists(vsftpds.docs_dir):
70 shutil.rmtree(vsftpds.docs_dir)
71 if not os.path.exists(vsftpds.docs_dir):
72 os.makedirs(vsftpds.docs_dir)
73 self._make_docs_file(docs_dir=vsftpds.docs_dir, fname='data-1k', fsize=1024)
74 self._make_docs_file(docs_dir=vsftpds.docs_dir, fname='data-10k', fsize=10*1024)
75 self._make_docs_file(docs_dir=vsftpds.docs_dir, fname='data-1m', fsize=1024*1024)
76 self._make_docs_file(docs_dir=vsftpds.docs_dir, fname='data-10m', fsize=10*1024*1024)
[all …]
H A Dtest_30_vsftpd.py50 def _make_docs_file(self, docs_dir: str, fname: str, fsize: int):
51 fpath = os.path.join(docs_dir, fname)
62 if os.path.exists(vsftpd.docs_dir):
63 shutil.rmtree(vsftpd.docs_dir)
64 if not os.path.exists(vsftpd.docs_dir):
65 os.makedirs(vsftpd.docs_dir)
66 self._make_docs_file(docs_dir=vsftpd.docs_dir, fname='data-1k', fsize=1024)
67 self._make_docs_file(docs_dir=vsftpd.docs_dir, fname='data-10k', fsize=10*1024)
68 self._make_docs_file(docs_dir=vsftpd.docs_dir, fname='data-1m', fsize=1024*1024)
69 self._make_docs_file(docs_dir=vsftpd.docs_dir, fname='data-10m', fsize=10*1024*1024)
[all …]
H A Dtest_08_caddy.py51 def _make_docs_file(self, docs_dir: str, fname: str, fsize: int):
52 fpath = os.path.join(docs_dir, fname)
63 self._make_docs_file(docs_dir=caddy.docs_dir, fname='data10k.data', fsize=10*1024)
64 self._make_docs_file(docs_dir=caddy.docs_dir, fname='data1.data', fsize=1024*1024)
65 self._make_docs_file(docs_dir=caddy.docs_dir, fname='data5.data', fsize=5*1024*1024)
66 self._make_docs_file(docs_dir=caddy.docs_dir, fname='data10.data', fsize=10*1024*1024)
67 self._make_docs_file(docs_dir=caddy.docs_dir, fname='data100.data', fsize=100*1024*1024)
229 srcfile = os.path.join(caddy.docs_dir, docname)
H A Dtest_02_download.py53 indir = httpd.docs_dir
320 srcfile = os.path.join(httpd.docs_dir, 'data-1m')
343 srcfile = os.path.join(httpd.docs_dir, docname)
364 srcfile = os.path.join(httpd.docs_dir, docname)
392 srcfile = os.path.join(httpd.docs_dir, docname)
421 srcfile = os.path.join(httpd.docs_dir, docname)
450 srcfile = os.path.join(httpd.docs_dir, docname)
560 srcfile = os.path.join(httpd.docs_dir, docname)
614 srcfile = os.path.join(httpd.docs_dir, docname)
H A Dscorecard.py104 def _make_docs_file(self, docs_dir: str, fname: str, fsize: int):
105 fpath = os.path.join(docs_dir, fname)
119 self._make_docs_file(docs_dir=server_docs,
121 self._make_docs_file(docs_dir=server_docs,
368 fpaths[label] = self._make_docs_file(docs_dir=self.env.gen_dir,
778 server_docs = httpd.docs_dir
812 server_docs = caddy.docs_dir
H A Dtest_10_proxy.py43 push_dir = os.path.join(httpd.docs_dir, 'push')
99 srcfile = os.path.join(httpd.docs_dir, fname)
163 srcfile = os.path.join(httpd.docs_dir, 'data.json')
191 srcfile = os.path.join(httpd.docs_dir, fname)
212 srcfile = os.path.join(httpd.docs_dir, fname)
H A Dtest_18_methods.py44 indir = httpd.docs_dir
H A Dtest_09_push.py41 push_dir = os.path.join(httpd.docs_dir, 'push')
H A Dtest_19_shutdown.py48 indir = httpd.docs_dir
H A Dtest_16_info.py48 indir = httpd.docs_dir
H A Dtest_17_ssl_use.py43 env.make_data_file(indir=httpd.docs_dir, fname="data-10k", fsize=10*1024)
/aosp_15_r20/external/protobuf/python/docs/
H A Dgenerate_docs.py66 DOCS_DIR = pathlib.Path(__file__).parent.resolve() variable
67 PYTHON_DIR = DOCS_DIR.parent
162 automodule_path = DOCS_DIR.joinpath(*module.split(".")).with_suffix(".rst")
173 with open(DOCS_DIR / "index.rst", "r") as index_file:
179 with open(DOCS_DIR / "index.rst", "w") as index_file:
/aosp_15_r20/external/cronet/third_party/protobuf/python/docs/
H A Dgenerate_docs.py66 DOCS_DIR = pathlib.Path(__file__).parent.resolve() variable
67 PYTHON_DIR = DOCS_DIR.parent
162 automodule_path = DOCS_DIR.joinpath(*module.split(".")).with_suffix(".rst")
173 with open(DOCS_DIR / "index.rst", "r") as index_file:
179 with open(DOCS_DIR / "index.rst", "w") as index_file:
/aosp_15_r20/external/python/setuptools/setuptools/tests/
Dtest_find_packages.py63 self.docs_dir = self._mkdir('docs', self.dist_dir)
64 self._touch('conf.py', self.docs_dir)
178 shutil.rmtree(self.docs_dir)
/aosp_15_r20/external/curl/tests/http/testenv/
H A Dhttpd.py98 def docs_dir(self): member in Httpd
245 self._mkpath(os.path.join(self.docs_dir, 'restricted/digest'))
246 with open(os.path.join(self.docs_dir, 'restricted/digest/data.json'), 'w') as fd:
450 f' <Directory {self.docs_dir}/restricted/digest>',
H A Dcaddy.py55 def docs_dir(self): member in Caddy
H A Dvsftpd.py70 def docs_dir(self): member in VsFTPD
/aosp_15_r20/external/fmtlib/support/
H A Dmkdocs.yml3 docs_dir: ../doc
/aosp_15_r20/external/accompanist/
H A Dmkdocs.yml9 docs_dir: docs-gen
/aosp_15_r20/external/python/bumble/docs/mkdocs/
Dmkdocs.yml96 docs_dir: 'src'