search for: lnstr

Displaying 9 results from an estimated 9 matches for "lnstr".

Did you mean: instr
2016 Jun 24
4
Postfix and Dovecot LDA vs. LMTP
I'm new to Dovecot and will be using it with Postfix. I'm looking for recommendations regarding the use of Dovecot's LDA or LMTP for virtual mailbox delivery. Many of the simple examples on the wiki use LDA. So I've set that up initially. But apparently an advantage of LMTP is recipient verification. So, as I understand it, LMTP would let Postfix know whether or not the
2016 Jun 25
3
Postfix and Dovecot LDA vs. LMTP
...> > > > > > > > Thanks much, > > > > Michael > > > > > > > > > > > -- > kivitendo mit Schnelleinstieg zu RB-Druckvorlagen im Linux-Magazin 07 > DELUG-DVD Ausgabe > > Richardson & B?ren GmbH > Jan B?ren > K?lnstr. 311 > 53117 Bonn > > USt-IdNr. DE238288407 > Telefon: 0228 92 98 2012 > > > Durchwahl: 0228 92 97 8965
2013 May 02
2
[LLVMdev] int to StringRed conversion
I think the better solution should be: LLVMContext& C = is->getContext(); Value *values[] = { ConstantInt::getSigned(Type::getInt64Ty(C), *scsr*), MDString::get(C, *"path"*) }; lnstr.setMetadata(*"your_analysis_name"*, MDNode::get(C, values)); So that you can take advantage of the type system of LLVM bitcode, and don't have to cast the integers from/to strings by yourself. Logan On Thu, May 2, 2013 at 11:10 PM, Alexandru Ionut Diaconescu < alexandruionutdia...
2013 May 02
0
[LLVMdev] int to StringRed conversion
...n Chien <tzuhsiang.chien at gmail.com>wrote: > I think the better solution should be: > > > LLVMContext& C = is->getContext(); > Value *values[] = { > ConstantInt::getSigned(Type::getInt64Ty(C), *scsr*), > MDString::get(C, *"path"*) > }; > > lnstr.setMetadata(*"your_analysis_name"*, MDNode::get(C, values)); > > So that you can take advantage of the type system of LLVM bitcode, and > don't have to cast the integers from/to strings by yourself. > > Logan > > > On Thu, May 2, 2013 at 11:10 PM, Alexandru Ion...
2016 Jun 24
2
Postfix and Dovecot LDA vs. LMTP
...gt; > > > > > > > Thanks much, > > > > Michael > > > > > > > > > > > -- > kivitendo mit Schnelleinstieg zu RB-Druckvorlagen im Linux-Magazin 07 > DELUG-DVD Ausgabe > > Richardson & B?ren GmbH > Jan B?ren > K?lnstr. 311 > 53117 Bonn > > USt-IdNr. DE238288407 > Telefon: 0228 92 98 2012 > > > Durchwahl: 0228 92 97 8965
2017 Jan 31
0
dovecot 2.2.18 replication I/O Timeout
...look like it: https://github.com/dovecot/core/blob/master/src/doveadm/dsync/dsync-ibc-stream.c or https://github.com/dovecot/core/blame/master/src/doveadm/dsync/dsync-ibc-stream.c Some debug hints would be nice. Thanks! Jan -- Blog http://blog.kivitendo.de/ kivitendo GmbH Jan B?ren K?lnstr. 311 53117 Bonn USt-IdNr. DE292363254 Telefon: 0228 92 98 2012 pers?nliche Durchwahl: 0228 92 97 8965
2016 Jun 25
2
Postfix and Dovecot LDA vs. LMTP
...> > >> > > >> > > >> > >> > >> -- > >> kivitendo mit Schnelleinstieg zu RB-Druckvorlagen im Linux-Magazin 07 > >> DELUG-DVD Ausgabe > >> > >> Richardson & B?ren GmbH > >> Jan B?ren > >> K?lnstr. 311 > >> 53117 Bonn > >> > >> USt-IdNr. DE238288407 > >> Telefon: 0228 92 98 2012 > >> > >> > >> Durchwahl: 0228 92 97 8965 > > > > > > > -- > kivitendo mit Schnelleinstieg zu RB-Druckvorlagen im Linux-Magazin...
2013 May 02
0
[LLVMdev] int to StringRed conversion
The problem is that I want to pass only srsr which is an int. "marked" was just an example :) Thanks you! On Thu, May 2, 2013 at 5:06 PM, Logan Chien <tzuhsiang.chien at gmail.com>wrote: > I'm not familiar with this, but maybe you can try: > > StringRef tst = ("marked" + Twine(srsr)).str(); > > It seems that you can't use integer as meta data
2013 May 02
4
[LLVMdev] int to StringRed conversion
Hello everyone, I have an integer and I want to convert it to StringRef in order to set metadata. setMetadata->(StringRef, MDNode*); It is there a native LLVM way to do it? 1. In the llvm::APSInt Class is toString() method, which seems it is not for this purpose 2. itoa and string are not part of LLVM 3. stringstream is not part of LLVM 4. to_string is not part of LLVM 5. any casting method?