search for: sames

Displaying 20 results from an estimated 47 matches for "sames".

Did you mean: same
2007 Aug 04
2
Rewritten rsync man page
Dear Wayne, C Sights, and list, I have started working on my rewritten version of the rsync man page. So far, I have redone the top of the man page and the list of options; I improved many of the one-line option descriptions. The yodl and man versions of my man page are available here and here: http://www.kepreon.com/~matt/private/rsync-new-manpage/rsync.yo
2008 Nov 26
5
could one scenario depend on another in cucumber?
I think it is a common test case you would meet. For example, you want to test a user registry scenario. You write: Scenario: User Registry When I dosth Then I dosth ... And now business has some changes. Register should have to activate his account by a secret code sent by mobile phone. So you need to write the other scenario: Scenario: User Registry and Account Activation By Mobile
2010 Nov 30
1
yum/RPM Problem: several packages with the same name were installed, how to remove one of them ?
...lled. - So on our nodes we have several versions of "compat-dapl, compat-dapl-devel, compat-dapl-utils, libibcm, libibverb, librdmacm, mpi-selector". I would like to remove the package from CentOS (in order to have homogen OFED environment). How can I do that ? These packages target the sames files...If I remove the package of CentOS, will it erase all the files in common ? how does rpm/yum behave in this situation ? Best regards, Guillaume
2012 Aug 21
0
[LLVMdev] How to write a regression test case?
2012/8/21 Changcheng Wang <changcheng at multicorewareinc.com>: > Hi,Yang > thanks for your entire answer,i will do it follow you. > still another question puzzled me:i write a hello.c file like this: > > //RUN: llc -march=c < %s | FileCheck %s > #include"stdio.h" > > int main() { > printf ("Helloworld.\n"); > return 0; > } >
2005 Oct 06
4
Problems with ipp2p
...ing a lot of problems with peer2peer traffic. (bittorrent, kazaa, etc.) so I have installed ipp2p from rpm. Every thing was ok until I use iptables rules. I get this error. [root@router iptables]# iptables -A INPUT -p tcp -m ipp2p --ipp2p -j DROP iptables: No chain/target/match by that name sames as: iptables -A FORWARD -m ipp2p --ipp2p -j MARK --set-mark 0x01 iptables -A FORWARD -m ipp2p --udp --kazaa --bit -j DROP iptables -A FORWARD -m ipp2p --tcp --edk --soul -j DROP same error. but if I use iptables -m ipp2p -help I get the help page: [root@router iptables]# iptables -m ipp2...
2006 Jan 11
5
FreeBSD Security Advisory FreeBSD-SA-06:01.texindex
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 ============================================================================= FreeBSD-SA-06:01.texindex Security Advisory The FreeBSD Project Topic: Texindex temporary file privilege escalation Category: contrib Module: texinfo
2012 Aug 22
2
[LLVMdev] How to write a regression test case?
2012/8/21 Triple Yang <triple.yang at gmail.com>: > 2012/8/21 Changcheng Wang <changcheng at multicorewareinc.com>: >> Hi,Yang >> thanks for your entire answer,i will do it follow you. >> still another question puzzled me:i write a hello.c file like this: >> >> //RUN: llc -march=c < %s | FileCheck %s >> #include"stdio.h" >>
2012 Aug 20
4
[LLVMdev] How to write a regression test case?
hi,all: i really want to how to write a regression test case,but i do not find out a entire document about it. By reading LLVM Testing Infrastructure Guide and FileCheck - Flexible pattern matching file verifier, i only have a idea,but it is not enough for me to write a test case.i need more detail about how to write a RUN:lines. thanks for you scan,wish your letter. best wishes, changcheng
2012 Aug 21
1
[LLVMdev] How to write a regression test case?
2012/8/21 Triple Yang <triple.yang at gmail.com>: > 2012/8/21 Changcheng Wang <changcheng at multicorewareinc.com>: >> Hi,Yang >> thanks for your entire answer,i will do it follow you. >> still another question puzzled me:i write a hello.c file like this: >> >> //RUN: llc -march=c < %s | FileCheck %s >> #include"stdio.h" >>
2012 Aug 22
7
[LLVMdev] How to write a regression test case?
the example is more like what i need,it is so nice. but,i am indefinite if "RUN: FileCheck < %t.s %s" can pass,i understand that t.s was translate from t.ll,%s means read the local source,are they the same? On Wed, Aug 22, 2012 at 1:55 PM, Triple Yang <triple.yang at gmail.com> wrote: > I did an experiment just now with a test case like: > // RUN: clang %s -S -emit-llvm
2006 Jul 03
5
Ferret on 64 bit Red Hat
Can anyone verify that Ferret should work correctly on 64 bit Red Hat ES 4? The test suite gets the following segfault: ........................../unit/../unit/analysis/../../unit/index/../../unit/store/../../unit/search/tc_filter.rb:20: [BUG] Segmentation fault ruby 1.8.4 (2005-12-24) [x86_64-linux] This is with version "ferret-0.9.4" on an AMD Dual Opteron 270. -- Posted via
2012 Aug 22
0
[LLVMdev] How to write a regression test case?
I did an experiment just now with a test case like: // RUN: clang %s -S -emit-llvm -o %t.ll // RUN: llc %t.ll -o %t.s // RUN: FileCheck < %t.s %s ... // CHECK: ... And it worked. It seems clang does not take stdin as its input, so "clang < %s" fails. Meanwhile, both "llc < %t.ll" and "llc %t.ll" work. 2012/8/22 Triple Yang <triple.yang at
2012 Aug 27
0
[LLVMdev] How to write a regression test case?
hi,Yang: if you can give me a examle,which check out a string(such as "abcd") from a file(such as aaa.c) with fileCheck? i tried to write it but failed. thanks for your help! best wished! changcheng On Wed, Aug 22, 2012 at 9:30 PM, Triple Yang <triple.yang at gmail.com> wrote: > I guess so. > FileCheck has powerful extensions than just matching some strings so that >
2012 Aug 22
0
[LLVMdev] How to write a regression test case?
2012/8/22 Changcheng Wang <changcheng at multicorewareinc.com>: > the example is more like what i need,it is so nice. > but,i am indefinite if "RUN: FileCheck < %t.s %s" can pass,i > understand that t.s was translate from t.ll,%s means read the local > source,are they the same? %t indicates a temporary file for output. ".s" is just a suffix I used
2012 Aug 28
3
[LLVMdev] How to write a regression test case?
Wang, Attachment is a simple example, you may put it in test/CodeGen, and run with llvm-lit C90 It worked ok in my llvm 3.2 devel. Let know if you run into any trouble. Regards. 2012/8/27 Changcheng Wang <changcheng at multicorewareinc.com>: > hi,Yang: > if you can give me a examle,which check out a string(such as "abcd") > from a file(such as aaa.c) with fileCheck?
2017 May 29
1
mailserver.users does not exist
Hello. It appears that I have an issue with my dovecot setup. When trying to authenticate, i get this error: May 28 20:18:26 AmaechiJ dovecot[10516]: imap-login: Login: user=< aj at example.com>, method=PLAIN, rip=, lip=, mpid=10879, TLS, ses...QOQBg9rlR> May 28 20:18:42 AmaechiJ dovecot[10516]: imap(aj at example.com): Connection closed in=116 out=1311 May 28 20:20:32 AmaechiJ
2017 May 22
2
Netbios aliases
...hares. Since recently, we faced problems with some Windows 10 who fails to connect to any of those hosts. Windows XP, 7, Linux or MacOSX clients are fine. We can fix Windows 10 clients by commenting the "smb ports = 139", but with this configuration Windows7 and MacOSX clients see the sames shares for all hosts. Our server is running Debian Jessie with Samba 4.2.14-Debian. Few weeks ago we were using Samba 3.5.6. I don't know if the issue started after a Windows 10 update or the Samba update. Is there a simple workaround for this ? Thank you in advance. Guillaume Duteil
2001 Aug 08
0
Kudos to all (GC works really well)
...* collected. The memory footprint of the process did not explode. I got answers (and even the answers I wanted) in a remarkably short amount of time. I was able to do my work on a modestly configured machine (Linux, but that is less important) with 256Mb of memory. I know that in the past these sames types of analyses would have played havoc on a machine with 2Gb of memory. So thank you to the people who have finally tamed the memory monster (you know who you are, and I think I do too). Best Regards, --Mike Mike Meyer, Salter Point Associates, Seattle WA -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2013 Feb 12
1
Write a dataframe or table to clipboard as an image to paste into an email
Hi, Is there a way to write a dataframe or table to the clipboard as an image? I want to paste into an email. I use snagit or print screen to do this today but want to know if there is a way to do this through R. For example I know how to write to clipboard for copy and pasting into Excel: > write.table(df,"clipboard",sep="\t" But what's the equivalent for .png or
2004 Aug 02
2
rsync "-I" vs. "-c"
If I use the "-I" to ignore date and size as quick-check methods of determining change, what method does it use to determine difference? If it falls back to checksumming the entire file, maybe the manpage might warn that this would be as expensive as using the "-c" option...or not depending on what it uses for determining difference at that point. So exactly how does rsync