Displaying 20 results from an estimated 63 matches for "subcomponent".
Did you mean:
subcomponents
2016 May 05
3
Yet another filter question
...l at gmx.de>> wrote:
>
> + *.git/.git/*
> - *.git/
>
>
> From the man page near the start of the "INCLUDE/EXCLUDE PATTERN RULES"
> section:
>
> /Note that, when using the --recursive (-r) option (which is implied
> by -a), every subcomponent of every path is visited from the top
> down, so include/exclude patterns get applied recursively to each
> subcomponent’s full name (e.g. to include "/foo/bar/baz" the
> subcomponents "/foo" and "/foo/bar" must not be excluded). The
> exclu...
2016 May 05
0
Yet another filter question
...quot;depth first" (v.s.
"breadth first") being the standard idiom when talking about
this tree traversal strategy. It also matches up with some
of the vocabulary (e.g. "deeper") used later in the paragraph.
Er, ok. It could also say "component" instead of "subcomponent",
in the first instance. And "to the full name of each node in the
filesystem's tree" instead of "to each subcomponents full name",
in the second instance. And eliminate "the subcomponents" in the
third instance.
Patch appended. (Which does not perfectly ma...
2016 May 03
4
Yet another filter question
Hello,
Since the very first day I've been using rsync - some 15 years ago -
the filtering rules caused great grieve. Their behaviour is just not
the way I'd expect it be be and as I read the manpage. Usually I end
up with some hand-written recipes, carefully documented,y including all
the gotchas.
This time however I failed and I see no other way than to ask for
advice.
Given the
2009 Dec 24
2
Include and Exclude
...usr/home /backup/usr/
I want to backup ONLY the /usr/home/*/Maildir directories. I don't want any other files from any other directories to be transferred.
I can see in the man page where this is a problem:
when using the --recursive (-r) option (which is implied by -a), every
subcomponent of every path is visited from the top down, so include/
exclude patterns get applied recursively to each subcomponent's full
name (e.g. to include "/foo/bar/baz" the subcomponents "/foo" and
"/foo/bar" must not be excluded).
It then gives...
2008 Jan 23
0
[Fwd: Re: WBC subcomponents.]
Hi Nikita -
This looks excellent, except that I don''t feel we have a good basis for
the estimates yet.
This has major architectural value as it gives a component breakdown and
should be recorded as such on the architecture wiki. When you do these
component breakdowns it is important to identify what interfaces are
offered and used by the components (this is the static aspect of
2015 Nov 19
4
An Update on the C API
...break the C API on the release branch with patches that go on that
branch - in general.
Exception: If we fix an unintentional C API break that will keep us
consistent with both the previous and next release.
Including new things into the API:
We’re going to adopt a policy of “if a particular LLVM subcomponent has a C
API already included, then expanding that API is acceptable”, but we’re
also going to institute a better policy of “please test the API that you’ve
just expanded”. Hopefully this will get the C API better tested as time
goes on to remove accidental breakage so that any time we break the C A...
2008 Jan 31
1
WBC subcomponents.
Hello
On Wed, 2008-01-23 at 00:10 +0300, Nikita Danilov wrote:
> Hello,
>
> below is a tentative list of tasks into which WBC effort can be
> sub-divided. I also provided a less exact list for the EPOCH component,
> and an incomplete list for the STL component.
>
> WBC tasks are estimated in lines-of-code with the total of (9100 + 3000)
> LOC, where LOC is a non-comment,
2014 Jun 12
0
EVoC Proposal: REclock - Reverse-engineer and implement NVA3/5/8 Voltage- and Frequency Scaling in Nouveau
...n support running at a variety of different
> performance "levels". This aids in reducing the power demand and heat
> dissipation of the devices when idle, while unleashing full potential
> under load. A performance level comprises the clock speed and voltage
> for several subcomponents in the GPU. The difference between the
> lowest and highest performance level can be as much as a factor 10 in
> clock speed.
>
> Despite hard work from many developers, reclocking support in Nouveau
> still has quite a few loose ends: engine reclocking is mostly in place
> b...
2015 Nov 20
3
An Update on the C API
...>> that branch - in general.
>> Exception: If we fix an unintentional C API break that will keep us
>> consistent with both the previous and next release.
>>
>> Including new things into the API:
>>
>> We’re going to adopt a policy of “if a particular LLVM subcomponent has a
>> C API already included, then expanding that API is acceptable”, but we’re
>> also going to institute a better policy of “please test the API that you’ve
>> just expanded”. Hopefully this will get the C API better tested as time
>> goes on to remove accidental breaka...
2017 May 12
2
[Cellar] FLAC Markdown
Hi all,
And cc'ing flac-dev.
> On May 10, 2017, at 12:15 PM, Dave Rice <dave at dericed.com> wrote:
>
> Hi Andrew,
>
>> On May 10, 2017, at 11:19 AM, Andrew James Weaver <weevz at uw.edu <mailto:weevz at uw.edu>> wrote:
>>
>> Hello all!
>>
>> In a previous discussions on this list about people interested in working on the FLAC
2017 Jul 25
3
syslog from chrooted environment
On 7/24/2017 8:39 PM, Nico Kadel-Garcia wrote:
>
> Why are the targets of the hardlinks evaporating on rebooting? Is that
> a FreeBSD'ism?
Its when syslogd stops/starts. The hardlinks need to be recreated for
some reason.
---Mike
--
-------------------
Mike Tancsa, tel +1 519 651 3400
Sentex Communications, mike at sentex.net
Providing Internet services since 1994
2020 Mar 26
2
Question about local migration between containers
...t
we get this error
{"component":"virt-launcher","level":"error","msg":"internal error: Attempt
to migrate guest to the same host
32323136-3731-4247-3831-303946353338","pos":"virNetClientProgramDispatchError:172","subcomponent":"libvirt","thread":"44",
"timestamp":"2020-03-25T10:41:12.123000Z"}
Is there a way to work around this please ?
it comes of course from
https://github.com/libvirt/libvirt/blob/master/src/qemu/qemu_migration_cookie.c#L1254
(not sure what ver...
2003 May 01
4
List of lists? Data frames? (Or other data structures?)
...If speed is important, would a list of lists be faster than a data
frame? (I know, for example, that scan is supposed to be faster than
read.table, but I don't know if that is related to issues with data
frames.)
My problem with a list of lists, though, is that if I want to access
all the bb subcomponents, a naive method like this one failed:
y <- c( "a", "b" )
xprime[[ y ]]$bb (Does not work)
So to get all the bb subcomponents I seem to need to loop, which may
slow things down (presumably). But maybe people here know of a way.
Finally what would be the "best" w...
2005 Nov 27
2
trying to understand --include and --exclude
I was under the impression that --include and --exclude worked by matching
patterns in the order given, and whichever matched first, whether that was
an include or exclude determined the action for that file. I have a big
directory from which I am attempting to transfer selected files. I want
all files where the first level directory is anything, the second level
directory is "2005"
2017 May 22
0
[Cellar] FLAC Markdown
...tic similarity to the original HTML rendition on the xiph.org site. In order to get the structural data (such as the tables at the end of https://xiph.org/flac/format.html) to fit in plain text RFC style, the tables were dissected a bit to separate value lists from structural lists. In this way the subcomponents and defined in their own sections instead of the prior strategy of detailing lists and pseudocode within large tables. For instance see the original rendition of the frame header documentation from https://xiph.org/flac/format.html#frame_header compared to the dissected version which gives the sub...
2017 Jun 06
3
[Cellar] FLAC Markdown
...original HTML rendition on the xiph.org site. In order to get the
> structural data (such as the tables at the end of https://xiph.org/flac/
> format.html) to fit in plain text RFC style, the tables were dissected a
> bit to separate value lists from structural lists. In this way the
> subcomponents and defined in their own sections instead of the prior
> strategy of detailing lists and pseudocode within large tables. For
> instance see the original rendition of the frame header documentation from
> https://xiph.org/flac/format.html#frame_header compared to the dissected
> version...
2019 Oct 17
2
Transient permission denied errors when sending audit logs
...end audit
message virt=kvm
vm=\"kubevirt-test-default_testvmit2pqrkrlrwbhptcjcs4n67jn6pjqvmtd7pkrpdmkrl5sldzs4rxr9zdg8m45jxz\"
uuid=56a33283-f6d7-4002-b188-1fed83186545 vm-ctx=+107:+107
img-ctx=+107:+107 model=dac: Permission
denied","pos":"virAuditSend:141","subcomponent":"libvirt","thread":"30","timestamp":"2019-10-08T23:58:40.651000Z"}
We recently switched in kubevirt to a dedicated selinux policy and remove
the general "privileged" flag from the containers where we run libvirt in.
This is very lik...
2020 Sep 22
2
consuming pre-created tap - with multiqueue
...the libvirt code (we're using libvirt 6.0.0), I
see this on the logs (immediately before the error):
{"component":"virt-launcher","level":"info","msg":"Enabling
IFF_VNET_HDR","pos":"virNetDevProbeVnetHdr:190","subcomponent":"libvirt","thread":"33"
,"timestamp":"2020-09-22T10:34:29.335000Z"}
I do not understand how it can try to set the VNET_HDR flag, since I
have not set it when I created it, which, as per [0] should only
happen when requested. Here's the ta...
2003 Feb 18
1
coplot with boxplot panel function
I am attempting to construct a conditioning plot with a pair
of boxplots within each panel. The resulting plot has panels
misplaced. One misplaced panel is on top of the subcomponent
describing ranges of the conditioning variable. This is what I did:
X <- cut(rnorm(200), 2)
Y <- runif(200)
Z <- rnorm(200)
given.Z <- co.intervals(Z, number = 4, overlap = .25)
coplot(Y ~ X | Z, given.v = given.Z,
panel = function(x, y, ...){boxplot(y ~ x)})
Any suggestions as...
2004 Jan 05
0
No subject
"when used with -r (which is implied by -a),
every subcomponent of every path is visited from top down,
so include/exclude patterns get applied recursively to
each subcomponent."
"...base of the tree."
I guess I didn't make the connection from these phrases that the base of the
tree is not the beginning of a path
(/...