Displaying 20 results from an estimated 29 matches for "grandchild".
2007 Feb 28
1
[ win32utils-Support Requests-8957 ] Killing grandchildren?
...at 2007-02-28 13:47
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=412&aid=8957&group_id=85
Category: win32-process
Group: None
Status: Open
Resolution: None
Priority: 3
Submitted By: Chad Woolley (thewoolleyman)
Assigned to: Nobody (None)
Summary: Killing grandchildren?
Initial Comment:
I am trying to spawn, then kill, a gem_server process. On windows, however, this actually spawns a child cmd instance for the gem_installer.bat file, which then spawns a grandchild ruby process for the gem_server command.
I can''t figure out how to make the grandchil...
2018 Mar 21
0
how to add a child to a child in XML
...lt;- c("att1","att2","att3")
root <- newXMLNode("root", attrs = atts_root)
atts_child <- LETTERS[1:3]
names(atts_child) <- paste("name",1:3,sep="")
child <- newXMLNode("child",attrs = atts_child, parent = root)
atts_grandchild <- letters[1:3]
names(atts_grandchild) <- paste("name",4:6,sep="")
grandchild <- newXMLNode("grandchild",attrs = atts_grandchild, parent = child)
root
#<root att1="val1" att2="val2" att3="val3">
# <child name1="A&q...
2002 May 22
2
rsync: race condition can cause loss of diagnostic output
[This is a copy of the contents of Debian bug report #147842.]
Package: rsync
Version: 2.5.5-0.2
Severity: normal
Cause
-----
- rsync forks a child which in turn forks a grandchild in
main.c:do_recv().
- Diagnostics written by the grandchild need to be read by the child
using read_error_fd() to be handled properly (with the end result
being that they are seen by the user running rsync).
- select() is used to call read_error_fd() only if there is stuff
waiting to be re...
2018 Mar 22
2
how to add a child to a child in XML
...lt;- c("att1","att2","att3")
root <- newXMLNode("root", attrs = atts_root)
atts_child <- LETTERS[1:3]
names(atts_child) <- paste("name",1:3,sep="")
child <- newXMLNode("child",attrs = atts_child, parent = root)
atts_grandchild <- letters[1:3]
names(atts_grandchild) <- paste("name",4:6,sep="")
grandchild <- newXMLNode("grandchild",attrs = atts_grandchild, parent = child)
root
#<root att1="val1" att2="val2" att3="val3">
# <child name1="A&q...
2018 Mar 21
2
how to add a child to a child in XML
I am trying to add a child to a child using XML package in R. the following fails
library(XML)
node1 <- c("val1","val2","val3")
names(node1) <- c("att1","att2","att3")
root <- xmlNode("root", attrs=node1)
node2 <- LETTERS[1:3]
names(node2) <- paste("name",1:3,sep="")
root <-
2005 Jul 06
1
BUG? Draggable''s handle implementation does not match the documents
Hi,
First thanks for your great scripts!
According to the documents:http://script.aculo.us/drag-and-drop
The Draggable''s option ''handle'' value is a string referencing a CSS class.
The first child/grandchild/etc.
element found within the element that has this CSS class will be used as the
handle.
However, in the source code file dragdrop.js line 250, is,
this.handle= options.handle ? $(options.handle) : this.element;
It seems to look for a element with id equals to the handle option''s value...
2018 Mar 22
0
how to add a child to a child in XML
...ot;,"att3")
> root <- newXMLNode("root", attrs = atts_root)
>
> atts_child <- LETTERS[1:3]
> names(atts_child) <- paste("name",1:3,sep="")
> child <- newXMLNode("child",attrs = atts_child, parent = root)
>
> atts_grandchild <- letters[1:3]
> names(atts_grandchild) <- paste("name",4:6,sep="")
> grandchild <- newXMLNode("grandchild",attrs = atts_grandchild, parent = child)
>
> root
> #<root att1="val1" att2="val2" att3="val3">
&g...
2018 Mar 22
1
how to add a child to a child in XML
...lt;- c("att1","att2","att3")
root <- newXMLNode("root", attrs = atts_root)
atts_child <- LETTERS[1:3]
names(atts_child) <- paste("name",1:3,sep="")
child <- newXMLNode("child",attrs = atts_child, parent = root)
atts_grandchild <- letters[1:3]
names(atts_grandchild) <- paste("name",4:6,sep="")
grandchild <- newXMLNode("grandchild",attrs = atts_grandchild, parent = child)
root
#<root att1="val1" att2="val2" att3="val3">
# <child name1="A&q...
2007 May 27
0
[ win32utils-Support Requests-8957 ] Killing grandchildren?
...13:47
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=412&aid=8957&group_id=85
Category: win32-process
Group: None
>Status: Closed
>Resolution: Rejected
Priority: 3
Submitted By: Chad Woolley (thewoolleyman)
Assigned to: Nobody (None)
Summary: Killing grandchildren?
Initial Comment:
I am trying to spawn, then kill, a gem_server process. On windows, however, this actually spawns a child cmd instance for the gem_installer.bat file, which then spawns a grandchild ruby process for the gem_server command.
I can''t figure out how to make the grandchil...
2011 Apr 30
2
[LLVMdev] LoopInfo are not able to identify some natural loops?
Hi,
I found that some loops can not be identified by LoopInfo pass. For example,
the loop at line 3094 of rdopt.c of benchmark 464.h264ref from spec cpu2006
is not a loop or a child (pr grandchild) of any loop in the loop list
generated by LoopInfo pass. The documentation of LoopInfo says that it
identifies natural loops, who have exactly one entry point. But the IR of
this loops shows that it's header only has one BB in preds. Does that mean
LoopInfo can not identify some natural loops?...
2011 Apr 30
3
[LLVMdev] LoopInfo are not able to identify some natural loops?
...ameron
>
> On Apr 29, 2011, at 7:43 PM, Bo Wu <bwu at cs.wm.edu> wrote:
>
> Hi,
>
> I found that some loops can not be identified by LoopInfo pass. For
> example, the loop at line 3094 of rdopt.c of benchmark 464.h264ref from spec
> cpu2006 is not a loop or a child (pr grandchild) of any loop in the loop
> list generated by LoopInfo pass. The documentation of LoopInfo says that it
> identifies natural loops, who have exactly one entry point. But the IR of
> this loops shows that it's header only has one BB in preds. Does that mean
> LoopInfo can not identify...
2006 Jan 12
4
How do you create a tree strucutre with ActiveRecord
...you have to include the child domains has well. So what users
are in domain MLB? The query would be:
SELECT * from domain_users where domain_id IN (1,2,3,4,5)
Then for steinbrenner it would be:
SELECT * from domain_users where domain_id IN (3)
But how do you write a query to know what child, grandchild, etc domains to
use?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060112/0b1e1e32/attachment.html
2006 Dec 22
3
Lumping vs. Splitting (REST)
Hi Everyone,
Working on a REST-based web application, and I need some ammo in
dealing with my supervisors and contractors.
Is it better to:
Method 1:
Take in one large XML-based POST request, which contains 1st, 2nd
and 3rd level elements, and build the associated child and grandchild
objects in the parent controller,
Method 2:
Instead use a number of smaller XML-based POST requests targeted at
the appropriate child resources?
In this example, we have Routes, Stops and Visitors.
Using Method 1, the POST request would be aimed at the Routes
controller, and the routes c...
2011 Apr 30
0
[LLVMdev] LoopInfo are not able to identify some natural loops?
...k in the loop body.
Cameron
On Apr 29, 2011, at 7:43 PM, Bo Wu <bwu at cs.wm.edu> wrote:
> Hi,
>
> I found that some loops can not be identified by LoopInfo pass. For example, the loop at line 3094 of rdopt.c of benchmark 464.h264ref from spec cpu2006 is not a loop or a child (pr grandchild) of any loop in the loop list generated by LoopInfo pass. The documentation of LoopInfo says that it identifies natural loops, who have exactly one entry point. But the IR of this loops shows that it's header only has one BB in preds. Does that mean LoopInfo can not identify some natural loops?...
2012 May 13
1
R package dependency issues when namespace is not attached
...s depends on 'glmnet' which is not
loaded until?bigdata?is attached. The only way to be able to call
lasso.stars?is to actually attach the?bigdata?package:
library(bigdata)
z1 = bigdata::lasso.stars(x,y)
Now to further complicate things, it seems that this problem is
inherited to any 'grandchild' package that?imports, in this case, the
lasso.stars function. I have a hard time finding a good example but I
am sure they are out there.
Is this a bug? I know that it can be avoided by asking package authors
to use Imports instead of Depends, but in practice the majority of the
packages on C...
2012 Nov 30
1
Baffled with as.matrix
...survival expects this behavior and thus fails. I'm
at a loss to figure out how my package got this attribute in the first place, or how it
lost it. Can anyone shed light?
Terry Therneau
PS I'm on vacation for the next few days so will be intermittent with email. (Off to see
my first grandchild!)
---------------------
> sessionInfo()
R version 2.15.2 (2012-10-26)
Platform: i686-pc-linux-gnu (32-bit)
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=C
[5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=C...
2011 May 01
0
[LLVMdev] LoopInfo are not able to identify some natural loops?
...to:bwu at cs.wm.edu>> wrote:
>
>> Hi,
>>
>> I found that some loops can not be identified by LoopInfo pass.
>> For example, the loop at line 3094 of rdopt.c of benchmark
>> 464.h264ref from spec cpu2006 is not a loop or a child (pr
>> grandchild) of any loop in the loop list generated by LoopInfo
>> pass. The documentation of LoopInfo says that it identifies
>> natural loops, who have exactly one entry point. But the IR of
>> this loops shows that it's header only has one BB in preds. Does
>> tha...
2005 Jul 26
0
Dragables "handle" update
Hello,
Either we need to fix the documentation for draggables:
handle (none) Sets whether the element should only be draggable
by an embedded handle. The value is a string referencing a CSS class.
The first child/grandchild/etc. element found within the element that
has this CSS class will be used as the handle.
Or update the code:
this.handle = options.handle ? $(options.handle) : this.element;
As this code is expecting the actual Element object. (which is what
Sortable sends)
I can send in a patch dep...
2019 Oct 26
2
ls permissions format changed in CentOS 8
...ode from the ls source to create a short test
program that doesn't rely on anything external like a file's actual modes.
It's just the code that builds the string from the mode word. It looks like
it mysteriously skips the middle of the routine for no reason when spawned
either as a grandchild through bash or directly via whatever Epsilon uses
to spawn a child process.
It's definitely a spooky Halloween bug!
2002 Oct 02
0
rsync hangs at the end of the work.
...| \_ rsync -v -auxHS --delete --force / /backup/
000 0 19262 22982 9 0 1496 104 nanosl S pts/2 0:00 \_ tail -f /tmp/backup-19243.log
000 0 19779 22982 13 0 1568 536 pipe_w S pts/2 0:00 \_ egrep rsync|RSS|backup
If I kill the grandchild and the child, I get this additionnal log:
usr/lib/locale/kw_GB/LC_NAME => usr/lib/locale/kl_GL/LC_NAME
usr/lib/locale/nl_BE/LC_NAME => usr/lib/locale/kw_GB/LC_NAME
usr/lib/locale/nl_NL/LC_NAME => usr/lib/locale/nl_BE/LC_NAME
usr/lib/locale/nn_NO/LC_NAME => usr/lib/locale/nl_NL/LC_NAME...