search for: isnot

Displaying 20 results from an estimated 38 matches for "isnot".

Did you mean: isn't
2010 Jun 21
2
[LLVMdev] MC: Object file specific parsing
...lt;MCParsedAsmOperand*, 8> ParsedOperands; - bool HadError = getTargetParser().ParseInstruction(Opcode.str(), IDLoc, - ParsedOperands); + bool HadError = ParseInstruction(Opcode.str(), IDLoc, ParsedOperands); if (!HadError && Lexer.isNot(AsmToken::EndOfStatement)) HadError = TokError("unexpected token in argument list"); // If parsing succeeded, match the instruction. if (!HadError) { MCInst Inst; - if (!getTargetParser().MatchInstruction(ParsedOperands, Inst)) { + if (!MatchInstruction(ParsedOpera...
2018 Sep 28
3
error: expected memory with 32-bit signed offset
...1cd60ac gslbx           $2,0($3,$4) It is equivalent to: dadd $1, $3, $4 lb $2,0($1) I just use  mem_simmptr  as the default value of  DAGOperand MO , because  MipsMemAsmOperand  use  parseMemOperand  to parse general  MemOffset  and only *one*  AnyRegister , for example: 0($1) But  Comma  isNot  AsmToken::RParen , for example: 0($3,$4) Then llvm-mc thrown such error: test/MC/Mips/loongson3a/valid.s:32:32: error: ')' expected         gslbx           $2,0($3,$4)                                           ^ test/MC/Mips/loongson3a/valid.s:32:32: error: unexpected token in argume...
2011 May 20
5
xferlog not rotating.
I am not sure how to correctly troubleshoot this. I just noticed that my /var/log/xferlog file is huge. There are no files in /etc/logrotate.d/ for xferlog. This is what leads me to believe that it isnot rotating. Or perhaps I do not have it set to rotate. I am not sure. I am running CentOS release 5 (Final). Can someone tell me what I, apparently, do not have configured correctly. Thank you. PATI MOSS System Engineer Sr. Professional CSC -------------- next part -------------- An HTML attach...
2011 Aug 16
8
0.0.0.0:300 --> this web page isnot availabe
hi all, I''m very new to ruby on rails. and i have a problem while trying to run my first application. i''m created a rails application and controller called say conains action called hello and put some html code in app--view--say--say.rhtml and when i run 0.0.0.0:3000/say/hello i get this message "this webpage isn''t available" and also tried to remove "
2019 Nov 14
2
Filesystem does not support posix ACLs
Thanks a lot for the reference how to make the regtest. One last question please, if understand this correctly, the --use-ntvfs isnot available by default when installing the Debian package, so I need to compile samba with --with-ntvfs-fileserver to make the option available? On 11/14/19 8:52 AM, Andrew Bartlett wrote: > On Thu, 2019-11-14 at 07:30 +0000, Ghassan Elrayah wrote: >> Hi, >> >> I am trying to g...
2009 Jul 13
0
[LLVMdev] Clang source question around failing MSVC build
...] compiler¥llvm¥tools¥clang¥include¥clang/Parse/Ownership.h(411) : see dec laration of 'clang::ASTOwningResult<Destroyer>::operator =' with [ Destroyer=::up▲ ] The problems comes with the following code: } else if (Tok.isNot(tok::r_square)) { // Note, in C89, this production uses the constant-expr production instead // of assignment-expr. The only difference is that assignment-expr allows // things like '=' and '*='. Sema rejects these in C89 mode because they // are not i-c-e'...
2008 Jan 29
1
Help needed on Normality test
...alternative hypothesis: two-sided How ever "Shapiro-Wilk" test give following : > shapiro.test(data) Shapiro-Wilk normality test data: data W = 0.9946, p-value = 0.07562 also, > sd(data) [1] 0.01625074 2nd test saying data is from normal however 1st isnot. Which one is correct? Am I missing something? Regards, --------------------------------- [[alternative HTML version deleted]]
2023 Jan 31
1
Using separate packages for a DC
On Mon, 2023-01-30 at 16:44 +0300, Michael Tokarev via samba wrote: > After realizing that people don't realize (heh) samba DC isnot a > regular fileserver, an idea come to me. > How about building two different samba packages (on a > distributionsuch as debian), one being a regular file server and > another isjust for an AD DC, and make them *co-installable*, so each > hasits own set of config/library/cache/runti...
2011 Dec 06
5
Argument validation within functions
Hi, I just started with writing functions in R and so some questions popped up. I provide some values as argument to my function such as: function(a,b,c){} Now i want that the function first checks if the arguments are valid for the function. E.g argument "a" has to be a number in the range 0-1. How can that easily done? So far I have: a <- as.numeric(a) if(0 <= a &&
2012 Aug 21
0
[LLVMdev] How to write a regression test case?
...> ;RUN: llc -march=c < %s | FileCheck %s > ....... > ;CHECK..... > > but,when i thanslate the hello.c with clang,the sentence "//RUN: llc > -march=c < %s | FileCheck %s" was treated as comment. > > it samed the method translating hello.c to hello.ll is wrong,isnot it? To translate a .c file to a .ll file, you should wirte, for example, clang -emit-llvm -S test.c -o test.ll And the corresponding command for regression test might be: ; RUN: clang < %s -emit-llvm -S | FileCheck %s Regards. (PS. When you reply to this email, make sure you send...
2012 Aug 22
2
[LLVMdev] How to write a regression test case?
...; %s | FileCheck %s >> ....... >> ;CHECK..... >> >> but,when i thanslate the hello.c with clang,the sentence "//RUN: llc >> -march=c < %s | FileCheck %s" was treated as comment. >> >> it samed the method translating hello.c to hello.ll is wrong,isnot it? > > To translate a .c file to a .ll file, you should wirte, for example, > clang -emit-llvm -S test.c -o test.ll > > And the corresponding command for regression test might be: > ; RUN: clang < %s -emit-llvm -S | FileCheck %s We can write: // RUN: clang < %s...
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?
...; %s | FileCheck %s >> ....... >> ;CHECK..... >> >> but,when i thanslate the hello.c with clang,the sentence "//RUN: llc >> -march=c < %s | FileCheck %s" was treated as comment. >> >> it samed the method translating hello.c to hello.ll is wrong,isnot it? > > To translate a .c file to a .ll file, you should wirte, for example, > clang -emit-llvm -S test.c -o test.ll > > And the corresponding command for regression test might be: > ; RUN: clang < %s -emit-llvm -S | FileCheck %s > Sorry for my carelessness. The...
2012 Aug 22
7
[LLVMdev] How to write a regression test case?
...;> ;CHECK..... >>>> >>>> but,when i thanslate the hello.c with clang,the sentence "//RUN: llc >>>> -march=c < %s | FileCheck %s" was treated as comment. >>>> >>>> it samed the method translating hello.c to hello.ll is wrong,isnot it? >>> >>> To translate a .c file to a .ll file, you should wirte, for example, >>> clang -emit-llvm -S test.c -o test.ll >>> >>> And the corresponding command for regression test might be: >>> ; RUN: clang < %s -emit-llvm -S | Fi...
2012 Aug 22
0
[LLVMdev] How to write a regression test case?
...> ....... >>> ;CHECK..... >>> >>> but,when i thanslate the hello.c with clang,the sentence "//RUN: llc >>> -march=c < %s | FileCheck %s" was treated as comment. >>> >>> it samed the method translating hello.c to hello.ll is wrong,isnot it? >> >> To translate a .c file to a .ll file, you should wirte, for example, >> clang -emit-llvm -S test.c -o test.ll >> >> And the corresponding command for regression test might be: >> ; RUN: clang < %s -emit-llvm -S | FileCheck %s > > We...
2012 Aug 27
0
[LLVMdev] How to write a regression test case?
...gt; but,when i thanslate the hello.c with clang,the sentence "//RUN: llc >>>>>>>> -march=c < %s | FileCheck %s" was treated as comment. >>>>>>>> >>>>>>>> it samed the method translating hello.c to hello.ll is wrong,isnot it? >>>>>>> >>>>>>> To translate a .c file to a .ll file, you should wirte, for example, >>>>>>> clang -emit-llvm -S test.c -o test.ll >>>>>>> >>>>>>> And the corresponding command for reg...
2012 Aug 22
0
[LLVMdev] How to write a regression test case?
...t;>>>> >>>>> but,when i thanslate the hello.c with clang,the sentence "//RUN: llc >>>>> -march=c < %s | FileCheck %s" was treated as comment. >>>>> >>>>> it samed the method translating hello.c to hello.ll is wrong,isnot it? >>>> >>>> To translate a .c file to a .ll file, you should wirte, for example, >>>> clang -emit-llvm -S test.c -o test.ll >>>> >>>> And the corresponding command for regression test might be: >>>> ; RUN: clang &l...
2012 Aug 28
3
[LLVMdev] How to write a regression test case?
...i thanslate the hello.c with clang,the sentence "//RUN: llc >>>>>>>>> -march=c < %s | FileCheck %s" was treated as comment. >>>>>>>>> >>>>>>>>> it samed the method translating hello.c to hello.ll is wrong,isnot it? >>>>>>>> >>>>>>>> To translate a .c file to a .ll file, you should wirte, for example, >>>>>>>> clang -emit-llvm -S test.c -o test.ll >>>>>>>> >>>>>>>> And the correspon...
2019 Nov 14
0
Filesystem does not support posix ACLs
...y remove it, come back and we will find a way to keep this working for you. Andrew Bartlett On Thu, 2019-11-14 at 07:59 +0000, Ghassan Elrayah via samba wrote: > Thanks a lot for the reference how to make the regtest. > One last question please, if understand this correctly, the --use-ntvfs isnot available by default when installing the Debian package, so I need to compile samba with --with-ntvfs-fileserver to make the option available? > > > On 11/14/19 8:52 AM, Andrew Bartlett wrote: > > On Thu, 2019-11-14 at 07:30 +0000, Ghassan Elrayah wrote: > > > Hi, > &gt...
2006 Jan 09
11
Fast Ruby Debugger?
After developing in Java for years in IDEs I''m starving for a decent ruby debugger. When learning new codebasesI find it invaluable to use the debugger to step through the system and see how things work at runtime. Using RDT in Eclipse is fine but it''s excruciating to wait minutes for the default debugger to finally reach my breakpoints on tests that normally take seconds to