search for: desti

Displaying 12 results from an estimated 12 matches for "desti".

Did you mean: dest
2009 Oct 30
2
DAHDI/ZAP overlap dialing
...pting the call before a "Sending complete" is released by Alcatel. I'm using libpri 1.2.8 and Asterisk 1.2.31.1. Alcatel trace: > t3 --> Cleaning mtracer... --> Positionning t3 filters... +--------+-------+--------+--------+---------+---------+----------+------+ | filter | desti | src_id | cr_nbr | cpl_nbr | us_term | term_nbr | type | +--------+-------+--------+--------+---------+---------+----------+------+ | 0 | ** | ** | * | ** | * | *** | 165 | | 1 | ** | ** | * | ** | * | *** | 166 | | 2 | **...
2009 Aug 03
1
Backups & Directory Timestamps Not Preserved
Hello, I've been testing out using rsync for nightly incremental backups through the '--backup' & '--backup-dir' options. So far, I've noticed two issues. 1) First, if an empty directory is removed from the source, rsync will remove it from the destination but not create the directory in the backup-dir location. $ mkdir -p /tmp/src/foo $ rsync -a /tmp/src/ /tmp/dest/ $ rmdir /tmp/src/foo $ rsync -a --delete -P -b --backup-dir=/tmp/desti/ /tmp/src/ /tmp/dest/ 2) Second, when the contents of a non-empty directory is modified, the origin...
2020 Jan 22
2
Using dsync for a single mailbox?
On Tue, 21 Jan 2020, Sami Ketola wrote: > how does dsync fail? How have you tried? Something like this on the new > server: > > doveadm -o imapc_server=remote_ip -o imapc_port=remote_port -o imapc_user=<remote_victim> -o imapc_password=<remote_victim_password> backup -u <local_victim> -R imapc: The best I can do is get it to complete without any errors but without
2004 May 21
2
dial an IP address
Anyone written an extension that will take a 12 digit number, convert it to an IP address so that you can make a sip call to it. Chris
2018 Sep 06
2
Replacing a function from one module into another one
...<iostream> #include <string.h> const std::string originalFileName = "tracer.ll"; const std::string referenceFileName = "tracer_ref.ll"; void populateVMap(llvm::ValueToValueMapTy &VMap, llvm::Function *fOld, llvm::Function *fNew) { llvm::Function::arg_iterator DestI = fOld->arg_begin(); for (llvm::Function::const_arg_iterator J = fNew->arg_begin(); J != fNew->arg_end(); ++J) { DestI->setName(J->getName()); VMap[&*J] = &*DestI++; } void addFunction(llvm::Module *oMod, llvm::Module *nMod, std::string nFName, std::string...
2011 Jul 06
2
[LLVMdev] First steps with LLVM and partial evaluation
...ArgTypes, F->getFunctionType()->isVarArg()); // Create the new function... Function *NewF = Function::Create(FTy, F->getLinkage(), F->getName()); // Loop over the arguments, copying the names of the mapped arguments over... Function::arg_iterator DestI = NewF->arg_begin(); for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I) if (ValueMap.count(I) == 0) { // Is this argument preserved? DestI->setName(I->getName()); // Copy the name over... ValueMap[I]...
2018 Sep 06
2
Replacing a function from one module into another one
...the reference, I was able to follow it and copy the code that I saw necessary, but I still have some issues (references are still not updated). I created the function: void populateVMap(llvm::ValueToValueMapTy &VMap, llvm::Function *fOld, llvm::Function *fNew) { llvm::Function::arg_iterator DestI = fOld->arg_begin(); for (llvm::Function::const_arg_iterator J = fNew->arg_begin(); J != fNew->arg_end(); ++J) { DestI->setName(J->getName()); VMap[&*J] = &*DestI++; } } The same as in *CloneModule*, then I have this code: llvm::Function *fNew = nMod->...
2012 Jan 30
1
[LLVMdev] newbie question: "saving" modules
Hello, Just starting out with LLVM. I've gone through the example code and the Kaleidoscope tutorial, and found it very informative. One question, though, and apologies if I missed an answer in Googling. I understand that when you create functions in a LLVM language and pass it through the JIT interpreter, then that function lives in the current address space for the duration of the
2020 Jan 22
0
Using dsync for a single mailbox?
...to me is exactly what strings I should pass to the -n and -m flags. Do I specify a namespace by its local prefix, or its remote prefix, or its name in the config file, or ... ? And mailbox names? > How does dsync map remote to local names? > Hi, can you then add "-o imapc_rawlog_dir=/desti/nation/" where doveadm process can write rawlogs for the transfer. That probably reveals what goes wrong in the session. Sami
2004 Jan 21
3
FW: DNAT and masq problem with kernel 2.4.23
...l Here is tail from debug message. How I can force to shorewall use POSTROUTING chain for masq and DNAT instead of user defined chains? # tail /tmp/trace + eval exists_nat_net_dnat=Yes + exists_nat_net_dnat=Yes + run_iptables2 -t nat -A net_dnat -p tcp -d 212.24.147.254 --dport http -j DNAT --to-destination 192.168.140.2 + [ x-t nat -A net_dnat -p tcp -d 212.24.147.254 --dport http -j DNAT --to-desti nation 192.168.140.2 = x-t nat -A net_dnat -p tcp -d 212.24.147.254 --dport http -j DNAT --to-destination 192.168.140.2 ] + run_iptables -t nat -A net_dnat -p tcp -d 212.24.147.254 --dport http -j...
2018 Sep 04
2
Replacing a function from one module into another one
Hi Philip, Thank you very much for your answer, the vector declaration example worked. I'm pretty sure the ValueToValueMapTy is the last thing I need because I even saw there is another function that could help me llvm*:*:RemapFunction <http://llvm.org/doxygen/namespacellvm.html#addf0183e92893bdbcde00fc9091dda93>; but my problem is that I don't know how to populate the
2013 Jul 12
14
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...(), E = PartScheme.end(); + I != E; I++) { + Function *OF = *I; + Function *NF = cast<Function>(VMap[OF]); + + // Steal some code from llvm::CloneFunction. + { + // Loop over the arguments, copying the names of the mapped arguments over... + Function::arg_iterator DestI = NF->arg_begin(); + for (Function::const_arg_iterator I = OF->arg_begin(), E = OF->arg_end(); + I != E; ++I) + // Is this argument preserved? WTF, how come an argument is preserved? + if (VMap.count(I) == 0) { + DestI->setName(I->getName()); //...