| /libCEED/tests/junit-xml/junit_xml/ |
| H A D | __init__.py | 404 def add_error_info(self, message=None, output=None, error_type=None): argument 407 error["message"] = message 411 if message or output: 416 if message: 417 self.errors[0]["message"] = message 423 def add_failure_info(self, message=None, output=None, failure_type=None): argument 426 failure["message"] = message 430 if message or output: 435 if message: 436 self.failures[0]["message"] = message [all …]
|
| /libCEED/julia/LibCEED.jl/src/ |
| H A D | Ceed.jl | 6 message::String field 13 println(io, e.message) 36 message = unsafe_string(c_message) 37 throw(CeedError(fname, lineno, func, ecode, message))
|
| /libCEED/rust/libceed/src/ |
| H A D | lib.rs | 139 pub message: String, field 144 write!(f, "{}", self.message) in fmt() 179 let message = c_str.to_string_lossy().to_string(); in check_error() localVariable 182 panic!("{}", message); in check_error() 184 Err(Error { message }) in check_error() 343 let message = c_str.to_string_lossy().to_string(); in check_error() localVariable 346 panic!("{}", message); in check_error() 348 Err(Error { message }) in check_error()
|
| /libCEED/backends/cuda/ |
| H A D | ceed-cuda-compile.cpp | 42 #define CeedCallSystem(ceed, command, message) CeedCallBackend(CeedCallSystem_Core(ceed, command, m… argument 47 static int CeedCallSystem_Core(Ceed ceed, const char *command, const char *message) { in CeedCallSystem_Core() argument 51 …put_stream != nullptr, ceed, CEED_ERROR_BACKEND, "Failed to %s\ncommand:\n$ %s", message, command); in CeedCallSystem_Core() 60 …0, ceed, CEED_ERROR_BACKEND, "Failed to %s\ncommand:\n$ %s\nerror:\n%s", message, command, output.… in CeedCallSystem_Core()
|
| /libCEED/python/ |
| H A D | ceed.py | 74 message = ffi.new("char **") 75 lib.CeedGetErrorMessage(self._pointer[0], message) 76 raise Exception(ffi.string(message[0]).decode("UTF-8"))
|
| /libCEED/backends/hip/ |
| H A D | ceed-hip-compile.cpp | 241 const char *message = hipGetErrorName(result); in CeedRunKernelDimSharedCore_Hip() local 244 CeedDebug(ceed, "%s\n", message); in CeedRunKernelDimSharedCore_Hip()
|
| /libCEED/benchmarks/ |
| H A D | README.md | 25 For a short help message, use the option `-h`.
|
| /libCEED/ |
| H A D | CITATION.cff | 6 message: "Please cite the following works when using this software."
|
| H A D | RELEASING.md | 45 More frequently, this is amending the commit message on an in-progress commit, after rebasing if ap…
|
| /libCEED/examples/rust/ex1-volume/src/ |
| H A D | main.rs | 272 message: format!( in example_1()
|
| /libCEED/examples/rust/ex1-volume-vector/src/ |
| H A D | main.rs | 290 message: format!( in example_1_vector()
|
| /libCEED/tests/ |
| H A D | junit_common.py | 26 def __init__(self, message): argument 27 super().__init__(message)
|
| /libCEED/examples/rust/ex3-volume/src/ |
| H A D | main.rs | 353 message: format!( in example_3()
|
| /libCEED/examples/rust/ex2-surface/src/ |
| H A D | main.rs | 350 message: format!( in example_2()
|
| /libCEED/examples/rust/ex3-volume-vector/src/ |
| H A D | main.rs | 376 message: format!( in example_3_vector()
|
| /libCEED/examples/rust/ex2-surface-vector/src/ |
| H A D | main.rs | 381 message: format!( in example_2_vector()
|