search for: mishra

Displaying 20 results from an estimated 152 matches for "mishra".

Did you mean: misha
2006 Jan 17
1
Asterisk LDAP Authentication Problem
...roperly. If somebody used it then please help. In the res_ldap.conf file i made the following entries. I am using my normal username and password to connect my asterisk server to the LDAP server of my organization. Is some administrator login is requried to connect ? [general] ldapuser=cn=chandan.mishra,dc=synapse,dc=com ldaphost=ldap://192.168.0.16 ldappass=chandan123 ldapbasedn=dc=synapse,dc=com After this the asterisk is not able to connect to the ldap database. And hence asterisk is not able to start. Its giving me following errors: == Parsing '/etc/asterisk/res_ldap.conf': Found J...
2013 Apr 11
2
[LLVMdev] Decouple LoopVectorizer from O3
...for(int i=SIZE;i > 0;i--) { > aa[i] = bb[i] + count; > count++; > } > } > > > Thanks, > Nadav > > The loop vectorizer has some LSR-like capabilities for merging multiple > induction variables into a > > > On Apr 10, 2013, at 7:52 PM, Anadi Mishra <reachanadi at gmail.com> wrote: > > Hi Nadav, > > I tried your suggestion by changing the condition to : > > 189 if (LoopVectorize && OptLevel >= 0) > 190 MPM.add(createLoopVectorizePass()); > > and compiled. Then I used the following command: >...
2011 Jun 23
2
getting twitter followers into our rails application
...Auth into my app. Now I want to get the follower lists for the user who has authenticated using OAuth. My app works on ruby on rails. And i want to know how i can fetch the followers list for the current logged in user. Can someone tell me if they have done it before? thaks +++++++++++++++ Pravin Mishra -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/J...
2010 May 15
9
Installing CentOS as DomU on Debian Lenny (dom0) Xen
Hi, I have searched the question which I am asking.But if some one has mentioned on their blog or link some where they have mentioned as how they installed CentOS as DomU on Debian Lenny (dom0)running xen-3.2.1 and I should have a look Then please share it here. -- Tapas _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com
2011 Mar 01
14
virt-manager 0.8.2 local ISO and PXE boot install option greyed out on 2.6.32.27 pv-ops Dom0 kernel
Hi, I just installed a pv-ops Dom0 2.6.32.27 Kernel on a 64 bit non VT machine. Following instructions here http://wiki.xensource.com/xenwiki/Xen4.0 for 64 bit Ubuntu 10.04 apt-get install bcc bin86 gawk bridge-utils iproute libcurl3 libcurl4-openssl-dev bzip2 module-init-tools transfig tgif texinfo texlive-latex-base texlive-latex-recommended texlive-fonts-extra texlive-fonts-recommended
2013 Apr 15
0
[LLVMdev] Decouple LoopVectorizer from O3
Just an FYI: it's often handy to mention the PR number when a thread is concluded by filing a bug. That way other people reading (now, or more importantly, later) can follow the issue through to the bug and its resolution On Apr 11, 2013 4:24 PM, "Anadi Mishra" <reachanadi at gmail.com> wrote: > Done. > > Best, > Anadi. > > > On Thu, Apr 11, 2013 at 7:01 AM, Nadav Rotem <nrotem at apple.com> wrote: > > Hi Anadi, > > > > Yes, this is a bug in the loop vectorizer. The loop vectorizer expects > onl...
2000 Nov 14
3
ODBC Connectivity
Does anyone have any experience using R to pull/push data from an ODBC compliant database? I'm working on a small project and am undecided about whether to use just R or use some other software for extracting and transforming. TIA Samir. The information contained in this e-mail transmission is confidential and may be privileged. It is intended only for the addressee(s) stated above. If
2006 Jan 06
2
Not Able to Connect Two Asterisk Servers Using IAX2
...onnect two asterisk server using IAX2. But the Asterisk Servers are not able to register each other. If some body have done this then Please send me the configuration they have done in iax.conf and extensions.conf. I simply want to connect and call from one sever to another. Thanks Chandan Kumar Mishra Software Engg. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060106/9534770d/attachment.htm
2011 Dec 09
2
asterisk-users Digest, Vol 89, Issue 13
Yes, DAHDI is a timing source and meetme depends on DAHDI for voice mixing. You can check details here http://www.asterisk.org/docs/asterisk/trunk/applications/meetme >Install DAHDI then !!? >On Thu, Dec 8, 2011 at 12:46 PM, Durgesh Mishra < >durgesh.mishra at rancoretech.com> wrote: >> In make menuselect =>application=>XXX app_meetme . I am doing confrence >> call using sip softphone. >> >> I checked It Depends on: dahdi(E) . >> >> How I can do app_meetme enable? >> >>...
2013 Oct 04
1
ODG (Objective Difference Grade) scores for Opus Encoder using PQEvalAudio Tool
...ggy. I have compared to PEAQ and - as a result - now I am not using it anymore. With best regards, Christian Hoene Von: opus-bounces at xiph.org [mailto:opus-bounces at xiph.org] Im Auftrag von Rhishikesh Agashe Gesendet: Freitag, 4. Oktober 2013 12:35 An: opus at xiph.org Cc: Rasmi Mishra Betreff: [opus] ODG (Objective Difference Grade) scores for Opus Encoder using PQEvalAudio Tool Hi, I checked the ODG (Objective Difference Grade) scores for a few reference vectors using the PQEvalAudio Tool and found that some of them show ODG scores as high as -3.5 If we look at the...
2008 Oct 05
2
Time Interval calculation using R
Hi I have two columns of data with time in form of HH:MM:SS - representing start time and end time of an activity. I am trying to calculate the time difference (duration of the activity). (1) I first tried > difftime(btime, etime, units = "mins") This however gave me the error - Error in as.POSIXlt.character(as.character(x)) : character string is not in a standard unambiguous
2013 Apr 11
2
[LLVMdev] Decouple LoopVectorizer from O3
...i, > > In the file PassManagerBuilder.cpp you can change the lines below to get rid of the O3 restriction. > > 189 if (LoopVectorize && OptLevel > 2) > 190 MPM.add(createLoopVectorizePass()); > > Nadav > > > > > On Apr 10, 2013, at 5:39 PM, Anadi Mishra <reachanadi at gmail.com> wrote: > > Hello, > > I am trying out the LoopVectorizer(LV) pass and would like to decouple it from O3 which is currently required to run LV. I want to do this because I want to understand the behaviour of LV by trying simple loops but the O3 mostly opti...
2013 Apr 17
4
[LLVMdev] Loop vectorizer behaviour for 2D arrays and parallel annotation
Hello, I am trying to vectorize the following loop but the vectorizer says: "Found a possible write-write reorder" and does not vectorize. Why? for (j=0; j < 8; j++) { jj = j << 3; m2[j][0] = diff[jj ] + diff[jj+4]; m2[j][1] = diff[jj+1] + diff[jj+5]; m2[j][2] = diff[jj+2] + diff[jj+6]; m2[j][3] = diff[jj+3] + diff[jj+7]; m2[j][4] = diff[jj ] -
2009 Dec 04
12
how to get xen with a kernel 2.6.27 or above?
Hi list, I am starting a academic security related project and I was wondering if there is any documentation on compiling xen/dom0 with a recent kernel? I''ve seen a few good intentioned threads, but no real documentation so far. Any helpful pointers will be greatly appreciated! Thanks in advance, - SDG P.S: First mail, not sure if I should post it here...let me know if I am on the
2013 Apr 11
0
[LLVMdev] Decouple LoopVectorizer from O3
...mple: int foo(int *aa, int *bb, int SIZE) { int count = 190; for(int i=SIZE;i > 0;i--) { aa[i] = bb[i] + count; count++; } } Thanks, Nadav The loop vectorizer has some LSR-like capabilities for merging multiple induction variables into a On Apr 10, 2013, at 7:52 PM, Anadi Mishra <reachanadi at gmail.com> wrote: > Hi Nadav, > > I tried your suggestion by changing the condition to : > > 189 if (LoopVectorize && OptLevel >= 0) > 190 MPM.add(createLoopVectorizePass()); > > and compiled. Then I used the following command: >...
2013 Apr 17
1
[LLVMdev] Loop vectorizer behaviour for 2D arrays and parallel annotation
On Wed, Apr 17, 2013 at 8:08 AM, Tobias Grosser <tobias at grosser.es> wrote: > On 04/17/2013 04:55 AM, Anadi Mishra wrote: >> >> Hello, >> >> I am trying to vectorize the following loop but the vectorizer says: >> "Found a possible write-write reorder" and does not vectorize. >> Why? > > > To my knowledge, the dependence analysis in the loop vectorizer is no...
2011 Oct 29
1
Refresh tab content on click in JQuery UI Tabs
...v class="tab_container"> <div *id="tab1"* class="tab_content"> <!--Content--> </div> <div *id="tab2"* class="tab_content"> <!--Content--> </div> </div> +++++++++++++ Pravin Mishra -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/J...
2006 Apr 28
3
how to do form field validation using javascript in rubyonrails
hi all can any body tell me how to javascript validation in ruby on rails for form field thnx in advance
2011 Aug 11
2
virInitialize dumps core intermittently.
...ts the VMs. Intermittently we noticed a core during start up that points to the last call made by libvirt-cim to "virInitialize". I am thinking that it is a timing issue where virInitialize is called while libvirt is trying to autostart the VMs. Is this a known issue? Thanks, Sharad Mishra -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20110811/3798bd79/attachment.htm>
2007 May 25
2
R-About PLSR
...I can use PLS for Partial least square, R square, mvrCv one more think how i can import external file in R. When I use plsr, R2, RMSEP it show error could not find function plsr, RMSEP etc. How I can calculate PLS, R2, RMSEP, PCR, MVR using pls package in R. Thanking you........ -- Nitish Kumar Mishra Junior Research Fellow BIC, IMTECH, Chandigarh, India E-Mail Address: nitish_km at yahoo.com nitish at imtech.res.in