Displaying 15 results from an estimated 15 matches for "murkier".
Did you mean:
marlier
2016 Nov 01
2
Ambiguity in !tbaa metadata?
...0}
```
I've erased the actual string names to make the ambiguity more
obvious.
Here !2 and !7 are both struct tag nodes. This means that !5 and !9
are both scalar type nodes and !3 and !8 are struct type nodes[1].
However, once we get to the first field of !3, !4 at offset 0, things
become murkier. !4 could either be a read-write scalar node with a !5
as a parent, or be a struct type node containing !5 at offset 0. I
don't see a way to tell the two possibilities apart.
The ambiguity shown above is "fine" since (I think, but I'm not sure)
that containing an object at offs...
2017 Apr 10
2
OT: systemd Poll
...th (in my case) over 30 years in the industry, reading
>> init scripts is trivial and at least we can see what is going on and fix
>> problems quickly. Some vague, poorly documented, data file which is
>> interpreted by a black box is the sort of joy one expects from the
>> murkier regions of Redmond not the sunnier climes of Carolina.
>>
The same here. Could repeat that word for word. I fled what I could to
FreeBSD, but in that process systemd was just the last drop that confirmed
that my earlier decision to abandon Linux to the extent I can was right.
Whatever has to...
2007 May 12
5
[OT] Is data copyrightable?
Dear all,
This is a little bit off-topic, but I was wondering if anyone has any
informed opinion on whether data (ie. a dataset) is copyrightable?
Hadley
2023 Mar 30
1
[PATCH 00/16] virtio-net: split virtio-net.c
...e rq stats can be
accessed by ethtool.
A bunch of stuff seems to be in headers just because of technicalities.
virtio common seems to be a dumping ground with no guiding principle at
all.
drivers/net/virtio/virtnet_virtio.c is weird with
virt repeated three times in the path.
These things only get murkier with time, at the point of reorg
I would expect very logical placement, since
without clear guiding rule finding where something is becomes harder but
more importantly we'll now get endless heartburn about where does each new
function go.
The reorg is unfortunately not free - for example git...
2017 Apr 09
22
OT: systemd Poll
According to "Arthur Schopenhauer":
"All truth passes through three stages.
First, it is ridiculed.
Second, it is violently opposed.
Third, it is accepted as being self-evident."
I must admit that I skipped through the first and second stages - I
never found creating init scripts a joy and instead opted to write my
own scripts that I launched via inittab. As
2023 Mar 31
1
[PATCH 00/16] virtio-net: split virtio-net.c
...me, common will indeed become a dumping
> group. This is something we should pay attention to after this.
>
>
> > drivers/net/virtio/virtnet_virtio.c is weird with
> > virt repeated three times in the path.
>
> Any good idea.
>
> >
> > These things only get murkier with time, at the point of reorg
> > I would expect very logical placement, since
> > without clear guiding rule finding where something is becomes harder but
> > more importantly we'll now get endless heartburn about where does each new
> > function go.
> >
> &...
2023 Mar 31
1
[PATCH 00/16] virtio-net: split virtio-net.c
...group. This is something we should pay attention to after this.
> >
> >
> > > drivers/net/virtio/virtnet_virtio.c is weird with
> > > virt repeated three times in the path.
> >
> > Any good idea.
> >
> > >
> > > These things only get murkier with time, at the point of reorg
> > > I would expect very logical placement, since
> > > without clear guiding rule finding where something is becomes harder but
> > > more importantly we'll now get endless heartburn about where does each new
> > > function...
2017 Apr 09
0
OT: systemd Poll
...f proposition 3.
For those of us with (in my case) over 30 years in the industry, reading
init scripts is trivial and at least we can see what is going on and fix
problems quickly. Some vague, poorly documented, data file which is
interpreted by a black box is the sort of joy one expects from the
murkier regions of Redmond not the sunnier climes of Carolina.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: OpenPGP digital signature
URL: <http://lists.centos.org/pipermail/centos/attachments/201...
2017 Apr 10
0
OT: systemd Poll
...r those of us with (in my case) over 30 years in the industry, reading
> init scripts is trivial and at least we can see what is going on and fix
> problems quickly. Some vague, poorly documented, data file which is
> interpreted by a black box is the sort of joy one expects from the
> murkier regions of Redmond not the sunnier climes of Carolina.
>
>
+1
>
>
> _______________________________________________
> CentOS mailing list
> CentOS at centos.org
> https://lists.centos.org/mailman/listinfo/centos
--
Stephen Clark
*NetWolves Managed Services, LLC.*
Director...
2023 Mar 31
1
[PATCH 00/16] virtio-net: split virtio-net.c
...ion to after this.
> > >
> > >
> > > > drivers/net/virtio/virtnet_virtio.c is weird with
> > > > virt repeated three times in the path.
> > >
> > > Any good idea.
> > >
> > > >
> > > > These things only get murkier with time, at the point of reorg
> > > > I would expect very logical placement, since
> > > > without clear guiding rule finding where something is becomes harder but
> > > > more importantly we'll now get endless heartburn about where does each new
> >...
2018 May 14
5
Rotates, once again
...n regular shifts to work on bit rotate expressions as well. Adding a new primitive would mean that a whole bunch of optimization passes would need to know how to deal with it (or else they might lose on optimization opportunities).
Variable-distance rotates
=========================
Things become murkier when we consider not just rotates by a compile-time constant, but also rotates where the amount is determined at run time.
For one thing, it's not immediately obvious how to write a well-defined corresponding C expression: the most "natural" version (for a 32-bit left rotate) is
(...
2004 Jun 14
1
Copyright issues question
Hi to the Devel list,
I am at present developping a little Excel add-in that would consist into a
translation of John Fox RCommander package.
The idea is to have R code that recreates within Excel the menus and some
VBA part that handles data input and outputs (those beeing redirected to
HTML and imported within Excel in a user-transparent way).
Actualy, a first beyta version of this add-in
2018 May 15
0
Rotates, once again
...> expressions as well. Adding a new primitive would mean that a whole bunch
> of optimization passes would need to know how to deal with it (or else they
> might lose on optimization opportunities).
>
> Variable-distance rotates
> =========================
>
> Things become murkier when we consider not just rotates by a compile-time
> constant, but also rotates where the amount is determined at run time.
>
> For one thing, it's not immediately obvious how to write a well-defined
> corresponding C expression: the most "natural" version (for a 32-bit l...
2006 Jul 26
15
Pupppet Ruby DSL
I constantly get told I should just create a DSL in Ruby, instead of
having a separate, custom language. This has, unsurprisingly, come
up multiple times here at OSCON.
So, I decided I''d see if I could hack something up and see how it
looked. This is the first thing I could come up with in terms of the
basic functionality:
#!/usr/bin/ruby
class Base
file "/etc/passwd",
2018 Jul 17
3
[PATCH 1/5] drm/nouveau: Prevent RPM callback recursion in suspend/resume paths
On Tue, Jul 17, 2018 at 02:24:31PM -0400, Lyude Paul wrote:
> On Tue, 2018-07-17 at 20:20 +0200, Lukas Wunner wrote:
> > Okay, the PCI device is suspending and the nvkm_i2c_aux_acquire()
> > wants it in resumed state, so is waiting forever for the device to
> > runtime suspend in order to resume it again immediately afterwards.
> >
> > The deadlock in the stack