Home
last modified time | relevance | path

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

/libCEED/julia/LibCEED.jl/src/
H A DCeed.jl10 function Base.showerror(io::IO, e::CeedError) argument
11 println(io, "libCEED error code ", e.ecode, " in ", e.func)
12 println(io, e.fname, ':', e.lineno, '\n')
13 println(io, e.message)
67 Base.show(io::IO, ::MIME"text/plain", c::Ceed) = ceed_show(io, c, C.CeedView) argument
H A DCeedVector.jl40 Base.summary(io::IO, v::CeedVector) = print(io, length(v), "-element CeedVector") argument
41 function Base.show(io::IO, ::MIME"text/plain", v::CeedVector) argument
42 summary(io, v)
43 println(io, ":")
45 Base.print_array(io, arr)
48 Base.show(io::IO, v::CeedVector) = witharray_read(a -> show(io, a), v, MEM_HOST) argument
H A DContext.jl14 Base.show(io::IO, ::MIME"text/plain", c::Context) = argument
15 ceed_show(io, c, C.CeedQFunctionContextView)
H A DOperator.jl18 Base.show(io::IO, ::MIME"text/plain", op::Operator) = ceed_show(io, op, C.CeedOperatorView) argument
H A DQFunction.jl31 Base.show(io::IO, ::MIME"text/plain", qf::QFunction) = argument
32 ceed_show(io, qf, C.CeedQFunctionView)
H A DMisc.jl117 function ceed_show(io::IO, obj, view_fn) argument
118 print(io, tmp_view(obj[], view_fn))
H A DElemRestriction.jl31 Base.show(io::IO, ::MIME"text/plain", e::ElemRestriction) = argument
32 ceed_show(io, e, C.CeedElemRestrictionView)
H A DBasis.jl36 Base.show(io::IO, ::MIME"text/plain", b::Basis) = ceed_show(io, b, C.CeedBasisView) argument
/libCEED/
H A D.gitlab-ci.yml125 … bash <(curl -s https://codecov.io/bash) -f coverage.info -t ${CODECOV_ACCESS_TOKEN} -F interface;
126 … bash <(curl -s https://codecov.io/bash) -f coverage.info -t ${CODECOV_ACCESS_TOKEN} -F gallery;
127 … bash <(curl -s https://codecov.io/bash) -f coverage.info -t ${CODECOV_ACCESS_TOKEN} -F backends;
128 … bash <(curl -s https://codecov.io/bash) -f coverage.info -t ${CODECOV_ACCESS_TOKEN} -F tests;
129 … bash <(curl -s https://codecov.io/bash) -f coverage.info -t ${CODECOV_ACCESS_TOKEN} -F examples;
213 … bash <(curl -s https://codecov.io/bash) -f coverage.info -t ${CODECOV_ACCESS_TOKEN} -F interface;
214 … bash <(curl -s https://codecov.io/bash) -f coverage.info -t ${CODECOV_ACCESS_TOKEN} -F gallery;
215 … bash <(curl -s https://codecov.io/bash) -f coverage.info -t ${CODECOV_ACCESS_TOKEN} -F backends;
216 … bash <(curl -s https://codecov.io/bash) -f coverage.info -t ${CODECOV_ACCESS_TOKEN} -F tests;
217 … bash <(curl -s https://codecov.io/bash) -f coverage.info -t ${CODECOV_ACCESS_TOKEN} -F examples;
[all …]
H A DRELEASING.md166 1. [`libceed-sys`](https://crates.io/crates/libceed-sys), which handles building/finding the `libce…
167 2. [`libceed`](https://crates.io/crates/libceed) containing the safe and idiomatic Rust bindings.
180 3. `cargo release publish --execute` to publish the crates to https://crates.io
H A D.readthedocs.yml2 # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
H A DREADME.md498 [codecov-badge]: https://codecov.io/gh/CEED/libCEED/branch/main/graphs/badge.svg
499 [codecov-link]: https://codecov.io/gh/CEED/libCEED/
500 [license-badge]: https://img.shields.io/badge/License-BSD%202--Clause-orange.svg
H A DDoxyfile1550 # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).
1559 # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders).
1568 # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
1576 # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
1583 # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes).
1647 # https://docs.readthedocs.io with more room for contents, but less room for the
H A DMakefile1042 docker run -it --user $(shell id -u):$(shell id -g) --rm -v $(PWD):/io -w /io \
1044 quay.io/pypa/$(WHEEL_PLAT) python/make-wheels.sh
/libCEED/julia/LibCEED.jl/test/
H A Druntests.jl19 io::IOBuffer field
94 io = IOBuffer()
95 summary(io, v)
96 println(io, ":")
97 @witharray_read(a = v, Base.print_array(io, a))
98 s1 = String(take!(io))
360 show(ctxdata.io, MIME("text/plain"), ctxdata.x)
373 @test String(take!(ctxdata.io)) == showstr(ctxdata.x)
/libCEED/doc/sphinx/source/
H A Dreleasenotes.md212 … `libceed-sys` crate out of `libceed` and [publish both on crates.io](https://crates.io/crates/lib…
298 - New Python interface using [CFFI](https://cffi.readthedocs.io/) provides a nearly
H A Dconf.py156 # refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars
/libCEED/doc/papers/joss/
H A Dpaper.bib319 url = "https://cffi.readthedocs.io",
/libCEED/rust/libceed-sys/c-src/
H A DMakefile1042 docker run -it --user $(shell id -u):$(shell id -g) --rm -v $(PWD):/io -w /io \
1044 quay.io/pypa/$(WHEEL_PLAT) python/make-wheels.sh
/libCEED/python/
H A Dceed.py11 import io