Displaying 20 results from an estimated 47 matches for "sameness".
Did you mean:
safeness
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 ?
Hi,
We have a cluster with CentOS 5.5 installed with oscar. The firm which
has pre-installed the cluster has done strange things...and now I get
problems:
- if I understand correctly what was done, several infiniband CentOS
packages were installed (compat-dapl, compat-dapl-devel,
compat-dapl-utils, libibcm, libibverb, librdmacm, mpi-selector).
- Then the tar package from OFED was installed.
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
Hello every body:
I have RedHat fedora core 2 machine, using iptables and squid. I am having 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
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
Hi,
We have been using for years the option "netbios aliases" with 9 aliases
(+ 1 main host).
Each one has it's own shares.
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
2001 Aug 08
0
Kudos to all (GC works really well)
I am a lurker on the mailing list and a quiet but active user of R. I
recently needed to do some exploration and modelling on a large set of
data. In the past I would have been sceptical about how well R's
memory management and garbage collection would perform. I fully
expected R or my operating system to grind to a crashing halt.
However I was delighted with the memory performance.
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