search for: manoel

Displaying 20 results from an estimated 45 matches for "manoel".

Did you mean: mandel
2007 Apr 13
5
[Ferret] Serious memory leak on Joyent / TextDrive / Solaris
There is serious memory leak bug in ferret. I''m having this error on TextDrive Container (aka. Joyent Accelerators) OpenSolaris with Ferret 0.11.4 It happens while searching for some terms with accented or special characters. This makes ferret to allocate lots of memory (usually reaching 3+ GB) and failing if another query like this is executed. Any ideas on that, could this be locale
2009 Jun 08
3
[LLVMdev] Structure alignment
...4; }firstStru ; Could someone help? If, running a application in windows with MSVC, I allocate a memmory buffer and call a LLVM function with such buffer, there's a structure alignment problem. If the LLVM function call a C function using the same buffer, it runs fine. Any ideas? Thanks, Manoel Teixeira
2009 Jun 09
1
[LLVMdev] Structure alignment
Hi, It's not ok yet. When a C function calls a LLVM function, or a LLVM function calls a C function, the offset of the variables are wrong. When a don't mix LLVM with C, it's ok, but I need call extern functions using structs. Ciao Manoel Subject: Re: [LLVMdev] Structure alignment To: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> Message-ID: <f5aa3e9b0906081415oa706eadh21a7814c0f95e006 at mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 On Mon, Jun 8, 2009 at 1:53 PM, Manoel Teixeira<manoel a...
2009 Jun 04
1
[LLVMdev] Structure Alignment
...double, i32, i8* } Hi, I had not applied the layout at run time, only during the emission of the .bc. Now it's running ok when I allocate the structure point at LLVM side, but, when I allocate the structure pointer in the C side, the LLVM function does not acquire the double value correctly. Manoel Teixeira > Message: 1 > Date: Thu, 4 Jun 2009 10:39:24 -0300 > From: " Manoel Teixeira " <manoel at fonetica.com.br> > Subject: [LLVMdev] Structure Alignment > To: llvmdev at cs.uiuc.edu > Message-ID: <20090604133924.4200.qmail at hm885.locaweb.com.br> >...
2009 Apr 14
2
matching lists
...     40 three      30 two        10 one        10 six        10 > I'm trying to get a list similar to "v", but in which the entries "three", "two", and so on are replaced by the values in the second list. Any help will be greatly appreciated. best regards, Manoel [[alternative HTML version deleted]]
2009 Jan 06
2
[LLVMdev] LLVM Optmizer
...; 22 : vary = varx + nI; ; 23 : } ; 24 : ; 25 : return varx ; ; 26 : } ret 0 _TESTE ENDP _TEXT ENDS Running the same code, the objetc generated with MSVC is 600 times faster than that generate with the LLVM compiler Is threre any way to get the same optimzation with the LLVM? Manoel Teixeira
2007 Jan 21
14
[ActsAsFerret] OpenSolaris (TextDrive) indexing issues
...gain, it seems that the index is incomplete and is bringing partial results. Any suggestions on what to do? PS:. During the indexing, there is nothing being queried on the DB, actually the unique thing running on that DB was the console where I runned the rebuild_index. Thanks in advance. Manoel Lemos -- Posted via http://www.ruby-forum.com/.
2009 May 15
1
[LLVMdev] Intrinsic
...set,&Tys,1); Now, it's running with this calling : return cast<Function> llvm_module->getOrInsertFunction(std::string("llvm.eh.exception"), Intrinsic::getType(Intrinsic::eh_exception, &Tys,1)) ); Is that correct? Manoel Teixeira
2008 Apr 24
3
plotting two functions
i wanna compare functions to be simple , let's say i want x^2 and x^5 in same plot ( it's not the case but if i get it i'll understand for others ) how i do it? x<-seq(-10, 10, l=100) > plot(x^2) and? tks [[alternative HTML version deleted]]
2010 Dec 09
1
mutt freezes
Hi Sometimes mutt freezes saying "Closing connection to imap.impa.br...". Any clue? Thanks Manoel === My configuration: User-Agent: Mutt/1.5.21 (2010-09-15) # dovecot -n # 2.0.8: /etc/dovecot/dovecot.conf # OS: Linux 2.6.18-194.26.1.el5xen x86_64 CentOS release 5.5 (Final) default_client_limit = 1027 default_process_limit = 512 first_valid_gid = 1000 first_valid_uid = 1001 log_path = /var/lo...
2007 Jan 21
2
Help with Installation on OpenSolaris (TextDrive Containers)
Gents, I installed ferret successfully in my MacOS (rails development) using the gem install. I did some tests and everything worked fine. Then I tried to install it on the same way on my production environment at TextDrive? running OpenSolaris? (container). This time ''gem install ferret'' seems to be completed: [92140-AA:~/web/labs/blogblogs/trunk] root# gem install ferret
2007 Apr 01
9
Important issue with [AAF] and :select
This is important and may be affecting you if you use :select to minimize the columns you need on big queries. If you use :select to define which columns you need and you have not included all the columns you defined in the :acts_as_ferret field definitions you''ll clear the content of those fields on the ferret index. And that may corrupt your index. So, if you have in your model:
2007 Mar 31
3
Sorting issues, can anyone help me?
...verse => :no)} )[1].first.posted_at_sort => [1146857920] >> h,r = Post.full_text_search("voltamos", {:sort => Ferret::Search::SortField.new("rank_sort", :reverse => :no)} )[1].last.posted_at_sort => [1085549830] >> Can anyone help me with this? []s Manoel -- Posted via http://www.ruby-forum.com/.
2009 Mar 10
1
[LLVMdev] llvm + stdcxx
I tried to compile LLVM + stdcxx and I got a lot of compiling errors. Did anyone got that? Manoel Teixeira
2008 Jul 07
1
imap-login: socketpair() failed: Too many open files
...exes/%u mbox_read_locks: dotlock fcntl mbox_write_locks: dotlock fcntl mail_log_prefix: %Us(%u): pid=%p, rip=%r, lip=%l, auth default: passdb: driver: passwd-file args: /etc/dovecot.deny deny: yes passdb: driver: pam userdb: driver: passwd Any suggestion? Thanks Manoel
2009 Jan 07
3
[LLVMdev] LLVM optmization
...O3 option and MSVC with /O2. The MSVC one is about 600 times faster than the one compiled with the LLVM. We can see that the for loop in MSVC assembler is solved in the optimization pass more efficiently than that in LLVM. Is there an way to get a optimization result in LLVM like that of the MSVC? Manoel Teixeira #include <windows.h> #include <stdio.h> int TESTE ( int parami ,int paraml ,double paramd ) { int varx=0,vary=0; int nI =0; if( parami > 0 ) { varx = parami; vary = 0; } else { varx = 0; vary = paraml; } for( nI = 1 ; nI <= par...
2009 Jan 08
0
[LLVMdev] LLVMdev Digest, Vol 55, Issue 16
...TESTE function, is done without jump's in the MSVC and with jumps in LLVM. I think thats the point. If we don't use threads, the result is the same. My test were done with one billion interactions in the for loop. The MSVC spent 47 miliseconds and the LLVM version 32 seconds. Thanks, Manoel Teixeira Wed, 07 Jan 2009 15:35:59 -0600, llvmdev-request at cs.uiuc.edu escreveu: > Send LLVMdev mailing list submissions to > llvmdev at cs.uiuc.edu > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > or,...
2020 Jan 30
3
SSH certificates - restricting to host groups
On 30/01/2020 12:53, Michael Str?der wrote: > On 1/30/20 1:27 PM, Brian Candler wrote: >> I am trying to work out the best way to issue SSH certificates in such >> way that they only allow access to specific usernames*and* only to >> specific groups of host. > I also thought about this for a while. The only idea I came up with is > to have separate CAs used as trust
2007 Apr 08
10
[ActsAsFerret] Fatal failed to allocate memory in DRb
I''m using DRb with edge [AAF] and my server is really fast reaching 3GB+ of memory and soon it will crash with this message: [FATAL] failed to allocate memory Now its like this: 10542 bbs 2 59 0 3649M 3647M sleep 1:27 0.10% runner Anybody has any ideas on this? -- Posted via http://www.ruby-forum.com/.
2009 Jan 14
0
[LLVMdev] LLVM optmization
Hi Manoel, > Hi, Duncan. > > Here an example : > #include <stdio.h> > #include <stdlib.h> > // > int TESTE ( int parami ,int paraml ) > { > int varx=0; > int nI =0; > > if( parami > 0 ) > { > varx = parami; > } > els...