Displaying 20 results from an estimated 500 matches similar to: "chan_sip.c:23647 handle_request_invite: Failed to authenticate device"
2006 Sep 15
1
Xen Installation problems
Hello Xen Users,
I am facing a problem getting my installation of XEN boot up on a Red
Hat Linux Guest OS. What''s happening is that the grub loader tries to
install Xen but after a while it crashes and starts rebooting
recursively. I have tried both the entries listed below. I am using the
following entries in the grub.conf file:
title Xen-bhatia 3.0 / XenLinux-bhatia 2.6.16
2008 Sep 08
3
Support for different Architectures
Dear All,
I am new to FLAC. I have to port FLAC on sh4 architecture. Can somebody
please let me know which architectures FLAC supports today? Also if
somebody has an idea about the functionality of the code written in
assembly, it would be of great help.
Thanks and Regards
Divyahaas Bhatia
Senior Technical Leader
Pace Micro Technology (India) Private Limited
Bringing Technology
2007 Feb 28
1
FASTTRAP_SUNWDTRACE_SIZE
Hi,
What is the value of FASTTRAP_SUNWDTRACE_SIZE for PowerPC ?
This macro is in file fasttrap_isa.h
For Intel : /usr/src/uts/intel/sys
#define FASTTRAP_SUNWDTRACE_SIZE 64
and for Sparc : /usr/src/uts/sparc/sys
#define FASTTRAP_SUNWDTRACE_SIZE 128
Regards
Deepak Bhatia
This message posted from opensolaris.org
2018 Mar 17
0
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
That does clarify for me that you're missing a step: I didn't clearly
follow your description at first.
corrplot expects a correlation matrix, not your original data. You need to
use cor() first.
That's pretty clear in the documentation. See for instance the examples:
data(mtcars)
M <- cor(mtcars)
corrplot(M)
Sarah
On Sat, Mar 17, 2018 at 12:00 PM Shivi Bhatia <shivipmp82 at
2007 Jun 01
1
Error starting dovecot 1.0.0 /var/run/dovecot/auth-master failed: No such file or directory
Hello:
i'm trying a tutorial
(http://workaround.org/articles/ispmail-etch/en.html) for setting up
postfix / dovecot but am getting some errors when i try to start
dovecot
here's some details of the enviromnent. (Fedora Core 6)
$ uname -a
Linux foo.com 2.6.18-1.2798.fc6 #1 SMP Mon Oct 16 14:37:32 EDT 2006
i686 i686 i386 GNU/Linux
$ ./dovecot --version
1.0.0
$ ./dovecot -n
#
2018 Mar 17
3
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
Hi Sarah,
Thank you for your help.
I tried using CR1<-as.matrix(CR1) but gives error Error in corrplot(CR1,
method = "circle") : The matrix is not in [-1, 1]!. I am using a corrplot
library.
Please find the reproducible example:
dput(head(CR1,10))
structure(c(26L, 46L, 39L, 38L, 47L, 59L, 56L, 61L, 43L, 60L,
78L, 63L, 2L, 58L, 8L, 1L, 1L, 9L, 11L, 2L, 1037500L, 46747L,
346300L,
2017 Sep 20
0
arguments imply differing number of rows
4000:6000 gives you 4000, 4001, ..., 6000. I suspect you want
population= c(seq(4000, 6000, length=5), seq(3500, 4300, length=5),
seq(3000, 3200, length=5))
Bob
On 20 September 2017 at 17:07, Shivi Bhatia <shivipmp82 at gmail.com> wrote:
> Hi Team,
>
> I using the syntax as:
>
> data.df<- data.frame(
> city= c(rep(c("Delhi",
2006 Jan 12
4
has_one relationship problem
I was wondering if anyone could see the error in this littte application
I have two models, User and Selection
Selection is an extension of the User model
so in the User model I have a has_one :selection
and in Selection I have a belongs_to :user
in my views, i cannot get @user.selection to work but @user works fine.
http://www.rafb.net/paste/results/GSBt1e61.html
Thanks,
r.b
2009 Jan 18
1
caller ID - handle_request_invite: Failed to authenticate user
We have a caller ID from our phone provider "Shaw Cable" (digital phone) and it was working OK until recently.
I get an error:
WARNING[6769]: chan_sip.c:8553 check_auth: username mismatch, have <4>, digest has <pstn-4444>
NOTICE[6769]: chan_sip.c:14316 handle_request_invite: Failed to authenticate user THELMA
<sip:7804789998 at 10.10.0.103>;tag=50e17675d59121c4o1
at
2018 Mar 17
0
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
I'm assuming you are using the corrplot package.
If so, your data object does need to be a matrix, not a data frame.
Since it's already a data frame, your line of code:
as.matrix(as.data.frame(CR1))
doesn't need the as.data.frame function, but more importantly, you
didn't assign the result to anything: as.matrix() does not work in
place.
CR1 <- as.matrix(CR1)
Now try.
If
2017 Sep 20
4
arguments imply differing number of rows
Hi Team,
I using the syntax as:
data.df<- data.frame(
city= c(rep(c("Delhi", "Bangalore","Chandigarh"),each=5)),
population= c(4000:6000,3500:4300,3000:3200)
)
But i am getting the error as arguments imply differing number of rows: 15,
3003.
Tried searching google but could not understand & find the solution.
Thanks, Shivi
[[alternative HTML version
2006 Dec 28
0
Re: Xen-users Digest, Vol 22, Issue 145
> From: Nico Kadel-Garcia <nkadel@gmail.com>
> Date: December 28, 2006 6:32:42 AM EST (CA)
> To: Ian Pratt <m+Ian.Pratt@cl.cam.ac.uk>
> Cc: "Bhatia, Nikhil" <bhatia@ornl.gov>, xen-
> devel@lists.xensource.com, xen-users@lists.xensource.com,
> ian.pratt@cl.cam.ac.uk
> Subject: Re: [Xen-users] RE: [Xen-devel] Xen-3.0.3 migration problems
>
>
2006 Apr 15
8
I need to send an email when something happens in my model...
but the model isn''t the right place to send mail from. That just
seems like pretty bad coupling, generating emails from within the
model. Or is that not a problem? On top of that, these emails need
to contain links back to my site...which is a bit of a pain in
ActionMailer, but I found directions on
http://wiki.rubyonrails.com/rails/pages/HowtoUseUrlHelpersWithActionMailer
however I
2014 Sep 01
1
SIP Calls Not Working
Hello,
I have two sip phones (zoiper). Earlier these used to communicate using the
settings below for sip.conf and extensions.conf and now we asterisk
1.8.29.0, so these phones have stopped communicating. My question is that
does 1.8.29.0 release require any more changes to be done to the sip.conf
and extensions.conf to make the below work ?
The sip.conf contains following enteries
2018 Mar 17
2
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
Created a new data set with 3 numeric variable to find correlation
CR1<- mar%>% as_data_frame%>% select(AGE, OLD_CAR_PURCHASE_YRS,
Total.Spend.With.AA)
had to convert it to a data frame, code:
as.matrix(as.data.frame(CR1))
Now i need to run a correlation plot for these 3 variables:
corrplot(CR1, method = "circle")
But i am getting this error:
Error in
2006 Mar 13
0
XATTR and extra meta data sync between nodes
Hallo,
Does Rsync support XATTR sync between nodes?
Using setfattr -n user.line -v 100 <File Name>
setfattr -n user.creator -v ?Rakesh Kumar Bhatia? <File Name>
will create extended attribute for different files.
I used
rsync -av <source> <destination> to copy the files.
extended attributes are missing in the destination path.
Can use the command
2018 May 25
0
Query on the Arimax modeling results
Hi R team,
We?ve run Arimax models in R. We had a lot of queries around the
interpretation of the outputs.
*Dependent variable =* Volume (Growth %)
*Independent Variables =* 3 Macroeconomic variables (Growth %)
Following is the line of code
Arimax.Model <- auto.arima(y = input.data[,"Volume"], xreg =
input.data[,model.vars], seasonal = F)
Following is the output
2009 May 21
1
How to install ActiveScaffold plugin?
I am upgrading to raills 2.3.2. I’m having problems with AjaxScaffold
which has been deprecated.
I am a linux novice. The web site http://activescaffold.com/ has the
following command:
script/plugin install git://github.com/activescaffold/active_scaffold.git
I tried the above and also ruby script/plugin …
Nothing happens.
Any ideas?
2015 May 29
1
[LLVMdev] Whole Program Analysis with dynamically loaded libraries
Hi
I was wondering if there is any way we can run whole program analysis on
more than just one compilation unit. I would like to include the
dynamically loaded libraries into the call graph too.
Is there a way to do that?
Thanks and Regards
Rohit
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2018 Jun 01
2
Cannot Load A Package
Hi All,
I am trying to download semnet package but getting the error:
package not available for R version 3.4.4.
I tried downloading it from
install.packages('semnet',repos='http://cran.us.r-project.org')
and install.packages('semnet',repos='http://cran.revolutionanalytics.com/')
and even the https://cran.r-project.org/src/contrib/semnet.tar.gz but
doesnt seem to