jerry73204

Results 56 issues of jerry73204

The `compile()` complains about duplicate symbols when there are multiple input files with the same name but in different directories. The `cc` names the object file by its source file...

Suppose we have a length stored in `u32`. How could I convert its storage type to `f64`? So far it can be done by this unsafe way: ```rust let u32length...

The [docs.rs](https://docs.rs/rustacuda/) shows the most recent version is 0.1.3, but I cannot find this version in this repository. Are the commits missing or published to another repo I'm not aware...

This patch fixes the compile error in issue #65. The compile error was caused by this line. ```rust let mut cu_uuid = CUuuid { bytes: [0i8; 16] }; ``` The...

The API doc shows that `DataReader::take_next_sample()` can return Ok(None) ([link](https://docs.rs/rustdds/latest/rustdds/dds/no_key/struct.DataReader.html#method.take_next_sample)) but it does not give description for it. I write a simple 1-to-1 publisher-to-subscriber test with keys enabled. The configuration...

This PR implements `Extend` trait on `Mean`, `Variance` and `Skewness`, etc.

I got an headache on aligning diagrams with the CJK fonts. For example, ``` +-------------------+ +------------+ | {d} | | {d} | | /etc/renderd.conf | | httpd.conf | | 區塊快取設定檔...

Sorry to bring the issue #239 back. I'd like to share some thoughts on this issue. The `roi()` or `range()` is unsound because it introduces potential data races regardless of...

The issue arises when I'm by crate with opencv-rust with feature `opencv-4`. Here is my scenario. | item | desc | |-|-| | OS | Ubuntu 18.04 | | OpenCV...

This PR moves commonly used runtime functions, `spawn()`, `block_on()` and `sleep()` into a `zenoh-async-rt` crate, and code to use functions from that crate. It ensures the whole repo runs on...

enhancement