fumoboy007

Results 53 issues of fumoboy007

(I originally proposed this change [here](https://forums.swift.org/t/introducing-swift-mmio/68525/23).) --- The `@Register` macro generates 3 structs: `Read`, `Write`, and `Raw`. The `Raw` struct is accessed through the `.raw` property of the `Read` and...

mmio

(I originally proposed this change [here](https://forums.swift.org/t/introducing-swift-mmio/68525/23).) --- The raw value of the register can be read/written to by accessing the `.raw.storage` property like so: ```swift cr1.modify { cr1 in cr1.raw.storage...

mmio

(I originally proposed this change [here](https://forums.swift.org/t/introducing-swift-mmio/68525/23).) --- The `@Register` macro is used like so: ```swift @Register(bitWidth: 32) struct CR1 { @ReadOnly(bits: 0..

mmio

In the legacy `Foundation` module, there are a few useful memory-related functions: - [`NSPageSize`](https://developer.apple.com/documentation/foundation/1416725-nspagesize) - [`NSRoundUpToMultipleOfPageSize`](https://developer.apple.com/documentation/foundation/1409178-nsrounduptomultipleofpagesize) - [`NSRoundDownToMultipleOfPageSize`](https://developer.apple.com/documentation/foundation/1409857-nsrounddowntomultipleofpagesize) Are they coming to the new `FoundationEssentials` module?

The `Dockerfile` currently does not have a `HEALTHCHECK` instruction. Users of the Docker image currently need to add it manually (e.g. via Docker Compose). Instead, the `Dockerfile` itself should include...

As far as I can tell, Metaflow does not prevent idle sleep, which means the computer may go to sleep while a long-running flow is still in progress. Instead, Metaflow...

**Describe the bug** A clear and concise description of what the bug is. - [x] I have checked that this issue has not already been reported. - [x] I have...

bug

### Description I need to split my dataset into training and test sets chronologically rather than randomly. In order to do so, I either need to be able to specify...

## Summary Currently, the UI only has a single, light color scheme. It would be great if the UI had both light and dark color schemes and automatically switched between...

The code uses Python’s `print` function to log messages. However, `print` is buffered by default, so messages may not appear immediately or at all.