search for: firat

Displaying 20 results from an estimated 27 matches for "firat".

Did you mean: fiat
2010 Jul 19
1
Missing value
...)$conf.interval if(t1[1]>0 ||t1[2]<0)tau=tau+1 } print (tau) this code gives me Error in if (t1[1] > 0 || t1[2] < 0) tau = tau + 1 : missing value where TRUE/FALSE needed what can be done with such a warning message? i tried x<-x[!is.na(x)] but didnt work. Best Regards.. firat Yrd.Doç.Dr.A.Fýrat ÖZDEMÝR DEÜ Fen Edebiyat Fakültesi Ýstatistik Bölümü Tel: 232-412 85 52 Belge Geçer: 232-453 42 65 [[alternative HTML version deleted]]
2015 Dec 14
1
Re: block-commit fails
2013 Jul 01
3
[LLVMdev] [Polly][GSOC2013] FastPolly -- SCOP Detection Pass
>Great. Now we have two test cases we can work with. Can you >upload the LLVM-IR produced by clang -O0 (without Polly)? Since tramp3d-v4.ll is to large (19M with 267 thousand lines), I would focus on the oggenc benchmark at firat. I attached the oggenc.ll (LLVM-IR produced by clang -O0 without Polly), which compressed into the file oggenc.tgz. >2) Check why the Polly scop detection is failing > >You can use 'opt -polly-detect -analyze' to see the most common reasons >the scop detection failed. We shoul...
2016 Feb 26
1
Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")
...1; makes the same refinement, that **if** `N` is `undef` then all of the uses of `N` through the loops iteration space are the same `N`. OTOH If we *knew* `N` was `undef`, we could have correctly replaced the loop with `while (true)` (so that above loop is also problematic in the same way as the firat `k == 1 && k == 2` case. # dereferenceability We cannot reorder `readnone nounwind available_externally` functions across `@free` since there could have been: void @foo(int* ptr) available_externally { int unused = *ptr; } where the load was optimized away in the current TU but is pre...
2013 Jul 01
0
[LLVMdev] [Polly][GSOC2013] FastPolly -- SCOP Detection Pass
On 07/01/2013 06:51 AM, Star Tan wrote: >> Great. Now we have two test cases we can work with. Can you > >> upload the LLVM-IR produced by clang -O0 (without Polly)? > Since tramp3d-v4.ll is to large (19M with 267 thousand lines), I would focus on the oggenc benchmark at firat. > I attached the oggenc.ll (LLVM-IR produced by clang -O0 without Polly), which compressed into the file oggenc.tgz. Sounds good. >> 2) Check why the Polly scop detection is failing >> >> You can use 'opt -polly-detect -analyze' to see the most common reasons >&gt...
2015 Nov 04
2
vm doesn't respond after live migration
2015 Nov 04
0
Re: vm doesn't respond after live migration
...ve problems with a live migration. I’ve experienced that migrating over tcp instead of ssh is more stable. But with big disks ( > 30Gb) and –copy-storage-all, I keep getting problems… for now I don’t use it. Van: libvirt-users-bounces@redhat.com [mailto:libvirt-users-bounces@redhat.com] Namens Firat KÜÇÜK Verzonden: woensdag 4 november 2015 12:01 Aan: libvirt-users@redhat.com Onderwerp: [libvirt-users] vm doesn't respond after live migration Hi, I migrate my VM with this command: virsh migrate --live --domain my-domain --verbose --copy-storage-all --desturi qemu+ssh://root@xxx.bulutkare...
2015 Dec 13
2
block-commit fails
Hello, one of my VM's blockcommit job always fails. How can I find the reason? Error message is not clear. virsh snapshot-create-as --domain my-vm backup-snapshot \ --diskspec vda,file=/foo/my-vm-snapshot.img \ --disk-only --atomic --no-metadata virsh blockcommit my-vm vda --active --verbose --wait --async virsh blockjob my-vm vda --pivot internal error: unable to execute QEMU
2015 Dec 14
0
Re: block-commit fails
...ve-disk-backup-with-active-blockcommit your active block commit command should look like: virsh blockcommit vm1 vda --active --verbose –pivot thus one command… Does your error comes after your third command? Van: libvirt-users-bounces@redhat.com [mailto:libvirt-users-bounces@redhat.com] Namens Firat KÜÇÜK Verzonden: zondag 13 december 2015 20:00 Aan: libvirt-users@redhat.com Onderwerp: [libvirt-users] block-commit fails Hello, one of my VM's blockcommit job always fails. How can I find the reason? Error message is not clear. virsh snapshot-create-as --domain my-vm backup-snapshot \...
2016 Mar 17
1
disabling disk cache
Hello, is it possible to disable disk (vda) cache without rebooting system? Thanks.
2016 Mar 17
1
share nothing live migration causes read only filesystem
2017 Mar 31
0
Sendmail is considered deprecated
...Fri, March 31, 2017 3:57 pm, Xinhuan Zheng wrote: > Hello, > > Today I searched redhat official portal and learned that Sendmail is > considered deprecated. By default, CentOS 7 will use postfix as MTA. That was an excellent decision I welcomed the day RedHat made it. Beginning with my firat RedHat (it was somewhere around RedHat 5 IIRC) I always have been replacing venerable sendmail with postfix. > I > need good advise on what it means to us. We are CentOS customers. We use > that operating system for quite a few years. We rely on Sendmail for years > for us to relay lar...
2004 Jan 20
2
avas
Hi, I wanted to make a transformation with "avas" and "ace" but saw a message " couldn't find function "avas" " what are the possibble reasons of this case? It may be a basic question but unfortunately I am very new in R. Thanks for your helps Regards [[alternative HTML version deleted]]
2010 Apr 16
1
error
hi, i have a simulation code for some two sample tests and in the middle of the simulation, the code gave Error in if (t1[1] > 0 || t1[2] < 0) yhb = yhb + 1 : missing value where TRUE/FALSE needed what does it mean and how can it be solved.. f?rat
2004 Jan 20
2
avas and ace
Hi, Does any one know how we can decide on the correct transformation in (avas and ace) after having drawn the graphs y,g(y) x ,s(x) and g(y) ,s(x) . Is it possible by only looking at patterns the graphs follow for example when y ,g(y) shows a logaritmic pattern can we say that log transform on y is suitable? Thanks for your help. Regards [[alternative HTML version deleted]]
2016 Feb 26
0
Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")
Chandler Carruth <chandlerc at google.com> writes: > On Thu, Feb 25, 2016 at 10:40 PM Justin Bogner via llvm-dev <llvm-dev at lists.llvm.org> wrote: >>> I am *way* out of my depth here, but what if 'c' was an 'unsigned >>> char' (and not an 'int')?  Wouldn't that prevent UB, since it is >>> escaped (cannot be a register
2016 Feb 26
2
Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")
On Thu, Feb 25, 2016 at 10:40 PM Justin Bogner via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Sanjoy Das via llvm-dev <llvm-dev at lists.llvm.org> writes: > > On Thu, Feb 25, 2016 at 6:35 PM, Duncan P. N. Exon Smith > > <dexonsmith at apple.com> wrote: > >>> // In C > >>> void foo() { > >>> int c; > >>>
2007 Aug 15
1
Nginx/Mongrel proxy_read_timeout issue
This may be a nginx issue more than a mongrel one but I though folks in this list might be interested. Anyway, I have a mongrel_cluster with 2 front nginx workers as proxy. I recently replaced apache/mod_proxy for nginx, and I wasn''t aware of the 60 seconds default proxy_read_timeout so I went a head and tried to run a process via http GET. Normally because of the 60 seconds the GET I
2013 Jun 30
0
[LLVMdev] [Polly][GSOC2013] FastPolly -- SCOP Detection Pass
On 06/29/2013 05:04 PM, Star Tan wrote: > Hi all, > > > > I have investigated the compile-time overhead of "Polly Scop Detection" pass based on LNT testing results. > This mail is to share some results I have found. > > > (1) Analysis of "SCOP Detection Pass" for PolyBench (Attached file PolyBench_SCoPs.log) > Experimental results show that the
2017 Mar 31
5
Sendmail is considered deprecated
Hello, Today I searched redhat official portal and learned that Sendmail is considered deprecated. By default, CentOS 7 will use postfix as MTA. I need good advise on what it means to us. We are CentOS customers. We use that operating system for quite a few years. We rely on Sendmail for years for us to relay large quantity of emails to our customers for marketing purpose. We build our additional