Jaro Fietz

Results 72 issues of Jaro Fietz

Currently, `Locale::from_str` only supports dash-delimited locales like `de-DE`. However, often times locales are represented with an underscore like `de_DE`. This PR adds support for allowing both variations to be passed...

Currently, I've only found ways to perform a single measurement at the same time. However, I'd like to measure both the cpu cycles (`rdtscp`) and time (`CLOCK_THREAD_CPUTIME_ID`) at the same...

The rust reference states: > Most primitives are generally aligned to their size, although this is platform-specific behavior. In particular, on x86 u64 and f64 are only aligned to 32...

A-type-layout

I'm using webworkers (based on #285) and want to use `SharedArrayBuffer`. That requires setting the headers `Cross-Origin-Opener-Policy: same-origin` and `Cross-Origin-Embedder-Policy: require-corp`. To allow this configuration during development with `trunk serve`,...

The original functions could not take references to slices and were somewhat limiting in their input. This change makes them more generic by allowing more types to be passed into...

On my skylake processor, if I compile rustc-crypto using `cargo rustc --release -- -C target-cpu=native` `CbcEncryptorProcessor::process_block` will be unrolled and optimized with ymm registers for 64 bytes of input. If...

Similar to #522, which defines `flatten_ok`, there could also be a `flat_map_ok` which operates on an `IntoIter`, applies a function to `T` if the value is `Ok` and flattens the...

fallible-iterator

This feature was already tried to be implemented. However, when sending the request, the body is consumed (due to being `dyn Read`), so it can't be sent again for the...

## Summary of changes On Linux (haven't tested other OS) Firefox seems to drop some key events if they are sent too quickly. One extreme example is stroking SER to...