search for: talkativeness

Displaying 20 results from an estimated 21 matches for "talkativeness".

2020 Feb 13
3
setOperands(int, Value*)
Hello, I am trying to reset the operands of instructions. What I am doing is, I am finding all Uses of a specific operand in an Instruction and resetting it with a new value using "setOperands(int, Value*)". I am doing as: for (auto vmitr=vm.begin(), vsitr=vs.begin(); vmitr!=vm.end() && vsitr!=vs.end(); vmitr++, vsitr++){ // I have two *Value ( operands) for ( auto myitr
2020 Jan 29
2
Value &operator=(const Value &) = delete;
Does it mean we can not dereference the Value variables? Value *val = some operand of an instruction; Value *val2= some operand of another instruction; I am trying to rewire the operand values of an instruction using: *val = *val2; It seems that this is not allowed. Thanks, -- Abid M. Malik ****************************************************** "I have learned silence from the
2020 Jan 19
3
Instruction arguments
Hello, I am loop over the arguments of a call instruction : ----> for (Value *arg: c->args()){ errs() << *arg << "\n"; arg->print(llvm::errs(), false); errs()<<"\n"; } -----> How can I convert the arg for binary comparison(== etc.)? If I am correct, it is not a string. If the argument is "i32 1",
2018 Jul 05
3
trying to resurrect discussion about "Cannot signal a process over a channel (rfc 4254, section 6.9)"
> At one point, I had wondered about separating out the client and server > support as well. At first glance, that would seem to help move things > forward and would address most of the reported use cases. However, I > have some users who would need the client support as well. > > I suspect that adding the server support first might be a problem for > the developers. Such a
2012 Sep 13
1
[LLVMdev] Clang support for CUDA
Hi: Does Clang support CUDA? I am looking for a front end for my compiler that can take CUDA programming framework. Thanks, -- *Abid ****************************************************** "I have learned silence from the talkative, toleration from the intolerant, and kindness from the unkind"---Gibran "Success is not for the chosen few, but for the few who choose" --- John
2004 Sep 21
1
Bridge master and wine 20040919
Hello Thanks to Beatriz Botero I know such thing should work nice. But I try some combinations and always get result as on pictures: http://www.janek.gwozdzie.dhs.org/pliki/screenbad.png while it shoud be http://www.janek.gwozdzie.dhs.org/pliki/screengood.png I would prefer fake-windows but tried also with real ones. My system is slackware-current with kernel 2.6.9-rc1 but then I tried knoppix 3.6
2015 Feb 28
1
[LLVMdev] LLVM short comings regarding polyhedral and vectorization optimizations
Dear All; Is there any work that discusses ​LLVM framework's short comings regarding auto vectorization and polyhedral optimizations? Regards, > -- Abid M. Malik ****************************************************** "I have learned silence from the talkative, toleration from the intolerant, and kindness from the unkind"---Gibran "Success is not for the chosen few, but
2020 Jan 23
2
Replacing operands in a call instruction
Hello, I am trying to replace a pointer argument of a call instruction with another pointer argument( new argument value for the call instruction). What is the best way to do it? I could not find any hint/guidance on the web or LLVM manual. Thanks, -- Abid M. Malik ****************************************************** "I have learned silence from the talkative, toleration from the
2019 Nov 18
1
logging of ldap queries
Hi everyone, I am looking at a way to easily trace ldap queries to easily single out computers that have buggy software that download the whole AD (like a getent passwd with winbind enum users = yes for example). Increasing the debug level to 5 gives me the result I am looking for, however it is very very talkative and it fills up the log partition way too fast. I wanted to try to single out one
2003 Aug 12
0
excellently
...mbards illuminate boiler brass boggled melts > accomplishes asher screen exemplar creep mentors crept televised poems > exponent tempestuously accruing immaculate exchequer tattler > exhilarate accessibility countries 4th sclerosis hospice blvd > hypothalamic tappet acronyms talkativeness meridional botches allstate > bodybuilding exceeding powder boyishness breaches hydrology satanic > breaching cringe tall bowdlerize excretion boomerangs illustrations > ampex maybe bonaventure icings temperance portulaca militarily > accordions blaine > > References...
2004 Mar 17
4
Traceroute equivalent
Is there a traceroute equivalent in the VoIP world? I would like to see the route a call takes after it gets to the gateway. Basically showing all the hops until it reaches it's destination or PSTN termination. -Dave
2008 Dec 12
2
imap quota makes the Alarm clock expire
Hello list, I have a strange problem with dovecot and quota. The error message is not obvious... After a couple of seconds when I try to start dovceot, I get this: root at taleira:~# /etc/init.d/dovecot start Alarm clock If I uncomment the "imap_quota and quota" in dovecot.conf everything seem to work fine: protocol imap { listen = *:143 ssl_listen = *:993 # problem pa
2019 Nov 08
1
Suggested update to the Wiki page on PXElinux (UEFI-related stuff in ISC dhcpd.conf)
On 8 Nov 2019 at 0:42, Ady Ady via Syslinux wrote: > [in response to my = Frank Rysanek's rantings a few hours earlier:] > > if option architecture-type = 00:09 { > > filename "path/to/EFIx64/syslinux.efi"; > > } ... > > if substring (option vendor-class-identifier, 15, 5) = "00007" { > > filename
2012 Mar 15
2
Lack of external documentation?
Firstly, this isn't meant to be critical, and I realize the subject line probably suggest criticism, so... I was sort of forced into using dovecot as my imap/pop server due to upgrading 3 versions of OS on my mail servers. So far, that's not bad. What surprises me is that one of the first things I usually do whenever I start using different software is to purchase a book that seems to
2018 Jul 05
2
trying to resurrect discussion about "Cannot signal a process over a channel (rfc 4254, section 6.9)"
Hi everybody I?d like to resurrect the discussion on a known issue with the openssh server, regarding signal delivery as described in rfc4254 This has been originally reported about ten years ago in this thread: https://bugzilla.mindrot.org/show_bug.cgi?id=1424 I am taking he liberty to copy a few people who contributed that thread over time The discussion does not seem to expose the reasons
2018 Jul 13
2
trying to resurrect discussion about "Cannot signal a process over a channel (rfc 4254, section 6.9)"
Hi, >>> It would be nice to know what the precise technical issues are that have >>> prevented support for this from being added. From what I recall, it >>> seemed like the delay was largely due to details of the client >>> behaviour, and possibly some feature creep. It would indeed be really great to have some details on this point. Concerning the test of
2020 Sep 30
2
lifetime_start/end
Hello, What intrinsics "@llvm.lifetime.start/@llvm.lifetime.end" really do? As per my knowledge, they define the live ranges of variables. In the following code section, they seem redundant. However, when I remove them, the behavior of the code becomes non-deterministic. The live ranges of the variables defined by them are never used in the code. Thanks, --------------- %37 = bitcast
2019 Nov 07
3
Suggested update to the Wiki page on PXElinux (UEFI-related stuff in ISC dhcpd.conf)
Dear gentlemen, here goes the documentation fix I was talking about :-) The Wiki page on PXElinux, specifically the chapter on UEFI at the end of that page: https://wiki.syslinux.org/wiki/index.php?title=PXELINUX#UEFI ...contains a few examples of ISC DHCPd configuration. The stumbling block for me was the syntax of these "if" scopes: if option architecture-type = 9 { filename
2015 Sep 08
2
Different behavior of ACLs in MUA and doveadm
* Timo Sirainen <tss at iki.fi> 2015.09.08 12:20: > How does the PublicMailboxAdmins group get set? Looks to me like the problem is that it's not getting set to doveadm. Here's an easy way to check if that's the problem or something else: http://hg.dovecot.org/dovecot-2.2/rev/500e8dd7a389 > > If that doesn't help: Show your full doveconf -n, set auth_debug=yes and
2014 Dec 31
3
Different behavior of ACLs in MUA and doveadm
I have noticed a difference in the behavior of ACLs. When used in a MUA the following global ACL works fine and has the desired effect - new mailboxes can be created by a user being part of the 'PublicMailboxAdmins' group: [ global-acl: ] INBOX owner lrwstiekxap Public/* group=PublicMailboxAdmins lrwsipk Public/* anyone lr Public/* authenticated lrws Creating the same mailbox via