search for: similary

Displaying 20 results from an estimated 50 matches for "similary".

Did you mean: similar
2007 Sep 17
2
how to compare 2 numeric vectors
...4 NA NA NA NA 10 NA NA NA NA NA NA NA NA NA NA NA 100 NA I am only interested in extracting the position number where both vectors are not equal to NA at the same position. For example, the second element of both vectors is not equal to NA, and thus I want to return '2'; similary, I also would want to have '7' returned because the seventh element of both arrays is not equal to NA. In general, I would like to find a way to do this for any number of given positions between the two vectors that satisfy this. If no positions satisfy this, then return '0' I wo...
2005 Oct 11
1
User auth-groups vs Win2k ADS Problems
...etfacl -d -m 'g:tarp+domain admins:rwx' preInstall setfacl: Option -m: Invalid argument near character 3 Try to add a user to the ACL install:/var/samba # setfacl -d -m 'u:tarp+dhj:rwx' preinstall no errors Please if anyone can give me any hints of what to look for or had similary experiences please reply. would an updated version of samba help? Anything Regards Daniel Jensen Hello Everyone This samba server was working perfectly without problems. Running as an Domain member vs Win2K ADS One day it stopped working. All that happened 5 days ago was a change of the...
2009 Jul 17
1
Cluster failover
...ng fine. One thing I would like to know that how to make failover only to third node. What I mean to say is: I have 3 virtual machine running on node 1 and 2 virtual machines running on node 2. Now if node 1 fails I want my the node1 virtual machines to be stared only on node 3 but not on node2. Similary if node2 breaks, I want virtual machines to be started on node3 but never on node 1. Thanks ! Paras.
2015 Aug 28
3
Inter-op and port (wolfSSL + openSSH)
...worked to build openSSH with wolfSSL instead of openSSL as we were tired of constant security issues needing patched due to openSSL compilation. As a result of the efforts made we would like to submit a patch that offers users an alternate configure option when configuring openSSH (--with-wolfssl). Similary in our libraries we now have the option "--with-openssh". Could you please get this to the relevant individual(s). We have an altered version of openSSH we currently use and a README to go along which will make initial testing / integration easier. Additionally we are conscious that the...
2008 Sep 25
3
[LLVMdev] Generating instruction bundles ?
...inds of shuffling, and all combinations of those). Is this possible ? We're talking about approximately 70000 variants per instruction here, approximately 300 if we ignore the shuffling which has 256 combinations by itself. - Use an additional pass that reorders and packs instructions together (similary to what the ia64 optimizing assembler does), maybe relying on the instruction scheduler to place the instructions for me. - Rewrite some of tablegen to support that feature. I'm under the impression it would be a lot of work for a very specific case, but I could be wrong here. Ideas ? Thanks...
2009 Sep 08
1
openssh, pam, challenge-response problem
...) (defined in pam_auth.c). But this function doesn't have implemented the PAM_PROMPT_ECHO_ON flavor, and returns the PAM_CONV_ERROR :-( It should be possible to implement the PAM_PROMPT_ECHO_ON conversation either with read()/write() or with fdopen()/fprintf()/fgets()/fclose() (as is done similary for stdin in sshpam_tty_conv()), but we need the socket. The only way to pass the information into the pam module is by Authctxt structure. So we need to add the "int socket" field into the Convctxt structure and then use it (if not set to -1) for challenge-response authentication....
2011 Aug 16
1
[PATCH] virtio-blk: Add stats VQ to collect information about devices
This patch adds support for an optional stats vq that works similary to the stats vq provided by virtio-balloon. The purpose of this change is to allow collection of statistics about working virtio-blk devices to easily analyze performance without having to tap into the guest. Cc: Rusty Russell <rusty at rustcorp.com.au> Cc: "Michael S. Tsirkin" &l...
2011 Aug 16
1
[PATCH] virtio-blk: Add stats VQ to collect information about devices
This patch adds support for an optional stats vq that works similary to the stats vq provided by virtio-balloon. The purpose of this change is to allow collection of statistics about working virtio-blk devices to easily analyze performance without having to tap into the guest. Cc: Rusty Russell <rusty at rustcorp.com.au> Cc: "Michael S. Tsirkin" &l...
2012 Jun 15
3
[HYBRID] : mapping IO mems in the EPT
Hi guys, During my refresh to latest linux, I noticed, direct mapping of all non-RAM pages in xen_set_identity_and_release(). I currently don''t map all at front, but as needed looking at the PAGE_IO bit in the pte. One result of that is minor change to common code macro: __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE) to to __set_fixmap(idx, phys, PAGE_KERNEL_IO_NOCACHE)
2009 Jul 14
1
Ubuntu JGR
................ Than I tried to install "JGR" as followd: install.packages("JGR", dep=TRUE) Than I got this message, which shows me that was not installed properly. I do not know how to fix it since I have just installed Ubuntu 2 days ago. I searched the internet and found some similary probs. But still could not work it out. Fehler: konnte das Verzeichnis nicht blockieren ?/home/gunnar/R/i486-pc-linux-gnu-library/2.9? um zu modifizieren Versuche zu entfernen ?/home/gunnar/R/i486-pc-linux-gnu-library/2.9/00LOCK? Fehler: konnte das Verzeichnis nicht blockieren ?/home/gunnar/R/i48...
2003 Dec 24
8
G729 troubles
...(ast_set_write_format): Unable to find a path from G729A to ALAW WARNING[196633]: File chan_mgcp.c, Line 757 (mgcp_write): Asked to transmit frame type 8, while native formats is 256 (read/write = 256/256) WARNING[196633]: File app_dial.c, Line 279 (wait_for_answer): Unable to forward frame I find similary posts at Asteris-Users mailing list, but don't find how to resolve this trouble. Is this a bug or some misconfiguration at my configs ? sip.conf: [general] port = 5060 bindaddr = 0.0.0.0 context = local disallow = all allow = g729 mgcp.conf [general] port = 2427 bindaddr = 0.0.0.0 disallow =...
2015 Jul 30
4
[LLVMdev] RFC: Callee speedup estimation in inline cost analysis
...ncy instruction. Instead of using InstructionCount(BB)), we could use Sum_I(Weight(I)) where the summation is over all instructions I in B and Weight(I) represents the time it takes to execute instruction I. The dynamic instruction count of F into a callsite C after inlining InlinedDI(F, C) can be similary computed taking into account the instructions that are simplified due to inlining. The estimated speedup is Speedup(F, C) = (DI(F) - InlinedDI(F, C)) / DI(F) Speedup above a pre-determined threshold implies there is an expected benefit in inlining the callee F and hence a bonus may be applied to...
2015 Jul 31
0
[LLVMdev] RFC: Callee speedup estimation in inline cost analysis
...gt; using InstructionCount(BB)), we could use Sum_I(Weight(I)) where the > summation is over all instructions I in B and Weight(I) represents the time > it takes to execute instruction I. > > The dynamic instruction count of F into a callsite C after inlining > InlinedDI(F, C) can be similary computed taking into account the > instructions that are simplified due to inlining. The estimated speedup is > Speedup(F, C) = (DI(F) - InlinedDI(F, C)) / DI(F) > > Speedup above a pre-determined threshold implies there is an expected > benefit in inlining the callee F and hence a...
2010 Jul 23
0
[PATCH] chain.c: gpt's index/private.index mismatch fix, cosmetic iterator changes
1) public index in gpt iterator should not skip empty partitions, e.g. if we have 1st and 3rd gpt entry used, we expect the numbers to be 1 and 3, not 1 and 2 (similary to how linux sees it e.g. /dev/sda1 and /dev/sda3). It's analogous to index / mbr_index fix. 2) free(ebr_part); in mbr iterator was not reachable. ebr iterator takes care of freeing itself and its parent. 3) in ebr iterator, error jump from "insane" partition error can simply go to...
1998 Oct 29
3
Master Browser
I am using samba-1.9.18p10 in a Redhat 5.1 Linux box. I have a short question, i.e. Is it true that once the nmbd is running and becoming the Master Browser, others win95 clients will not act as Master Browser anymore ? Panyarak Ngamsritragul Department of Mechanical Engineering Prince of Songkla University.
2007 Dec 07
0
mark bag packets - iptables
...and ICMP for pinging.. If it gets anything other than that, I want to create a new chain and log and DROP . what are the suitable rules for it? what about the below rule? iptables -A INPUT -i eth0 -j bad_packets I think I need some more rules as well. Could you pls help me to go ahead. Similary, I need for FORWARD AND OUTPUT. But, If I write for INPUT , I will be able to write for FORAWAD AND OUTPUT chains. ANY IDEA? -- Thank you Indunil Jayasooriya _______________________________________________ LARTC mailing list LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/cgi-bin/mailman...
2011 Dec 21
0
the principle of the vm snapshot based on qemu-dm
...s various kinds of hardware in order to save the state of current running vm. In this way, the file saved by the cmd of 'xm save domain snapshot.save' is of large size and the operation costs much time. Is there anyelse way to qucikly create a snapshot, such as only saving the memory state(similary with Hibernation) or something else?! If someone who understands the principle or have the relevant statistics, thanks for sharing. cheers bruce _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2006 Aug 03
0
How to access records from multiple tables
Hi iam a newbie and i just wanna know to how to access data from multiple tables in a database in RoR? I have gone through the tutorial "Rolling on Ruby on Rails" on Onlamp but i get an error when i try to access data from two tables? similary, how can i update data in to multiple tables? Thanks in Advance Sathya -- Posted via http://www.ruby-forum.com/.
2007 Jan 01
2
matrix size
Hello everyone Could anybody tell me how to set the following matrix? n2<-matrix(nrow=10185,ncol=10185,seq(0,0,length=103734225)) R answer was Error: cannot allocate vector of size 810423 Kb Are there any solution? I tried to increase the memory size but it didn't work G This message has been scanned for viruses by TRENDMICRO,\ an...{{dropped}}
2006 Mar 16
2
PAM authentification problem
...ss nullok or tryed to substitute whole file pam.d/dovecot by actualy working one of imap: #%PAM-1.0 auth sufficient pam_krb5.so auth required pam_unix2.so use_first_pass nullok auth required pam_unix2.so account required pam_unix2.so but similary fruitless. Which direction I have to dig? P.S. Dovecot was built from dovecot-1.0.beta3-6.src.rpm on SuSE 9.0 with the same result like from dovecot-1.0.beta3.tar.bz2 :(