Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
631 views

How should I clean up hung grandchild processes when an alarm trips in Perl?

I have a parallelized automation script which needs to call many other scripts, some of which hang because they (incorrectly) wait for standard input or wait around for various other things that ...
5
votes
2answers
158 views

Why C# doesn't support base.base?

I tested code like this: class A { public A() { } public virtual void Test () { Console.WriteLine("I am A!"); } } class B : A { public B() { } public override void ...
3
votes
2answers
111 views

Linq to NHibernate - eager load grandchildren but not children

I am using NHibernate 3.2 with FluentNHibernate and Linq to NHibernate. I want use Linq to NHibernate to eager load all of the grandchildren of a collection without having to load the children. For ...
1
vote
1answer
48 views

Salesforce and SOQL : Accessing a grandchild object from the Grandparent

I'm attempting to access a grandchild object. I have 3 Objects, Opportunity, Quote, QuoteLineItems, Opportunity is a Parent to Quote and Quote is a Parent to ...
1
vote
1answer
135 views

Regarding background processes using fork() and child processes in my dummy shell

I'm trying to create a simple shell program in C. What I need it to do is provide the user with a prompt in which they can run other local programs. I can do that part fine, using a fork() in which ...
1
vote
0answers
126 views

Joining nested associations, multiple level

For those of you that know rails and sql well, I'm looking for some good information you could point me to. My query is very similar to the 'Joining Nested Associations' example in this section - ...
0
votes
1answer
117 views

MySQL count of grandchild table returning different results

I am developing a PHP forum. This forum uses four database tables: forum, thread, post, user. On my landing page, I have a listing of all forums, plus columns for latest thread (achieved via join and ...
0
votes
1answer
407 views

List page menu with children and grandchildren in wordpress

Okay so it's been over a year since I made a WordPress theme and now I've started again but I've run into a problem with my menu on pages. This is my current page hierarchy (I'm still only testing ...
0
votes
1answer
148 views

Flex 3: How to Access a Component's Grandchildren

I need to access topBox's grandchildren and determine whether they're buttons or not. This function below (thank you Flextras.com) grabs topBox's immediate children which are the HBoxes. How do I go ...
0
votes
1answer
148 views

wordpress: Displaying a link to latest grandchild on frontpage

I have a page ("testimonials"). It has 3 subpages ("children") : "press", "people", "enterprises". Each of the subpages have their own subpages (grandchildren of "Testimonials"), which are the actual ...