tatref

Results 15 comments of tatref

I'm running into the same issue. Win 10, last updates, Nvidia RTX 2060, drivers 511.79. The issue is happening regardless of window resize and of sprite size. The leaking edge...

You're right, of course the connection couldn't succeed with `sys` :-) So if I understand correctly, the issue lies in the instant client lib? or ODPI? I'll try to override...

Thanks for the kind support. After some digging, I found the following note (an Oracle account is required): 11.2 Oracle Client overrides Application Signal Handler SIGINT (Doc ID 1401454.1) The...

I didn't know about the `oracle::Version::client().unwrap()` function, thanks for the tip!

No, I could no get it There's some things save at web archive, but most is not usable https://web.archive.org/web/20150323075551/https://dev.netzob.org/projects/netzob/wiki There's also some code samples here (french) https://connect.ed-diamond.com/MISC/MISCHS-007/Vivisection-de-protocoles-avec-Netzob

I tried to fix this by doing: `ncollide/src/shape/shape_impl.rs` ``` +#[cfg(feature = "dim3")] +impl Shape for Cylinder { + impl_shape_common!(); + impl_as_support_map!(); +} + ``` I'm not sure about support_map though...

I might take a look at this in early october. Am I missing something, or does the `procedural` module already contain the code to generate cones and cylinders? Also, in...

The function producing the error is: return json_encode($arrRet); Possible fixes: 1) PHP 7.2 introduces the following flags for `json_encode`: `JSON_INVALID_UTF8_IGNORE`, `JSON_INVALID_UTF8_SUBSTITUTE` 2) Use `iconv` prior to `json_encode` (I know nothing...

Also, after checking more closely, it seems that on some of my servers, `Innodb_buffer_pool_reads` is sometime greater than `Innodb_buffer_pool_read_requests` The [mysql doc](http://dev.mysql.com/doc/refman/5.7/en/integer-types.html) tells me that the max value for an...

After some testing, it appears that `Innodb_buffer_pool_read_requests` indeed drops to `0` after hitting the max value. Also, I don't think that the proposed change make any sense because if the...