search for: prun

Displaying 20 results from an estimated 21 matches for "prun".

Did you mean: arun
2009 Apr 01
1
Request: Optimum value of cost complexity parameter "k" in "tree" package
Dear R community I have a question regarding the value of cost complexity parameter "k" used in "tree" package for pruning purpose. Any help in finding the optimum value of "k" is requested. Please give some suggestion in this regard. In the example below i used k=0 but i don't know why? But if i use k=NULL, then it will not plot the resultant tree. library(tree) ds=iris; iris=transform(iris, Specie...
2006 Jun 03
8
dtrace causing sigtrap?
...lizing the runtime linker, but stop it before it runs any shared library startup routines. (Failing that, I''d be okay with stopping it at main()) Anyway, my latest glitch looks like this. When I attach dtrace to a process that''s being waited on by another process, and then call prun inside that dtrace script, my victim process gets a trace trap and core dumps. If I continue the same stopped process using "prun" from the command line, all is fine. Any ideas? (This is S10u1) dtrace2='' BEGIN { printf("resuming %d\n", $target); system("/bin/p...
2006 Jun 02
0
Re: Update libtheora-1.0alpha6
...tadir/doc/libtheora instead of $datadir/doc/libtheora-alpha6 Best regards. God illuminate us. -- Dios, por favor, ayudanos a hacer Tu voluntad que es felicidad desbordante. http://www.primarilypublicdomain.org/letter/ -- Vladimir T?mara Pati?o. http://www.geocities.com/v-tamara diff -pruN --exclude=CVS ../libtheora.orig/Makefile ./Makefile --- ../libtheora.orig/Makefile Wed May 31 08:29:37 2006 +++ ./Makefile Fri Jun 2 08:18:32 2006 @@ -1,11 +1,9 @@ # $OpenBSD: Makefile,v 1.3 2005/12/30 05:35:56 jakemsr Exp $ COMMENT= "open video codec" -DISTNAME= libtheora-1.0alpha4...
2008 Oct 01
5
ustack()s of SIGSEGV''ed programs
...solves the problem to some degree but I''d much rather have a self-contained D script. dtrace -w -n ''fbt:genunix:sigtoproc:entry/arg2 == 11/ { self->pid=((proc_t *)arg0)->p_pidp->pid_id; stop(); system("/usr/bin/gcore %d", self->pid); system("/usr/bin/prun %d", self->pid); }'' Any ideas (or code) will be appreciated, v.
2007 Jan 24
1
iax2 prun realtime peer only can't prune user
Hi All, I'm running 1.2.9.1. I can prune sip realtime peers and users and iax realtime peers but no command to prune iax realtime users. Was this implemented in a later version? Thanks. JR -- JR Richardson Engineering for the Masses
2009 Aug 28
13
putting a running app into trace mode
Suppose I have a USDT probe in Firefox and that I''m trying to catch the startup with a probe like this: proc:::exec-success /execname == "firefox-bin"/ { start = timestamp; } and stop tracing when Firefox hits this USDT probe: mozilla:::main-entry { exit(0); } How do I put the running firefox-bin into "trace mode" so that my USDT probe fires? Thanks, Joel
2014 Nov 05
0
SYSAPPEND not replacing spaces
...present in triplicata in com32/elflink/ldlinux/readconfig.c:copy_sysappend_string(), com32/menu/readconfig.c:copy_sysappend_string(), and core/sysappend.c:copy_and_mangle() prevent proper replacement of spaces by underscore. Here's a patch which fix this (only tested via BIOS PXELINUX) diff -pruN syslinux-6.03.orig/com32/elflink/ldlinux/readconfig.c syslinux-6.03.d mi/com32/elflink/ldlinux/readconfig.c --- syslinux-6.03.orig/com32/elflink/ldlinux/readconfig.c 2014-10-06 12:27 :44.000000000 -0400 +++ syslinux-6.03.dmi/com32/elflink/ldlinux/readconfig.c 2014-11-05 10:02 :10.00000...
2010 Feb 20
5
Dtrace starts very slowly on T5440
...obes, where our T5220 usually takes under a second. Shutdown is similar, though slightly faster. This is mostly annoying because it takes so long to attach that it''s hard to tell when I''ve collected enough data to be useful. I''ve started using BEGIN and END probes to prun stopped instances of ''echo'' so I can see when probing actually starts and ends... Any idea why this should be the case? I''m running S10 (142900-03). Thanks, Ryan
2005 Nov 18
1
Having A Problem Installing Continuum
...0x7fdd1ea8 0x7fc1fba8) stub! fixme:richedit:RichEditANSIWndProc EM_AUTOURLDETECT: stub fixme:richedit:RichEditANSIWndProc WM_SETFONT: stub fixme:richedit:RichEditANSIWndProc EM_LIMITTEXT: stub fixme:richedit:RichEditANSIWndProc EM_EXLIMITTEXT: stub wine-pthread: paint.c:150: ME_Repaint: Assertion `pRun == pCursor->pRun' failed. Note: This is the entire error, and I am almost entirely sure the last one is the problem, as I have seen all of the richedit stubs before. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://www.winehq.org/pipermail/wine-users/at...
2006 Jul 10
1
Visualization problem
I have a share that is called \\server\mantenimiento. This server is intended to be acceded by my operators, that do renaming of files and prunning in all the shares. We're ussing samba 3.023rc3. Today they called me in order to show me that a directory named \\server\mantenimiento\con was lost, in fact it isn't lost samba shows it as smb://server/mantenimiento/CSHOFG~F. it appears to me that int has the true name, and everything...
2007 Nov 27
7
Solaris Dynamic Tracing Guide gets Wikified!
Tracers, Good news! The Solaris Dynamic Tracing Guide has entered the participation age at last and has been converted into wiki format. The new and shiny guide can be found at: http://wikis.sun.com/display/DTrace/Documentation The guide has fallen behind with developments in DTrace since it was first released and needs some revising and some bug fixing as well. However, now that it''s
2009 Nov 19
11
dtracing a forked process OR dynamic library
Hi, I am tracking down a problem and would like to know how I can follow a forked process with my dtrace script, or how I can trace a dynamic library. Here is the problem. I am tracing dtlogin, and specifically I am trying to determine what error libpkcs11`<routine> is returning. It turns out dtlogin forks a lot of processes, and I believe the second forked process is the one that winds
2007 May 30
5
Determining Parent''s execname
Hi, I''m trying to trace the io of a given file, but I have a feeling that it''s been done via a script, as such I''d like to be able to tell the names of the calling processe tree, similar to what ptree produces. Is there any way to get this information without running ptree using system()? Thanks, Darren.
2008 Sep 30
12
dtrace missing ''unlinkat''? showing process stack?
everyone, Just out of curiosity, I did a dtrace -n ''syscall:::entry { @num[execname, probefunc] = count(); }'' and looked at the entries produced by ''rm''. I see everything that rm did, *except* the unlinkat - which is unfortunate because I want to trace which processes have deleted which files. So - does dtrace contain unlinkat as a probe for a system call?
2011 Jan 27
0
selection of hinge function with restrictions, machine learning, earth package,
Hi, I have a few questions regarding machine learning packages in R, e.g. earth package and its forward pass and prunning pass, and hinge functions selection in the example below. 1) How could I force the algorithm to generate knots in hinge function only with values < 90 for e.g. variable doy? 2) Is it possible to restrict the algorithm to generate maximum number of terms per a selected variable e.g. humidity...
2011 Mar 14
0
selection of hinge function with restrictions, machine learning, earth package,
...ction of hinge function with restrictions, machine learning, earth package, Message-ID: <AANLkTiku1a6qro7vf0a8A7cks-a=qrVS_nrRZy4_dP1B at mail.gmail.com> Content-Type: text/plain Hi, I have a few questions regarding machine learning packages in R, e.g. earth package and its forward pass and prunning pass, and hinge functions selection in the example below. 1) How could I force the algorithm to generate knots in hinge function only with values < 90 for e.g. variable doy? 2) Is it possible to restrict the algorithm to generate maximum number of terms per a selected variable e.g. humidity...
2011 Mar 11
1
CORELDRAW WORKING IN UBUNTU
Hi, This is my first ever post on Wine Forum after using Wine for almost a year and found many Program to be run at very good stability and speed but there are thousands of people who want to use CorelDraw in Ubuntu but find no solution after working this for almost 6 Months I found a way to work in CorelDraw in Ubuntu OS (I alway use Ubuntu and Love It!) you might be thinking that you already
2006 Dec 07
1
When does ufunc/func work?
...{ self->traceme = 0; stop(); system("dtrace -q -s /export/home/dds/src/dtrace/libc.d -o /export/home/ dds/src/dtrace/data/%07d-%d.out %d &", ++fileid, pid, pid); } and a script for actually profiling user and kernel functions: BEGIN { system("prun %d", $1); } /* * The process we were launched to watch is terminating. * We should also exit, because our work is done. */ proc:::exit /pid == $1/ { printf("\nCommand: %s\n", execname); exit(0); } profile-997Hz /arg1 != NULL && pid == $1/ { @u[ufu...
2006 May 09
4
[PATCH] Fix checksum errors when firewalling in domU
...spin_lock_prefetch(&dev->queue_lock); diff -r 1e3977e029fd patches/linux-2.6.16.13/net-csum.patch --- a/patches/linux-2.6.16.13/net-csum.patch Mon May 8 18:21:41 2006 +++ b/patches/linux-2.6.16.13/net-csum.patch Tue May 9 13:38:56 2006 @@ -40,8 +40,8 @@ return 1; } diff -pruN ../pristine-linux-2.6.16.13/net/ipv4/xfrm4_output.c ./net/ipv4/xfrm4_output.c ---- ../pristine-linux-2.6.16.13/net/ipv4/xfrm4_output.c 2006-05-02 22:38:44.000000000 +0100 -+++ ./net/ipv4/xfrm4_output.c 2006-05-04 17:41:37.000000000 +0100 +--- ../pristine-linux-2.6.16.13/net/ipv4/xfrm4_out...
2006 Apr 28
8
[PATCH] Xenoprof passive domain support
Hi Renato, This patch is to add Xenoprof passive domain support in SMP environment. Basically: - It allocates per vcpu buffers for passive domain and maps them into primary domain''s space. - When primary domain gets sampled and triggers virq, its kernel module will handle passive domain'' samples besides its owns. There is potential buffer overflow if passive is very busy while