Home
last modified time | relevance | path

Searched full:url (Results 1 – 25 of 52) sorted by relevance

123

/petsc/config/BuildSystem/
H A Dretrieval.py28 def isGitURL(self, url): argument
29 parsed = urlparse_local.urlparse(url)
32 elif os.path.isdir(url) and self.isDirectoryGitRepo(url):
40 for url in urls:
41 parsed = urlparse_local.urlparse(url)
42 if self.isGitURL(url):
43 self.git_urls.append(self.removePrefix(url,'git://'))
45 self.hg_urls.append(self.removePrefix(url,'hg://'))
46 elif parsed[0] == 'dir' or os.path.isdir(url):
47 self.dir_urls.append(self.removePrefix(url,'dir://'))
[all …]
H A Dhelp.py183 …# note: cannot check for pkgname/FILENAME - as there can be conflicts with git-URL [that gets chec…
/petsc/doc/developers/
H A Dmrfork.md14 - Checkout branch using the repository `URL`. The `URL with branchname` is available as "Source bra…
17 % git fetch <URL> <branchname>
25 url = https://gitlab.com/petsc/petsc.git
40 Only `Owners/Maintainers` can push commits to a merge request fork branch. Here, use the `ssh-URL` …
43 % git fetch <ssh-URL> <branchname>
45 % git push -u <ssh-URL> <branchname>
56 - `URL with branchname` = `https://gitlab.com/paul.kuehner/petsc/-/tree/add-tao-get-constraints` ("…
57 - `URL` = `https://gitlab.com/paul.kuehner/petsc`
58 - `ssh-URL` = `git@gitlab.com:paul.kuehner/petsc.git`
/petsc/src/sys/fileio/
H A Dfretrieve.c315 PetscFileRetrieve - Obtains a file from a URL or a compressed file
322 . url - name of file, including entire URL (with or without .gz)
336 PetscErrorCode PetscFileRetrieve(MPI_Comm comm, const char url[], char localname[], size_t llen, Pe… in PetscFileRetrieve() argument
349 PetscCall(PetscStrstr(url, ".gz", &par)); in PetscFileRetrieve()
355 PetscCall(PetscStrncmp(url, "ftp://", 6, &flg1)); in PetscFileRetrieve()
356 PetscCall(PetscStrncmp(url, "http://", 7, &flg2)); in PetscFileRetrieve()
357 PetscCall(PetscStrncmp(url, "file://", 7, &flg3)); in PetscFileRetrieve()
358 PetscCall(PetscStrncmp(url, "https://", 8, &flg4)); in PetscFileRetrieve()
362 PetscCall(PetscStrncpy(localname, url, llen)); in PetscFileRetrieve()
363 PetscCall(PetscTestFile(url, 'r', found)); in PetscFileRetrieve()
[all …]
/petsc/src/sys/tests/
H A Dex51.c8 const char url[] = "https://web.cels.anl.gov/projects/petsc/download/datafiles/matrices/tiny"; in main() local
21 PetscCall(PetscFileRetrieve(PETSC_COMM_WORLD, url, localname, PETSC_MAX_PATH_LEN, &found)); in main()
22 PetscCheck(found, PETSC_COMM_WORLD, PETSC_ERR_PLIB, "Unable to download url %s", url); in main()
/petsc/src/sys/webclient/
H A Dclient.c104 static PetscErrorCode PetscHTTPBuildRequest(const char type[], const char url[], const char header[… in PetscHTTPBuildRequest() argument
112 PetscCall(PetscStrallocpy(url, &host)); in PetscHTTPBuildRequest()
114 PetscCheck(path, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "URL must contain /, it is %s", url); in PetscHTTPBuildRequest()
118 PetscCall(PetscStrchr(url, '/', &path)); in PetscHTTPBuildRequest()
162 . url - URL of request host/path
176 PetscErrorCode PetscHTTPSRequest(const char type[], const char url[], const char header[], const ch… in PetscHTTPSRequest() argument
184 PetscCall(PetscHTTPBuildRequest(type, url, header, ctype, body, &request)); in PetscHTTPSRequest()
250 . url - URL of request host/path
264 PetscErrorCode PetscHTTPRequest(const char type[], const char url[], const char header[], const cha… in PetscHTTPRequest() argument
270 PetscCall(PetscHTTPBuildRequest(type, url, header, ctype, body, &request)); in PetscHTTPRequest()
/petsc/lib/petsc/bin/maint/abi-compliance-checker/modules/Internals/Scripts/
H A DTabs.js3 var url = window.location.href;
4 if(url.indexOf('_Source_')!=-1 || url.indexOf('#Source')!=-1)
56 if(url.indexOf('#')!=-1) {
/petsc/doc/
H A Dupdate_htmlmap_links.py20 pattern = re.compile(r".*\+\+\+\+man\+(.*)$") # Match URL in group
24 url = match.group(1)
25 if url.startswith("manualpages"):
H A Dpetsc.bib21 note = {\url{https://semver.org}}
82 url = {https://doi.org/10.1115/1.2900803},
662 url = {https://hal.inria.fr/inria-00638247/en}
844 url = {http://www.math.uni-konstanz.de/numerik/personen/volkwein/teaching/POD-Book.pdf}
962 howpublished = {\url{https://www.mcs.anl.gov/~fathom/moab-docs/html/contents.html}},
1016 url = {https://www.jos.org.cn/josen/article/abstract/11042},
1023 howpublished = {\url{https://www.openblas.net}}
1029 howpublished = {\url{https://www.openacc.org}}
1047 note = {\url{https://arxiv.org/abs/2011.00715}},
1060 url = {https://www.sciencedirect.com/science/article/pii/S016781912100079X},
[all …]
H A Dfix_man_page_edit_links.py18 url = m[0]
30 f.write("<a href=%s>\n" % url)
H A Dadd_man_page_redirects.py7 '<head><meta http-equiv="refresh" content="0; url=%s" /></head>'
/petsc/src/binding/petsc4py/conf/
H A Depydoc.cfg79 # The documented project's URL.
80 url: https://gitlab.com/petsc/petsc
88 # project's name and URL.
91 # The "top" page for the documentation. Can be a URL, the name
117 # Use this URL prefix to configure the string returned for external API.
/petsc/src/sys/webclient/tutorials/output/
H A Durlshorten_1.out1 Long url http://www.google.com short url https://goo.gl/fbsS
/petsc/lib/petsc/bin/saws/
H A DSAWs.py19 url = 'http://'+host+':'+port+'/SAWs' variable
22 r = requests.get(url)
/petsc/lib/petsc/conf/
H A Drules_util.mk262 …he code recursively follows the permanently moved (301) redirections until it reaches the final URL
263 …pBox we need to check the validity of the new URL but do not want to return to user the internal "…
267 url=$$i; \
270 y1=`curl --connect-timeout 5 --head --silent $${url} | head -n 1`; \
278 …l=`curl --connect-timeout 5 --head --silent $${url} | grep ocation | sed 's/.*ocation:[[:blank:]]\…
281 url=$$l ; \
283 ws=`echo $${url} | sed 's!\(http[s]*://[-a-zA-Z0-9_.]*\)/.*!\1!g'` ; \
294 url="$${ws}$$l" ; \
301 if [[ "$${msg}D" == "D" && "$${url}" != "$$i" ]] ; then \
302 echo "URL" $$i "has moved to valid final location:" $${url} ; \
[all …]
/petsc/config/BuildSystem/config/packages/
H A Dfftw.py6 # host locally as fftw.org url can expire after new release.
H A DMPICH.py9 …+'/mpich-'+self.version+'.tar.gz', # does not always work from Python? So add in web.cels URL below
/petsc/lib/petsc/bin/maint/
H A Dpetscdt_create_quadrature_headers.py78 rules["url"] = "https://doi.org/10.1016/j.camwa.2015.03.017"
143 rules["url"] = "https://doi.org/10.1002/nme.6528"
153 lines.append(f"""// Minimal symmetric quadrature rules for a {rules['type']} from {rules['url']}
/petsc/src/sys/python/
H A Dpythonsys.c291 PetscErrorCode PetscPythonMonitorSet(PetscObject obj, const char url[]) in PetscPythonMonitorSet() argument
295 PetscAssertPointer(url, 2); in PetscPythonMonitorSet()
300 PetscCall(PetscPythonMonitorSet_C(obj, url)); in PetscPythonMonitorSet()
/petsc/src/binding/petsc4py/
H A Dsetup.py67 url = F('https://gitlab.com/{name}/{name}') variable
106 'url': url,
/petsc/doc/ext/
H A Dhtml5_petsc.py217 url = link if link.startswith('http') else prefix + link
218 return '<a href=\"' + url + '\">' + name + '</a>'
/petsc/doc/developers/contributing/
H A Dindex.md55 $ git remote set-url origin git@gitlab.com:YOURGITLABUSERNAME/petsc.git
H A Dsubmittingmr.md5 `git push` prints a URL to the terminal that you can use to start a merge request.
/petsc/src/ksp/pc/impls/sor/
H A Dsor.tex4 \usepackage{url}
/petsc/src/sys/dll/
H A Ddl.c3 path of DLLs, obtaining remote DLLs via a URL and opening them locally.
35 . libname - name of the library, can be a relative or absolute path and be a URL

123