similar to: connecting to process?

Displaying 20 results from an estimated 400 matches similar to: "connecting to process?"

2007 Jun 22
1
connecting to running process possible?
Hello, i'm trying to find a more modern system to reproduce the functionality that was available through the Histoscope program (from Fermilab). Namely, the capability of connecting to a running process and having plots update in realtime in response to new data. Is this possible with R? Thank you, Charles Cosse [[alternative HTML version deleted]]
2013 Jan 29
6
[Bug 60020] New: Resuming Dell Precision M70 crashes
https://bugs.freedesktop.org/show_bug.cgi?id=60020 Priority: medium Bug ID: 60020 Assignee: nouveau at lists.freedesktop.org Summary: Resuming Dell Precision M70 crashes QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All) Reporter: rcbixler at nyx.net
2009 Mar 23
2
[ANNOUNCE]: Release of iptables-1.4.3
The netfilter coreteam presents: iptables version 1.4.3 the iptables release for the 2.6.29 kernel. It has been some time since the last release and we've had a lot of changes all over the place. Besides the usual fixes and cleanups, we have: - numerous documentation updates from Jan Engelhardt and others - a set of changes to move some of the iptables functionality to a shared
2009 May 27
0
[LLVMdev] Building LLVM with cmake on FreeBSD
Paul Melis wrote: > You assume that the makefiles CMake produces need to do some kind of > conditional stuff. I don't think they do anything like that, as that has > already been resolved on a higher level, i.e. with CMake's own little > language used in the CMakeLists.txt files. In fact, the generated > makefiles DO seem to be usable by both GNU make and BSD make. >
2003 Sep 03
2
Can get no STABLE
Hello all, well, the first problem i got is lsof wont work. I got the message "lsof: WARNING: compiled for FreeBSD release 4.3-RELEASE; this is 4.8-STABLE." Then I tried to to cvsup and rebuild world. The file i used is /usr/share/examples/cvsup/stable-supfile and tag is RELENG_4. After a few hours i got 4.9-PRERELEASE :( Next time i used RELENG_4_8 tag and got 4.8-RELEASE-p4 :((
2018 Mar 03
2
lmrob gives NA coefficients
Dear list members, I want to perform an MM-regression. This seems an easy task using the function lmrob(), however, this function provides me with NA coefficients. My data generating process is as follows: rho <- 0.15 # low interdependency Sigma <- matrix(rho, d, d); diag(Sigma) <- 1 x.clean <- mvrnorm(n, rep(0,d), Sigma) beta <- c(1.0, 2.0, 3.0, 4.0) error <- rnorm(n = n,
2010 Oct 13
2
Coin Toss Simulation
I am trying a simple toin coss simulation, of say 200 coin tosses. The idea is to have a data frame like so: Experiment# Number_Of_Heads 1 104 2 96 3 101 So I do: d <-data.frame(exp_num=c(1,2,3)); /* Just 3 experiments to begin with */ d$head_ct <-sum(sample(0:1,200,repl=TRUE)); d; exp_num head_ct 1
2019 Jul 03
12
[Bug 111044] New: Resume up from suspend sometimes freezes system (Optimus/Nouveau)
https://bugs.freedesktop.org/show_bug.cgi?id=111044 Bug ID: 111044 Summary: Resume up from suspend sometimes freezes system (Optimus/Nouveau) Product: xorg Version: git Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severity: normal Priority: medium Component:
2008 May 14
5
RailsConf vs. My MacBook's Battery. ( Power Outlet Availability )
So my Macbook''s battery sucks... and I''m thinking of grabbing a new one, I''m curious how the availability of power outlets have been at RailsConfs. For those who have gone before, was it hard to find an outlet to plug into? Are they mindful of this? I hope so. Thanks in advance. --~--~---------~--~----~------------~-------~--~----~ You received this message because
2008 Jan 10
14
Keeping Camping going
Hello all, I''m not sure who Camping''s steward is at this point(zimbatm? _why?), but I haven''t seen much activity in quite some time. I really like Camping, and I understand open source projects can fall by the wayside. So, I''d be willing to take over maintenance and releasing. I have experience maintaining my own open source projects, and a history of
2011 Jul 07
1
[LLVMdev] Dynamic Optimization selection for individual functions
Hi All, I am trying to write a machine learning algorithm that would predict a good optimization to apply to a given function. I wanted to perform this by modifying the list of optimizations applied by the FPPassManager based on some dynamic data. At present I was trying to do this by modifying the FPPassManager::runOnFunction(Function) implementation. However this is causing the following error:
2005 Jun 17
3
New Web Forum
Dear List members, After some consideration and chats with several members on IRC, I have proposed running a web forum for icecast, an idea which seems to have been received well by everyone so far. The forum can be found at http://forum.icecast.org/ Questions & Answers welcome :-) Stephen forum: EvilOverlord IRC: J_Bullet
2009 May 25
2
[LLVMdev] Building LLVM with cmake on FreeBSD
Chuck Robey wrote: >>>> >>>> >>> Uh? My FreeBSD installment has `make' and no `gmake'. `make' is indeed >>> BSD make. >>> > > In your FreeBSD system, do an "ls -d /var/db/pkg/gmake*" and see if any > directory shows up. If it does, then the only argument you can have is what > name you
2008 May 13
1
[LLVMdev] Flamewars!
Wow, I think that was the first really potent flamewar we've had on llvmdev. Looking on the positive side, I think this shows that the llvm community is growing and drawing interest from new people with new perspectives. This is a good thing. I want to thank everyone who was courteous in their response. As others have said, it is really important to be polite and try to be
2016 Mar 15
4
Regression in strptime
>>>>> peter dalgaard <pdalgd at gmail.com> >>>>> on Sat, 12 Mar 2016 19:11:40 +0100 writes: > OK, .Internal is not necessary to reproduce oddity in this area. I also see things like (notice 1980) >> strptime(paste0(sample(1900:1999,80,replace=TRUE),"/01/01"), "%Y/%m/%d", tz="CET") ............... >
2012 Apr 09
4
guest os time drift wild
HI, guys Recently,I met a problem. Xen''s version: 3.4.3 guest os:redhat 4.8 32bit And xen.independent_wallclock = 1 has been set. The time of guest os change to be fast suddenly, about 2000 second. because the change is too wild, ntp didn''t sync to the ntp server''s time. my application is dependent on the systme time. And this occurs a lot of times. I don''t
2018 Mar 04
2
lmrob gives NA coefficients
Thanks for your reply. I use mvrnorm from the *MASS* package and lmrob from the *robustbase* package. To further explain my data generating process, the idea is as follows. The explanatory variables are generated my a multivariate normal distribution where the covariance matrix of the variables is defined by Sigma in my code, with ones on the diagonal and rho = 0.15 on the non-diagonal. Then y
2018 Mar 04
0
lmrob gives NA coefficients
What is 'd'? What is 'n'? On Sun, Mar 4, 2018 at 12:14 PM, Christien Kerbert < christienkerbert at gmail.com> wrote: > Thanks for your reply. > > I use mvrnorm from the *MASS* package and lmrob from the *robustbase* > package. > > To further explain my data generating process, the idea is as follows. The > explanatory variables are generated my a
2012 Feb 03
1
Using {tabularx} latex package with the {xtable} package?
I am trying to solve the problem of having a latex table (produced using the xtable <http://cran.r-project.org/web/packages/xtable/index.html>, then inserted to a latex file using Sweave), exceeding the margins of my LaTeX document. I found that one such solution can be based on the tabularx<http://ctan.org/pkg/tabularx> package, and I am wondering what would be the best way to
2013 Apr 24
1
fonts not rendering during plot
Hi, I am having a problem where sometimes fonts for text in plots don't get rendered-the text just shows up as boxes. If I call R from a certain directory the problem goes away, otherwise the fonts don't render (but plots get made). In both cases, my PANGO_RC and FONTCONFIG_FILE do not change? Thank you, -George