search for: nazar

Displaying 20 results from an estimated 43 matches for "nazar".

Did you mean: kazar
2006 Aug 15
1
rails and MSSQL transactions
...eral windows will produce that error. MS suggests (http://support.microsoft.com/default.aspx?scid=kb%3Ben-us%3B272358): Use a server-side or client-side cursor other than the forward-only and read-only (often called a firehose) cursor. Anyone know how to do this? Help is appreciated. Thanks, Nazar -- Posted via http://www.ruby-forum.com/.
2013 Nov 04
2
[LLVMdev] conditional flow resulting in "Instruction does not dominate all uses!"
On 4 November 2013 08:19, Henrique Santos <henrique.nazare.santos at gmail.com> wrote: > Well, what I had in mind was actually something like the following: > > entry: > result0 = invoke func0 to defer_block unwind landing0 > > landing0: > landingpad > result1 = invoke func1 to defer_block unwind landing1 > > landing...
2013 Nov 13
2
[LLVMdev] dominator, post-dominator and memory leak
Thanks! I will try that and see whether it works. On Wed, Nov 13, 2013 at 5:01 AM, Henrique Santos < henrique.nazare.santos at gmail.com> wrote: > It seems that placing the calls to free at the predecessors of dominance >> frontier is inadequate. It is possible that there are exit blocks that are >> dominated by BB12 (calls to malloc). I guess we can also insert calls to >> free at these...
2013 Nov 04
2
[LLVMdev] conditional flow resulting in "Instruction does not dominate all uses!"
On 4 November 2013 02:31, Henrique Santos <henrique.nazare.santos at gmail.com> wrote: > But the incoming value from the landing pad will always be null, won't it? > If so, just iterate through the predecessors and add the terminator as the > incoming value if it's an invoke instruction and add the null value it's > not. > Wo...
2013 Nov 15
2
[LLVMdev] dominator, post-dominator and memory leak
...re variable length objects allocated through alloca. Otherwise, frame pointer can be omitted as an optimization. If we can ensure that they are deallocated correctly, frame pointers can be omitted even if variable length objects exist. On Wed, Nov 13, 2013 at 5:01 AM, Henrique Santos < henrique.nazare.santos at gmail.com> wrote: > It seems that placing the calls to free at the predecessors of dominance >> frontier is inadequate. It is possible that there are exit blocks that are >> dominated by BB12 (calls to malloc). I guess we can also insert calls to >> free at these...
2013 Nov 13
3
[LLVMdev] dominator, post-dominator and memory leak
Hi Henrique, Thanks for the quick reply! On Tue, Nov 12, 2013 at 9:13 PM, Henrique Santos < henrique.nazare.santos at gmail.com> wrote: > PRE normally uses a latest placement algorithm to do something of the sort. > I don't know about GVN/PRE, but older version of PRE might have it. > Just placing the calls to free at the predecessors (dominated by BB12) of > the dominance frontier o...
2017 Jun 06
1
[Announce] Samba 4.6.5 Available for Download
...g of events in notifyd. o Volker Lendecke <vl at samba.org> * BUG 12757: idmap_rfc2307: Lookup of more than two SIDs fails. o Stefan Metzmacher <metze at samba.org> * BUG 12767: samba-tool: Let 'samba-tool user syncpasswords' report deletions immediately. o Doug Nazar <nazard at nazar.ca> * BUG 12760: s3: smbd: inotify_map_mask_to_filter incorrectly indexes an array. o Andreas Schneider <asn at samba.org> * BUG 12687: vfs_expand_msdfs tries to open the remote address as a file path. o Martin Schwenke <martin at meltin.net>...
2017 Jun 06
1
[Announce] Samba 4.6.5 Available for Download
...g of events in notifyd. o Volker Lendecke <vl at samba.org> * BUG 12757: idmap_rfc2307: Lookup of more than two SIDs fails. o Stefan Metzmacher <metze at samba.org> * BUG 12767: samba-tool: Let 'samba-tool user syncpasswords' report deletions immediately. o Doug Nazar <nazard at nazar.ca> * BUG 12760: s3: smbd: inotify_map_mask_to_filter incorrectly indexes an array. o Andreas Schneider <asn at samba.org> * BUG 12687: vfs_expand_msdfs tries to open the remote address as a file path. o Martin Schwenke <martin at meltin.net>...
2013 Nov 13
0
[LLVMdev] dominator, post-dominator and memory leak
...try coming up with another solution instead. You might consider using -mergereturn. H. On Wed, Nov 13, 2013 at 2:13 AM, Bin Tzeng <bintzeng at gmail.com> wrote: > Hi Henrique, > Thanks for the quick reply! > > On Tue, Nov 12, 2013 at 9:13 PM, Henrique Santos < > henrique.nazare.santos at gmail.com> wrote: > >> PRE normally uses a latest placement algorithm to do something of the >> sort. >> I don't know about GVN/PRE, but older version of PRE might have it. >> Just placing the calls to free at the predecessors (dominated by BB12) of >...
2013 Nov 09
2
[LLVMdev] Warnings on Opt passes
On 9 November 2013 15:03, Henrique Santos <henrique.nazare.santos at gmail.com>wrote: > It seems like a difficult thing to do since we would have to keep metadata > intact across transformations, which, AFAIK, is not done. > mem2reg, for example, doesn't even propagate debug metadata to phi nodes, > and I'm not really sure if it...
2003 Nov 26
3
Backup with rsync until one month
...d like to do in a way like this, that the rsync make a backup of the changed files until one month long. EX:- file.bak.001 file.bak.002 ..... This file will be to get always, and so i can get the all files untill an one month old version of the file. Is it possible? Regardes Dipl.-Ing. Nazar Hassan Tel +49 (02 41) 9 91 21-13 Fax +49 (02 41) 9 91 21-59 nhassan@databay.de Databay AG H?ttenstra?e 7 D-52068 Aachen www.databay.de
2013 Nov 15
0
[LLVMdev] dominator, post-dominator and memory leak
...located through alloca. Otherwise, frame > pointer can be omitted as an optimization. If we can ensure that they are > deallocated correctly, frame pointers can be omitted even if variable > length objects exist. > > On Wed, Nov 13, 2013 at 5:01 AM, Henrique Santos < > henrique.nazare.santos at gmail.com> wrote: > >> It seems that placing the calls to free at the predecessors of dominance >>> frontier is inadequate. It is possible that there are exit blocks that are >>> dominated by BB12 (calls to malloc). I guess we can also insert calls to >&g...
2013 Nov 13
0
[LLVMdev] dominator, post-dominator and memory leak
...mayThrow(), changing their calls to invokes, and freeing the memory before resuming the unwinding. -Hal ----- Original Message ----- > > > Thanks! I will try that and see whether it works. > > > > > On Wed, Nov 13, 2013 at 5:01 AM, Henrique Santos < > henrique.nazare.santos at gmail.com > wrote: > > > > > > > It seems that placing the calls to free at the predecessors of > dominance frontier is inadequate. It is possible that there are exit > blocks that are dominated by BB12 (calls to malloc). I guess we can > also inser...
2013 Nov 04
0
[LLVMdev] conditional flow resulting in "Instruction does not dominate all uses!"
...would make much difference. The "defer block", however, is the target of multiple invokes. I hope this makes sense. : ) H. On Mon, Nov 4, 2013 at 1:54 PM, Rafael Espíndola <rafael.espindola at gmail.com > wrote: > On 4 November 2013 02:31, Henrique Santos > <henrique.nazare.santos at gmail.com> wrote: > > But the incoming value from the landing pad will always be null, won't > it? > > If so, just iterate through the predecessors and add the terminator as > the > > incoming value if it's an invoke instruction and add the null value i...
2013 Nov 04
0
[LLVMdev] conditional flow resulting in "Instruction does not dominate all uses!"
If you're talking about the IR, then I don't think so. It seems like perfectly valid. H. On Mon, Nov 4, 2013 at 2:25 PM, Rafael Espíndola <rafael.espindola at gmail.com > wrote: > On 4 November 2013 08:19, Henrique Santos > <henrique.nazare.santos at gmail.com> wrote: > > Well, what I had in mind was actually something like the following: > > > > entry: > > result0 = invoke func0 to defer_block unwind landing0 > > > > landing0: > > landingpad > > result1 = invoke func1 to defer...
2010 Nov 24
1
NameError in Devise/sessionsController#new
...class. define some permissions. Then added line load_and_authorize_resource to the Application Controller, after that when i go to the page http://0.0.0.0:3000/users/sign_in it gave the following error, NameError in Devise/sessionsController#new uninitialized constant Session Rails.root: /home/nazar/rails_projects/sample_can Please help me, i can not solve this issue. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To u...
2013 Nov 10
0
[LLVMdev] Warnings on Opt passes
...vectorizer and provided a few patches in that thread. It might help for implementing, testing or reasoning about what you're proposing. H On Sat, Nov 9, 2013 at 9:21 PM, Renato Golin <renato.golin at linaro.org>wrote: > On 9 November 2013 15:03, Henrique Santos < > henrique.nazare.santos at gmail.com> wrote: > >> It seems like a difficult thing to do since we would have to keep >> metadata intact across transformations, which, AFAIK, is not done. >> mem2reg, for example, doesn't even propagate debug metadata to phi nodes, >> and I'm not...
2017 May 18
0
[Announce] Samba 4.5.9 Available for Download
...2307: Fix lookup of more than two SIDs. o Stefan Metzmacher <metze at samba.org> * BUG 12767: samba-tool: Let 'samba-tool user syncpasswords' report deletions immediately. * BUG 12725: pam_winbind: no longer use wbcUserPasswordPolicyInfo when authenticating. o Doug Nazar <nazard at nazar.ca> * BUG 12760: s3: smbd: inotify_map_mask_to_filter incorrectly indexes an array. o Christof Schmitt <cs at samba.org> * BUG 12725: winbindd: Fix password policy for pam authentication. o Andreas Schneider <asn at samba.org> * BUG 12277: waf: E...
2017 May 18
0
[Announce] Samba 4.5.9 Available for Download
...2307: Fix lookup of more than two SIDs. o Stefan Metzmacher <metze at samba.org> * BUG 12767: samba-tool: Let 'samba-tool user syncpasswords' report deletions immediately. * BUG 12725: pam_winbind: no longer use wbcUserPasswordPolicyInfo when authenticating. o Doug Nazar <nazard at nazar.ca> * BUG 12760: s3: smbd: inotify_map_mask_to_filter incorrectly indexes an array. o Christof Schmitt <cs at samba.org> * BUG 12725: winbindd: Fix password policy for pam authentication. o Andreas Schneider <asn at samba.org> * BUG 12277: waf: E...
2013 Jun 08
2
Compile error with gfortran-4.6
...n("hello") ### Error message /home/fmcron/Documentos/Fortran/OpenMP/exemplos/hello.so: undefined symbol: _gfortran_transfer_character_write Thanks           Fábio Mathias Corrêa    Universidade Estadual de Santa Cruz Departamento de Ciências Exatas e da Terra - DCET Campus Soane Nazaré de Andrade, km 16 Rodovia Ilhéus-Itabuna CEP 45662-900. Ilhéus-Bahia [[alternative HTML version deleted]]