similar to: Getting Started with Xapian Socket codebase

Displaying 20 results from an estimated 400 matches similar to: "Getting Started with Xapian Socket codebase"

2013 Mar 18
1
Up and running with ZeroMQ
Hi, As suggested earlier, I'm getting adept with the usage of ZeroMQ and understand its usage in the present context. What I have done till now is :- (1) Study ZeroMQ API and get in ease with its usage. Still implementing sample programs and learning basic functions. (2) Installed, compiled and setup my development environment with Xapian and ZeroMQ. Lots of work here already! Though, I
2012 Jun 18
1
Understanding rsync --delete behavior
Hi, When running an rsync command of the form: $ rsync -avn --delete remotehost:/mnt/volsw_dev/AS5/ /mnt/volsw_dev/AS5 rsync wants to delete a slew of files and directories. Partial output includes, for example: deleting AS5/zeromq/2.2.0/share/man/man7/zmq_tcp.7 deleting AS5/zeromq/2.2.0/share/man/man7/zmq_pgm.7 deleting AS5/zeromq/2.2.0/share/man/man7/zmq_ipc.7 deleting
2017 Jan 03
2
[R] Problems when trying to install and load package "rzmq"
On Tue, Jan 3, 2017 at 3:53 PM, Whit Armstrong <armstrong.whit at gmail.com> wrote: > > I maintian the rzmq project. > > love to get it running on windows, but zmq doesn't play nicely with R's > mingw. It's fairly easy to link against the libraries from rwinlib: https://github.com/rwinlib/zeromq. I'll send you a pull request later this week to fix the binary
2012 Mar 18
1
GSoC 2012: Learning To Rank
Hello, guys! How's it going? I would like to offer you myself again to implement one of the ideas during the GSoC 2012. I want to take care of the "Learning To Rank" project, but I would also be glad to pick the "QueryParser reimplementation", "Dynamic Snippets", "Gmane Search improvements" or even "Replace socket code with ZeroMQ" project (I
2017 Jan 03
2
[R] Problems when trying to install and load package "rzmq"
Possibly so. However, the ZeroMQ libraries do exist for Windows, so it might be possible to get the package working there. However, CRAN probably won't have the libraries, so cannot produce a binary package, and it is also quite possible that the package author is not a Windows person. At the very least, you'll need some familiarity with the Windows toolchain and be prepared to apply a
2011 Jun 29
1
[LLVMdev] hello world error
Hi, Can people suggest how this is solved for other ISAs? This happens only for Alpha and not for x86-64. The register 16 does not have any uses within that function, but is used inside puts. So Machine DCE thinks it is dead code. On Wed, Jun 29, 2011 at 4:20 PM, Ankit Sethia <asethia at eecs.umich.edu>wrote: > Hi, > > I found that machine dead code elimination, does not respect
2011 Jun 25
2
[LLVMdev] dump a module from inside GDB to a file
Ankit, >From within GDB you can run the following command: "call m->dump()" This will print the module in the bitcode in a textual format. From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Ankit Sethia Sent: Saturday, June 25, 2011 20:56 To: llvmdev at cs.uiuc.edu Subject: [LLVMdev] dump a module from inside GDB to a file Hi All, I
2011 Jun 25
0
[LLVMdev] dump a module from inside GDB to a file
Hi Nadev, The module is really big and i would like the dump to happen in a file instead of stdout. Is that possible? On Sat, Jun 25, 2011 at 3:37 PM, Rotem, Nadav <nadav.rotem at intel.com> wrote: > Ankit, **** > > ** ** > > From within GDB you can run the following command:**** > > “call m->dump()”**** > > This will print the module in the bitcode in a
2011 Jun 29
0
[LLVMdev] hello world error
Hi, I found that machine dead code elimination, does not respect the calling convention of alpha and eliminates r16, which was set correctly during code generation. I verified it with -print-after-all. Does anybody have a patch for this? On Wed, Jun 29, 2011 at 11:12 AM, Ankit Sethia <asethia at eecs.umich.edu>wrote: > Hi All, > > I am using llvm-2.9 to cross compile to alpha. I
2008 Jul 22
1
Xapian across multiple servers
Hi, We're looking to deploy Xapian as a search solution for a website that's run across a number of load-balanced web servers. However, I've not seen any clear indication in the documentation as to how it's recommended to operate Xapian in a load balanced / high availability configuration, or how to distribute the content-changes into the indexer. Has anyone got any particular
2014 Feb 26
2
Test errors on fresh installation
Hi Olly, I updated my local repo and built it again, but still getting the error. I took a look at python3/test-suite.log file, but I could not locate the source of test failure. Please find attached the log file with this email. I am available on IRC(nick : ankit_agrawal) if that seems a convenient medium for you to help me out with this issue. Thanks. Regards, Ankit Agrawal,
2012 Feb 05
4
qcow2 performance
Greets, I have to research performance-issues of a W2003-VM within KVM. Right now it's a qcow2-image-file w/ default settings within libvirt (configured by vmm ...) My question: what caching to use? writeback/writethrough/etc ... what to use for data integrity while not getting ultraslow performance? Found https://www.linuxfoundation.jp/jp_uploads/JLS2009/jls09_hellwig.pdf Is there
2009 Mar 13
6
please help me PLEASEEEEEEEE
Dear ALL Please tell me how to configure Openldap in rhel 5 Please send me links & document Thanks in advance Ankit Jariwala 9725655020
1998 Jul 09
0
Linux+samba replacement for NT
Hello all: We are on our way to do it. We recently got a new machine(Dual PII400) and we have installed Linux and samba ( latest kernel relese and latest samba). I was reading the NT domain FAQ and trying to setup the server such that NT workstation clients can autheticate from Samba server using smbpasswd. Sometimes it works and sometimes it doesnt. I am making Samba + Linux as our PDC. I could
2011 Jun 25
3
[LLVMdev] dump a module from inside GDB to a file
Hi All, I changed the CFG of a big function using a pass that runs on a function, I am having trouble debugging it. Is there someway to dump a module to a file from inside gdb? I have access to the Module pointer. Let me know if anything else is needed. -- *Ankit* -------------- next part -------------- An HTML attachment was scrubbed... URL:
2020 Sep 17
3
[NPM] Register target specific pass with opt
Hello LLVM community, I was trying to port a target specific loop transformation pass (HexagonVectorLoopCarriedReusePass) to the New Pass Manager. However, I could not figure out a way to register this pass with opt. I can see that llvm/lib/Passes/PassRegistry.def is the registry for target independent passes. Can anyone point me to an example/API which can help me in registering this pass so
2011 Jun 25
0
[LLVMdev] dump a module from inside GDB to a file
Hi All, I changed the CFG of a big function using a pass that runs on a function, I am having trouble debugging it. Is there someway to dump a module to a file from inside gdb? I have access to the Module pointer. Let me know if anything else is needed. -- Ankit -------------- next part -------------- An HTML attachment was scrubbed... URL:
2014 Feb 26
2
Test errors on fresh installation
Hi all, I installed xapian smoothly as per the guidelines mentioned in the HACKING file. However, I am getting test errors on tests related to python3 bindings after running them using `make check` on this fresh installation. The log can be seen here <http://pastebin.com/bnsTFG2e>. Can anyone here help me out to figure out why they are failing? Please let me know if any more
2007 Mar 09
0
A Survey on Defect Management Practices in Free/Open Source Software
Dear RSYNC Contributors, I seek help from designers, developers, testers,defect fixers,project managers or playing any other key role in Free/Open Source software development or maintenence in carrying out a study on practices and problems of defect management in various Free/Open Source Software projects. The insights gained from the study can further help us to extract publicly accessible
2007 Mar 14
0
A Reminder : A Study on Free/Open Source Software
Dear RSync Contributors, I seek help from designers, developers, testers,defect fixers,project managers or playing any other key role in Free/Open Source software development or maintenence in carrying out a study on practices and problems of defect management in various Free/Open Source Software projects. The insights gained from the study can further help us to extract publicly accessible