Displaying 20 results from an estimated 300 matches similar to: "[ win32utils-Support Requests-8957 ] Killing grandchildren?"
2007 May 27
0
[ win32utils-Support Requests-8957 ] Killing grandchildren?
Support Requests item #8957, was opened 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: Closed
>Resolution: Rejected
Priority: 3
Submitted By: Chad Woolley (thewoolleyman)
Assigned to: Nobody (None)
Summary: Killing grandchildren?
Initial Comment:
I am trying
2018 Mar 21
0
how to add a child to a child in XML
Hi,
XML doesn't use the `$` to access child nodes. Instead use either `[name]` to get a list of children of that name or `[[name]]` to get the just the first child of that name encountered in the genealogy. Thus for your example...
> root$child1
NULL
> root[['child1']]
<child1 name1="A" name2="B" name3="C"/>
On the other hand, you might
2018 Mar 22
2
how to add a child to a child in XML
Big thanks. newXMLNode works great. Wonder why it is not included in the documentation.
There is newXMLDoc and newXMLNamespace, but no mention of newXMLNode.
Stephen
From: Ben Tupper [mailto:btupper at bigelow.org]
Sent: Wednesday, March 21, 2018 6:18 PM
To: Bond, Stephen
Cc: r-help
Subject: Re: [R] how to add a child to a child in XML
Hi,
XML doesn't use the `$` to access child nodes.
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=
2006 Jan 29
3
Depot example doesn''t work on my pc
Hi everyone,
I wrote a post last week, but unfortunatly I had no time to try.
First of all I''d like to thank you, for every your answer, and
then I''m sorry for the late of my answer. I REALLY appreciated them.
So I did as you told me, but this problem is still on.
First of all, I changed the server script file as you told me, so I
deleted the first line:
2018 Mar 22
0
how to add a child to a child in XML
Hi,
It's a reasonable question. The answer is that it actually is included, but there are many instances across packages where multiple functions are documented on a single help page. The following brings up such a page... (for XML_3.98-1.9)
> library(XML)
> ?newXMLNode
You can see the same on line...
https://www.rdocumentation.org/packages/XML/versions/3.98-1.9/topics/newXMLDoc
2018 Mar 22
1
how to add a child to a child in XML
Just to clarify and hopefully catch the attention of the maintainer:
The newXMLNode function is not mentioned in:
https://cran.r-project.org/web/packages/XML/XML.pdf
which supposedly describes all functions in the package.
Stephen
From: Ben Tupper [mailto:btupper at bigelow.org]
Sent: Thursday, March 22, 2018 10:40 AM
To: Bond, Stephen
Cc: r-help
Subject: Re: [R] how to add a child to a
2005 Aug 29
2
Where to point the browser to for appdoc documentation
Under windows XP I created a batch file in the depot directory this takes care
of generating the application documentation. The default rake appdoc isn''t
working under windows right now (remove the -T option).
So, where do I point my browser to (so that I can view the new generated
application documentation)? Running gem_server didn''t help so far...
listing doc.bat
rdoc -o
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
2006 Jan 30
2
Finding grandchildren with has_many?
I have a table hierarchy like so:
sites->items->comments
I''d like to be able to do this in templates:
<% for comment in @site.comments.find(:all, order=>''timestamp desc'') %>
I''ve tried all the various permutations of ''has_many'' in site.rb I can
think of, but can''t get it to work. I''m not even sure if
2009 Aug 28
1
S4: names stripped during instantiation of grandchildren of numeric class
Dear All,
A small inconsistency (it's probably not even a buglet):
> setClass("A", contains="numeric")
[1] "A"
> names(new("A", c(a=23)))
[1] "a"
> setClass("B", contains="A")
[1] "B"
> names(new("B", c(a=23)))
NULL
>
This is exactly that kind of behavior S4 was invented for, you
2006 Jan 15
2
removing old rails docs after updating rails
Hi,
When I start gem_server and look at localhost:8808 I can see multiple
version of actionpack, activerecord etc. Is there a command to delete
the old documentation after I update rails?
Thanks,
Peter
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
2011 Apr 30
3
[LLVMdev] LoopInfo are not able to identify some natural loops?
In C code, if a loop is not a natural loop, that means its loop body should
at least have one label, right? In that case, some BB out of the loop can
jump to the loop body, so the loop has more than on entry.
Does LoopInfo guarantee to identify all natural loops? This property is very
important for my pass.
regards,
Bo
On Fri, Apr 29, 2011 at 11:50 PM, Cameron Zwarich <zwarich at
2009 Oct 05
4
Friendly_id and Rake problem.
Hello there,
The plugin friendly_id (http://github.com/norman/friendly_id) has rake
tasks that you can call.
I''m using this plugin as a gem.
I''m trying this: rake friendly_id:make_slugs MODEL=Post
and it is rising this error: Don''t know how to build task
''friendly_id:make_slugs''
So the question is: how do I call a gem''s rake task?
David
2011 Apr 30
0
[LLVMdev] LoopInfo are not able to identify some natural loops?
A natural loop is one whose header dominates all of the nodes in the loop. There is probably some block outside of the loop jumping to a block 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
2006 Jan 12
4
How do you create a tree strucutre with ActiveRecord
I want to build an application that has the concept of administrative
domains. What I mean by this is that administrators have access to
different data, based on what domains they are a member of. The domain
strucutre is hierarchical. Here is an example:
- MLB
- AL
- East
- Yankees
- Red Sox
...
+ Central
+ West
- NL
+ East
+ Central
+ West
Now
2012 May 13
1
R package dependency issues when namespace is not attached
I have always assumed that having a package in the 'Depends' field
would automatically also?import?the namespace. However, it seems that
in R 2.15, dependencies do not become available until the package is
actually?attached?to the searchpath. Is this intended behavior?
The problem appears as follows: Suppose there is a package 'Child'
which?Depends, but does not explicitly
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).
-
2012 Nov 30
1
Baffled with as.matrix
I'm puzzled by as.matrix. It appears to work differently for Surv objects.
Here is a session from my computer:
tmt% R --vanilla
> library(survival)
Loading required package: splines
> ytest <- Surv(1:3, c(1,0,1))
> is.matrix(ytest)
>[1] TRUE
> attr(ytest, 'type')
[1] "right"
> attr(as.matrix(ytest), 'type')
[1] "right"
>