search for: transitory

Displaying 20 results from an estimated 34 matches for "transitory".

Did you mean: transistors
2015 May 05
0
question about unhide / transitory process
Hello, running unhide ( unhide-20130526-1.el7.x86_64 ) on CentOS 7 i get sometimes messages like: Found HIDDEN PID: 30784 Cmdline: "<none>" Executable: "<no link>" "<none> ... maybe a transitory process" On a second unhide run immediately after it, the process seems to have vanished. Also, i do not see anything about it in /proc, and rkhunter and chkrootkit do _not_ detect it. How can i debug or do some further tests? I want to make sure that this is a false positive and not a rootk...
2011 Nov 01
3
[LLVMdev] Git mirror very slow
14 KB/s now. Yesterday 40 KB/s. Is that transitory or there is no enough bandwidth on llvm.org?
2012 Apr 02
2
Default parameter values in R functions?
Hi all, I have a newbie question: If I have a function with the following documentation: ca.jo(x, type = c("eigen", "trace"), ecdet = c("none", "const", "trend"), K = 2, spec=c("longrun", "transitory"), season = NULL, dumvar = NULL) Let's take "type" as an example... if I omit this parameter when calling the function, what's going to be the default value for this parameter? Amazingly the documentation didn't say which one is the default... Thank you! [[alter...
2010 Nov 30
3
saving multiple panes to PNG
...n the vars package to generate plots of Impulse Response Functions: > x.data <- cbind(na.omit(returns(p[,2])),na.omit(returns(n[,2]))) > colnames(x.data) <- c("p.ret","n.ret") > x.jo <- ca.jo(x.data,type="trace",ecdet="none",spec="transitory") > x.var <- vec2var(x.jo) > x.irf <- irf(x.var,n.ahead=30) > plot(x.irf) This results in a plot containing a pair of IRF graphs in Quartz and the following message in the Console: "Hit <Return> to see next plot:" When one hits <Return>, the next pa...
2011 Nov 01
0
[LLVMdev] Git mirror very slow
Hi Oscar, > 14 KB/s now. Yesterday 40 KB/s. > Is that transitory or there is no enough bandwidth on llvm.org? Something is wrong on your side: $ git clone http://llvm.org/git/llvm.git Cloning into llvm... remote: Counting objects: 607409, done. remote: Compressing objects: 100% (118270/118270), done. Receiving objects: 2% (13924/607409), 3.87 MiB | 402 KiB/s...
2008 Mar 20
1
Cointegration no constant
Hi, I am trying to estimate a VECM without constant using the following code: data(finland) sjf <- finland sjf.reg<-ca.jo(sjf, type = c("eigen"), ecdet = c("none"), K = 2,spec=c("transitory"), season = NULL, dumvar = NULL) cajools(sjf.reg) While the cointegration test does not use a constant, it is used in the cajools which I do not want. I am sure I am doing something wrong - what should I change? Any help very much appreciated! Ralph ________________________________________...
2011 Mar 30
1
VECM with UNRESTRICTED TREND
...ystem with "unrestricted trend" (aka "case 5") option as a deterministic term? As far as I know, ca.jo in urca package allows for "restricted trend" only [vecm <- ca.jo(data, type = "trace"/"eigen", ecdet = "trend", K = n, spec = "transitory"/"longrun")]. Obviously, I don't have to do this in urca, so if another package gives the possibility, please let me know too! Thanks in advance! Greg [[alternative HTML version deleted]]
2011 Jan 31
1
Re: e-sword under a tiling WM
...not e-sword? > > > > Popup, tooltip, and like windows (most windows without caption) are created as unmanaged. It all depends on what kind of windows program is using. > > > I don't think e-sword is an unmanaged window. It has a caption, and the windows is permanent (not transitory). The program itself is free to use, though installation needs a few dlls set to native. > > Would you be so kind as to test it out (if possible)? Or tell me how I can find out what sort of window esword is producing (xprop?). (very old) bump, with latest stable wine the behaviour is still...
2011 Nov 01
2
[LLVMdev] Git mirror very slow
Hello Anton and Takumi. Anton Korobeynikov <anton at korobeynikov.info> writes: >> 14 KB/s now. Yesterday 40 KB/s. >> Is that transitory or there is no enough bandwidth on llvm.org? > Something is wrong on your side: > > $ git clone http://llvm.org/git/llvm.git > Cloning into llvm... > remote: Counting objects: 607409, done. > remote: Compressing objects: 100% (118270/118270), done. > Receiving objects: 2% (13...
2006 Nov 29
1
Web site link problems (PR#9401)
...ow to do things in R, with many questions and tips culled from R-help" "R tips" is a link to http://www.ku.edu/~pauljohn/R/Rtips.html. I get a message the page is no longer there when I try it. Desired state: delete or point to an active version of the document, unless this is some transitory problem. 2. http://www.r-project.org/posting-guide.html includes in the section Surprising behavior and bugs, "make sure you read R Bugs in the R-faq." The latter is the link http://cran.r-project.org/doc/FAQ/R-FAQ.html#R%20Bugs, which takes me to the page but not the section. The link...
2011 Nov 11
1
Fwd: Use of R for VECM
...ata.1995-2009.txt",header=T) > sjd<-us[,c("Y","C")] > sjd.vecm1 <- ca.jo(sjd, ecdet='const', type="eigen", K=3, spec="longrun", + season=4) > sjd.vecm2 <- ca.jo(sjd, ecdet='const', type="eigen", K=3, spec="transitory", + season=4) > sjd.vecm.ols1 <- cajools(sjd.vecm1) > sjd.vecm.ols2 <- cajools(sjd.vecm2) > summary(sjd.vecm.ols1) Response Y.d : Call: lm(formula = substitute(Y.d), data = data.mat) Residuals: Min 1Q Median 3Q Max -0.0049787 -0.0012948 0.00...
2019 Jun 27
2
A libc in LLVM
...that are hard to > > foresee, precisely because the implementation details of a libc > > implementation are supposed to be just that - implementation details. Dealing with errno in particular is probably not as nasty as it seems. The standard allows errno to be a macro. Hence, for the transitory phase, implementations and redirectors in our libc can make use of the errno from the system libc. Something like this: $> cat llvm-errno.cpp #include <errno.h> // This is the system-libc header file int *__llvm_errno() { return &errno; } $> cat errno.h # This is the llvm lib...
2011 Nov 01
0
[LLVMdev] Git mirror very slow
On Tue, Nov 1, 2011 at 5:57 PM, Óscar Fuentes <ofv at wanadoo.es> wrote: > Hello Anton and Takumi. > > Anton Korobeynikov <anton at korobeynikov.info> writes: > > >> 14 KB/s now. Yesterday 40 KB/s. > >> Is that transitory or there is no enough bandwidth on llvm.org? > > Something is wrong on your side: > > > > $ git clone http://llvm.org/git/llvm.git > > Cloning into llvm... > > remote: Counting objects: 607409, done. > > remote: Compressing objects: 100% (118270/118270), done. &g...
2005 Aug 30
2
Wiki - where to add user documentation?
Hi I would like to add some documentation to the xensource wiki. In particular I would like to add some notes on setting up firewalling on a Xen machine using a SuSE 9.3 dom0. (this is the Distribution I am familiar with) I can''t see an appropriate place linked off the front page to add this stuff. Also I can''t edit the front page itself to add a new catagory because it is
2005 Nov 03
1
YUM Parse Error
Hi All, please, what is causing this error.? Cheers. Mark Sargent. Setting up Install Process Setting up Repos addons 100% |=========================| 951 B 00:00 dag 100% |=========================| 0 B 00:00 //var/cache/yum/dag/repomd.xml:1: parser error : Document is empty ^ //var/cache/yum/dag/repomd.xml:1: parser error : Start tag
2010 Jul 01
1
pv-grub in debian xen 4.0 packages
Why there is no pv-grub in debian packages? Pygrub exposes dom0.
2010 Nov 02
2
e-sword under a tiling WM
I've been using pytyle, but it seems this condition is common to most tiling wms. Basically, some wine apps get handled (opensong and 'i wanna be the guy' are the ones that do on my system), but some don't, e-sword being one that doesn't. pytyle does automatic tiling, fitting the windows in a defined pattern on the screen. It just does not see e-sword, somehow, but has no
2011 Jan 31
1
Re: e-sword under a tiling WM
...opup, tooltip, and like windows (most windows without caption) are created as unmanaged. It all depends on what kind of windows program is using. > > > > > > > > > > I don't think e-sword is an unmanaged window. It has a caption, and the windows is permanent (not transitory). The program itself is free to use, though installation needs a few dlls set to native. > > > > > > Would you be so kind as to test it out (if possible)? Or tell me how I can find out what sort of window esword is producing (xprop?). > > > > > > > (very ol...
2013 Feb 20
0
APC MeasureUPS support
...d. > > So the question is "how to enable". Any suggestions? Thanks, -Ben -- Ben Kamen - O.D.T., S.P. ---------------------------------------------------------------------- eMail: ben at benjammin.net http://www.benjammin.net Fortune says: "Beauty is transitory." "Beauty survives." -- Spock and Kirk, "That Which Survives", stardate unknown - - NOTICE: All legal disclaimers sent to benjammin.net/benkamen.net or any of it's affiliated domains are rendered null and v...
2004 May 03
0
Port forwarding/translation control
...It occurs to me that I could potentially have a conflict. If I set up a rule to forward/translate a port, and the NAT''ing code picks the same port for what it''s doing, then there would be a big problem. Eventually, I''ll need to dynamically allocate ports of my own for transitory port forwarding/translation. I need a way to set aside some ports that I can use sure the NAT''ing code and the ephemeral port allocation code won''t try to use. If anyone has anything illuminating to say on this point, I''d be very grateful. ___________________________...