Displaying 5 results from an estimated 5 matches for "thown".
Did you mean:
shown
2024 Dec 08
1
forgot to run as root...
...rsync -avAX . root at 192.168.1.141:/home/`
Only to discover - obviously in hindsight - that I'd failed to run as
root and now the whole of /home (appears) to belongs to `admin` (a user
that doesn't exist on mymachine).
So, my strategy:
1/ Assume that the wrong owner is the only problem thown up by the above
- is that assumption correct?
2/ Recursively chown each users home directory to their corect owner;
3/ Use borg/ pika to mount a recent backup and diff the ownership
between the backup and respective home directory to discover anything
owned by something other than the respective...
2018 Mar 06
1
[cfe-dev] Why is #pragma STDC FENV_ACCESS not supported?
..."rounding mode" and
> "exception behavior" metadata, but I don't really see how that maps
> onto the behavior of instructions as described above. Also, right now
> the back-end doesn't even *get* at that data in the first place, since
> it is just thown away when lowering the intrinsics to STRICT_... nodes.
> In fact, I'm also not sure how the front-end is even supposed to be
> *setting* those metadata flags -- is the compiler supposed to track
> calls to fesetround and the like, and thereby determine which rounding
> a...
2018 Jan 09
2
[cfe-dev] Why is #pragma STDC FENV_ACCESS not supported?
I think we're going to need to create a new mechanism to communicate strict FP modes to the backend. I think we need to avoid doing anything that will require re-inventing or duplicating all of the pattern matching that goes on in instruction selection (which is the reason we're currently dropping that information). I'm out of my depth on this transition, but I think maybe we could
2018 Feb 09
1
[cfe-dev] Why is #pragma STDC FENV_ACCESS not supported?
...ed intrinsics? They do have "rounding mode" and "exception
behavior" metadata, but I don't really see how that maps onto the behavior
of instructions as described above. Also, right now the back-end doesn't
even *get* at that data in the first place, since it is just thown away
when lowering the intrinsics to STRICT_... nodes. In fact, I'm also not
sure how the front-end is even supposed to be *setting* those metadata
flags -- is the compiler supposed to track calls to fesetround and the
like, and thereby determine which rounding and exception modes apply to an...
2018 Jan 09
5
[cfe-dev] Why is #pragma STDC FENV_ACCESS not supported?
Andrew Kaylor wrote:
>In general, the current "strict FP" handling stops at instruction
>selection. At the MachineIR level we don't currently have a mechanism
>to prevent inappropriate optimizations based on floating point
>constraints, or indeed to convey such constraints to the backend.
>Implicit register use modeling may provide some restriction on some