search for: inspit

Displaying 20 results from an estimated 58 matches for "inspit".

Did you mean: inspite
2016 Nov 25
1
Thruk reports /var/tmp/live.sock: No such file or directory inspite of the file being present
Hi, I am running thruk (version is thruk-2.12-1.x86_64) which is a web interface for nagios 4.2.3 and running httpd-2.4.6-40.el7.centos.4.x86_64 on CentOS Linux release 7.2.1511 (Core) While accessing thruk web interface http://thruk.mydomain.com/thruk/cgi-bin/ status.cgi?host=all&_=1480078344275 I am seeing this issue in *thruk.log prod: ERROR: failed to open socket /var/tmp/live.sock: No
2005 Mar 09
4
How to get standard deviation of rows in a matrix
Hi all, I am trying to find sd of my rows in a matrix and i get column sd inspite of extracting rows. I tried to do the sqrt(var(x)) but that did'nt work as well, Here is my data genes 15 24 63 40 25 42 46 35 23 53 37 45 30 37 50 55 40 51 30 48 x<-sd(genes[1:5,]) y<-sqrt(var(genes[1:5,])) I get 4 sds for the 4 columns instead of 5 sds for my 5 rows. Thanks y...
2012 Dec 25
3
Error : libxenlight state driver is not active
Hi all. I recently compiled xen 4.1.3 on Fedora 17(64 bit). The xen entry appears in the grub. Inspite of booting Fedora, with xen hypervisor entry , when I start virt-manager, I get an error " Internal Error : libxenlight state driver is not active " Can anyone help me on this? -- Rohit S Damkondwar B.Tech Computer Engineering CoEP MyBlog <http://www.rohitsdamkondwar.wordpress.com&...
2013 Jun 20
2
Dealing with negative weights
Hello guys. I am currently working on the DLH weighting scheme .The formula for DLH is very complex and it ends up giving negative weights to some documents because of the formula.Due to this,inspite of having occurence/occurences of the keyword, the documents with negative weights don't show up in the results at all. Please can I get some help on how to deal with this ? Or should I just leave it as it is and let the poor documents suffer by virtue of them having statistics not suitable fo...
2006 Feb 03
3
R-2.2.1-INSTALL Issue with TCLTK
Hi I am not able to have a working tcltk library in R-2.2.1 inspite of trying different options suggested in the FAQ's. I am using the following configure option and I do get the tcltk package installed but with a missing libs folder. ./configure -prefix= "~R-2.2.1" --enable-R-shlib --enable-linux-lfs --with-zlib --with-gnu-ld --with-tcltk --wi...
2006 Jun 29
1
R 2.3.0 + R-gnome + Ubuntu (i686 & amd64)
Hello, I am trying to run R-gnome on my Debian distro (Ubuntu 6.06), but something strange is happening. Inspite of having apperently sucessfully installed Rgnome 2.3.0 I keep getting the error message below, saying that Rgnome is not found. I have actually checked the folder and Rgnome is not being properly installed. I ran into this problem on both my 32 and 64 bits intallation of Debian. Any help will be...
2005 Dec 18
1
assert_template fails?
Hi All, I have a seemingly simple problem - but can''t figure out the problem. I have a simple functional test like so: def test_should_show_search_dropdown get :index assert_response :success assert_template :search end Inspite of having search.rhtml in /app/views/layout, it fails with an error: 1) Error: test_should_show_search_dropdown(SearchControllerTest): NoMethodError: undefined method `include?'' for :search:Symbol /usr/lib/ruby/gems/1.8/gems/actionpack-1.11.2/lib/action_controller/assertions.rb:10...
2004 Jan 03
1
Cygwin service problems
...instructions that were supposed to work from http://pigtail.net/LRP/printsrv/cygwin-sshd.html i did al of the things it asked me to and is STILL DIDN"T WORK!!!!!!!!!!!!!!!!!!!!!!! As you can see I'm realllllly pissed off at your software and my computer. if there's anything you can do inspite of that please e-mail me back. if there isn't let me know. if i get no response then I'll simply assume that you don't help people who excessively use exclamation marks in their e-mails!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! LOL anyway bye for now and thanks in advance.
1997 Dec 23
1
Junk e-mail .... help needed!!!
Hi!! Of late, I'm getting a lot of un-solicited mails from this list, and inspite of un-subscribing mails, messages, threats , nothing really seems to work... My question: 1. Is there any way I can 'avoid' or 'bounce' incoming messages at the mail-server level?? 2. I cannot change my address (alias) as such... since this involves sending reminders to God k...
2013 Jan 26
1
Complex Call Distribution
...ible to setup the call distribution in the above format using any kind of logic or algorithm ? I tried using Penalties function in Queues. Created 2 penalties : 0 (level-1) and 1000 (level-2) and assigned penalties to agents (static) I made a few test calls, but Level-2 agents were delivered calls inspite of Level-1 agents being available. Any help or pointers are appreciated. Thx, Vai -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20130126/149bb2c2/attachment.htm>
2009 Sep 24
1
puppet permissons
....yaml notice: Starting catalog run notice: //Node[default]/sudo/Package[sudo]/ensure: created err: //Node[default]/sudo/File[/etc/sudoers]: Failed to retrieve current state of resource: No specified source was found from puppet:///sudo/sudoers notice: Finished catalog run in 35.44 seconds However, inspite of the error, the target sudo rpm would be installed and /etc/sudoers copied over to the client. Initially the permissions on the sudoers file were set to root. # ls -l /etc/puppet/modules/sudo/files/sudoers -r--r----- 1 root root 3819 Sep 24 08:56 The error went away by changing the permissions...
2004 May 18
2
pam_setcred fails for "USE_POSIX_THREADS + non-root users + PrivSep yes"
...t works for PrivSep yes and no for root and non-root users. Just to check the pid that call the pam_setcred in do_pam_setcred, I used the getpid() call in the do_pam_setcred function and for both THREAD enabled and disabled builds, the child pid and the pid that call this function are the same and inspite of this similarity this problem is seen. Any help will be much appreciated. Regards, Kumar.
2016 Aug 06
4
ifelse() woes ... can we agree on a ifelse2() ?
...e no is much preferable (though not equivalent: ifelse(NA, 1, 0) !) 2) it is potentially inefficient by design since it (almost always) evaluates both 'yes' and 'no' independent of 'test'. 3) is a nice syntax in principle, and so is often used, also by myself, inspite of '2)' just because nicely self-explaining code is sometimes clearly preferable to more efficient but less readable code. 4) it is too late to change ifelse() fundamentally, because it works according to its documentation (and I think very much the same as in S and S-PLUS)...
2004 Aug 29
1
Re: [R] R on gentoo amd64 (gcc 3.3.3) is unstable --- no!
My appologies, this estimation is about right, I spent last week at COMPSTAT in prague and didn't follow the list closely. Inspite of this fact I believe my posting is not entirely out of date. regards Diman Todorov ------------------------------ You are 8 days behind the times -- take a look at the current R-devel. On Sun, 29 Aug 2004, Diman Todorov wrote: > Dear Dirk, > I have had the exactly same problem li...
2011 Jun 30
7
Puppet agent creates certificates for localhost.localdomain and does not pick up the changed hostname
...1. I change the hostname from localhost to xxx.xxxxxx using the hostname command. 2. start the puppet agent as /usr/sbin/puppetd --certname=xxx.xxxxxx --logdest=/var/log/puppet/puppet.log The problem I am facing is that the puppet agent on the VMs creates certificates for localhost.localdomain inspite of me changing the hostname to say xxx.xxxxxxx. I want the puppet agent to pick up the new hostname while creating the certificate, but it doesn''t seem to be doing that. I am not sure where the puppet agent looks to pick up the hostname at certificate creation, is it the /etc/hosts file...
2009 Nov 16
5
how to mount domU images on dom0
how to mount the domU images on dom0 to chroot them mount it on the dom0 and chroot to it. I am getting an error xen console mydomU _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2007 Sep 13
3
t.test() with missing values
...NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA [307] NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA [341] NA NA NA NA NA NA NA NA Is it possible to run a TTest inspite of all the missing data? I really need two know if may two vectors are significantly different. (If this results are then reliable is an other question) By the way is there a better possibility (and I guess there is) to save or export the t.test() results as textfile? Thanks in advance for y...
2017 Feb 06
3
Kaleidoscope tutorial: comments, corrections and Windows support
...ble 0x3FEAED548F090CEE } Evaluated to 0.841471": Actually "sin" is not called at all, LLVM knew "sin" and just returns the already const-folded value. In my case, I do see a "%calltmp = call double @sin(double 1.000000e+00)", though, inspite of the same optimizations as in your listing... - "ready> def foo(x) sin(x)*sin(x) + cos(x)*cos(x); Read function definition: define double @foo(double %x) { entry: %calltmp = call double @sin(double %x) %multmp = fmul double %calltmp, %calltmp %callt...
2018 Aug 31
2
Segfault when performing match on POSIXlt object
Hi All, I found a possible unexpected behavior when performing match/%in% on POSIXlt objects, e.g. : d <- as.POSIXlt('2018-01-01') # match(<anything>,<POSIXlt>) --> segfault match(0,d) # consequently also this fails : 0 %in% d REPORTED ERROR ON LINUX: *** caught segfault *** address 0x16dc2, cause 'memory not mapped' Verified on 3.5.0 on linux,
2018 Aug 31
0
Segfault when performing match on POSIXlt object
...> REPORTED ERROR ON LINUX: *** caught segfault *** address > 0x16dc2, cause 'memory not mapped' > Verified on 3.5.0 on linux, 3.5.1 on Windows. Confirmed (Linux, I think all version >= 3.4.0, but not in R 3.3.3 (or earlier, presumably). Note the segfault happens inspite of the match_transform() utility which explicitly checks for "POSIXlt" and the code comment which says that "POSIXlt" should have been transformed to character, but seems to fail in recent versions of R. > I think this could be a bug, since even if that match >...