Displaying 20 results from an estimated 20 matches for "bedtime".
2008 Feb 12
1
measuring sleep time in synchronization objects
...for which each thread in my application sleeps, blocked on a
semaphore, i.e., as a result of sem_wait() call. In order to measure this, I
wrote a script with sched:::sleep and sched:wakeup probes enabled, as shown
below:
sched:::sleep
/execname == "myexecname"/
{
ustack();
bedtime[curlwpsinfo->pr_addr,curlwpsinfo->pr_stype] = walltimestamp;
}
sched:::wakeup
/bedtime[args[0]->pr_addr,args[0]->pr_stype]/
{
@sleeptime[execname,args[0]->pr_lwpid,args[0]->pr_addr,args[0]->pr_stype] =
sum(walltimestamp - bedtime[args[0]->pr_addr,args[0]->pr_sty...
2011 Jul 01
1
beginner question - effective way to chart sleep habits
Hi - beginning R user question here - each day, over the course of several
months, I've tracked the time I go to bed, the time I wake up, and my hours
spent sleeping. What would be a good way to display this information? I
think it would be ideal to show something resembling a bar and whisker graph
for each day that would show the interval of hours spent asleep (or perhaps
just a bar
2004 Sep 16
2
[LLVMdev] Files to lib/System/Win32
Uh, use this version instead... (It's way past my bedtime :))
On Thu, 16 Sep 2004 01:05:52 -0700
Jeff Cohen <jeffc at jolt-lang.org> wrote:
> Here's the free-of-copyrighted-Microsoft-code version of Signals.cpp.
>
> Actually, I'm not sure if the original would work on NT/2000/XP. It was doing
> stuff that's only supposed...
2006 Apr 03
4
argv[0] --- again
dear R group: I have the probably fairly common problem that I would
like to have one code.R file do different things if it is invoked from
a symbolic link, which should be easy to uncover.
$ ln -s code.R code-0.R
$ ln -s code.R code-1.R
$ R CMD BATCH code-1.R
what needs to be in code-1.R to put code-1.r into a character vector?
help appreciated.
regards, /ivo welch
PS : I read
2004 Sep 15
1
Objects in PHP4
...if I add `,1'
after `"a"' it runs ok.
Here is where the segfault happens, in the wrapper for Document::add_term:
convert_to_string_ex(args[1-argbase]);
argbase is 1, as is expected for a method on an object I think.
I can't see what's going on, and it's way past my bedtime so I'm giving
up for now.
Incidentally, I've noticed we can probably easily add a "xapian_" prefix
to all the PHP wrappers by running the glue file through sed!
Cheers,
Olly
2004 Sep 16
0
[LLVMdev] Files to lib/System/Win32
Here's the free-of-copyrighted-Microsoft-code version of Signals.cpp.
Actually, I'm not sure if the original would work on NT/2000/XP. It was doing
stuff that's only supposed to be done on Win95/98/ME.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Signals.cpp
Type: application/octet-stream
Size: 20861 bytes
Desc: not available
URL:
2004 Sep 16
0
[LLVMdev] Files to lib/System/Win32
...e:
I made the warning about caller calling LeaveCriticalSection a little
more prominent. Patch is here:
http://mail.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20040913/018371.html
Reid.
On Thu, 2004-09-16 at 01:08, Jeff Cohen wrote:
> Uh, use this version instead... (It's way past my bedtime :))
>
> On Thu, 16 Sep 2004 01:05:52 -0700
> Jeff Cohen <jeffc at jolt-lang.org> wrote:
>
> > Here's the free-of-copyrighted-Microsoft-code version of Signals.cpp.
> >
> > Actually, I'm not sure if the original would work on NT/2000/XP. It was doing
&...
2004 Dec 06
0
What is the most useful way to detect nonlinearity in lo
...s(resid(glm(y~x,binomial))~x),se=T)
> >> >> matplot(x,cbind(xx$fit, 2*xx$se.fit, -2*xx$se.fit),pch=20)
> >> >>
> >> >> Not sure my money isn't still on the splines, though.
> > .....
> >> > Serves me right for posting way beyond my bedtime...
> >>
> >> Hi Peter,
> >>
> >> Yes, the above is certainly misleading (try it with 2000 instead
> >> of 500)! But what would you suggest instead?
> >
> > (I did and this little computer came tumbling down...).
>
> So did mine --...
2004 Sep 16
4
[LLVMdev] Files to lib/System/Win32
Here's the Win32 version of Signals.cpp.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Signals.cpp
Type: application/octet-stream
Size: 20861 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20040915/d3b43059/attachment.obj>
2015 Sep 13
3
no login with MySQL
Christian Kivalo <ml+dovecot at valo.at> schrieb am 13.09.15 um 22:08:04 Uhr:
> > I think the query-string f?r MySQL would overwrite this mail_location,
> > right? But how do I define it in the query?
>
> yes thats how it should work but your query (looking at the query result
> from your first email) overwrites the mail_location with
>
2006 Jun 05
4
Powerware 5110, SuSE10.1 & USB
Dear Nutters,
I am trying to get NUT as supplied with SuSE 10.1 working and I think I have a
USB problem, possibly due to some missing startup scripts concerning
permissions. The machine sees the USB device as per /var/log/messages:
Jun 5 16:28:27 silver-server kernel: usb 2-1: new low speed USB device using
uhci_hcd and address 7
Jun 5 16:28:27 silver-server kernel: usb 2-1: new device
2008 Jan 22
6
How to delete files with specical characters in the name?
Hi,
I've got an odd situation here. Somehow, I find myself with two files that
start with the - character.
[eric at apollo mysql]$ ls -l
total 93348
-rw-r--r-- 1 mysql mysql 9273344 Nov 13 19:03 -N=2007-11-08
-rw-r--r-- 1 mysql mysql 38879232 Nov 13 19:02 --newer=2007-11-08
Don't ask how they were created; something went wrong with a script at some
point.
My problem is that I am
2016 Dec 20
3
Unexpected I(NULL) output
Hi all,
I believe there is an issue with passing NULL to the function I().
class(NULL) # "NULL" (as expected)
print(NULL) # NULL (as expected)
is.null(NULL) # TRUE (as expected)
According to the documentation I() should return a copy of its input
with class "AsIs" preprended:
class(I(NULL)) # "AsIs" (as expected)
print(I(NULL)) # list() (not expected!
2002 Apr 03
2
Peer-to-peer audio codec
A friend and I were recently talking about the possible
downfall of Internet radio, and as everyone seems to these days, decided
that a nice solution would be to set up a P2P broadcasting solution.
However, streaming has a completely different set of requirements than
file sharing, with bandwidth and QOS become much larger issues. As such,
we started to realize that a new audio compression scheme
2010 Aug 22
6
CentOS or other Linux Internet Router/Gateway
Hi Everyone,
I've got kids who are growing older and I want to build a Linux box to
filter Internet access. I've got six computers on the Internet, plus
the laptops -- most run Windows. I'm not sure if it's called a router
or gateway or...? I don't mind doing the leg work, I just don't know
where to start. I'm pretty sure I'm *not* looking for a web server
(though
2005 Jul 19
12
Best VoIP provider
It does not look like Nufone is still in business, judging from the
content on their site, which is very little. There is not even a
configuration document to download, to connect to their network.
The rates file is only for US/Canada calling. No international
rates on this rates.csv file.
I have signed up with a $5.00 account with them way back in November
2004. After signup, I havent received
2004 Aug 06
0
Live from Mongolia
...three years.
In his August 2000 Musing, Mark figured if he could just listen to
Philadelphia Phillies baseball from an in-dash Internet Radio system in his
car, then the time had come for him pour his energies into the next great
adventure perhaps helping the Phillies out with more than just bedtime
prayers.
Like Mark, I too spent my early years listening to AM radio. While I was
too far from Philadelphia to get a decent signal, the New York stations
came in clear as a bell from my room in Northern New Jersey. From the
nightly ramblings of WOR’s Jean Shepherd, I moved on to Ham Radio ...
2005 Jul 16
28
wxruby (was: Some questions)
Roy Sutton wrote (on the FreeRIDE list):
> Really? That''s interesting. I haven''t checked out WxRuby but I would
> be much happier using something that interfaces to the underlying
> operating system''s widgets.
As a member (and former leader) of the wxruby team, I thought I would
share the state of the wxruby world.
The current release is 0.6, and it has
2008 May 09
14
winetricks vcrun2005 does not appear to install system32 dll
I'm a newbie, sorry in advance :p I have been searching here and reading threads and can't seem to find an answer, hence this post. I saw a nice example of what I am trying to do so I'll copy that format and perhaps it will illustrate better than I can explain. I'm using Ubuntu Hardy, 64bit.
My only goal currently is to install the redist, using winetricks is the proper method
2005 Mar 21
2
Coule really use some help (Samba PDC)
First email was rejected due to size so the log files are inline in the msg now..
I have NEVER had so much trouble with a
samba PDC before. I need to turn in my unix admin license, this is
pathetic...
Anyway, I am here. When trying to join a domain with the administrator
account I get "no mapping between account name and security ID's was done"
And the joining fails...
All the