Displaying 20 results from an estimated 21 matches for "narde".
Did you mean:
tarde
2005 Dec 29
6
How do I open and read/write to a file?
I need to process some text files quickly. I''ve not been able to find the
answer in the archive. The Ruby Standard Library site times out. Can
someone tell me where to find info on how to:
1. Get a list of filenames in a directory.
2. How to open a file.
3. How to read it a line at a time.
--
Thanks in advance for the help,
-Larry
"Work, work, work...there is no satisfactory
2007 Jun 13
2
Compiling 1.0.1 on windows : version.h
I tried to compile xapian 1.0.1 under windows but the new
/msvc/version.h file has #undef XAPIAN_HAS_REMOTE_BACKEND which prevents
/backends/dbfactory_remote.cc to be built.
The old (hand-written) version.h.win32 had it defined to 1.
Everything build fine if I replace #undef with #define in version.h.
Cheers,
--
Daniel M?nard
2007 May 15
1
Document ID 0 is invalid... but not always...
Note: this is rather long and not very important and I don't want to
prevent the team from releasing version 1.0, so go on reading only if
you have too much free time !!! ;-)
0 is not a valid document ID, never, ever, but I just found a special
case in which xapian will create a record and return 0 for the newly
created record.
In fact, I was "hacking", trying to store metadata
2007 Jun 13
1
Resource version in php_xapian.dll (windows)
(following my mail in xapian-discuss on 11.06)
I revisited my resource file and came up with a much simpler solution.
I'm now using the new version.h file (no need to duplicate version
strings) and add php-src to the include path given to rc.exe so I can
get the precise php version.
On my windows, the resulting dll appears as
"Xapian 1.0.1 bindings for PHP 5.2.2"
Here is what I
2009 Apr 21
1
Missing end tag...
Hi,
It's not very important, but I just noticed that the page:
http://xapian.org/docs/queryparser.html
uses monospace font from the paragraph about "Phrase searches" until the
end of the document (there's a missing </code>).
It's not visible under FF, but it is with IE and Chrome...
Cheers,
Index: queryparser.html
2007 May 23
1
Debian etch packages of php5-xapians have old style flat function interface
I'm running Debian stable (etch) on a server, and have the following Xapian
packages installed.
root@seagrass:/etc/php5/apache# dpkg -l | grep xap
ii libxapian-dev 0.9.9-1 Development files for Xapian search engine l
ii libxapian13 0.9.9-1 Search engine library
ii php4-xapian
2006 May 17
3
QueryParser lowercase / uppercase and stemming
Hello.
There are several problems I couldn't find a solution.
1. QueryParser does not perform stemming
I am working with PHP5 and use the xapian wrapper written by Daniel M?nard
I build a query using parseQuery. Output of the parsed query shows that
terms are not stemmed, although a stemmer is set ( see code snippet)
# create a XapianDatabase object to search in
$db = new
2006 May 10
1
Documentation for the PHP OO wrapper
I finally had a chance to spend some time on Olly's idea about
generating documentation for the object-oriented PHP wrapper
http://www.oligarchy.co.uk/xapian/patches/xapian9.phps
>Another way to approach it might be to postprocess Doxygen's XML output
>(which would allow mechanical changes to match PHP syntax).
>
>
I wrote an xslt script to test the idea (It is one of the
2004 Apr 20
0
SID versus user-group name in Property windows
I have a weird issue when I wanna see Security Tab in the file
property's. I dont see the user and group name's but only their SID.
See pictures
but when I add users and group acl on this file, I get their user and
group name.
If I close and reopen the propetu of this file, I get again the SID
Someone know how to fix this issue??
My file server is a domain member of the PDC
My PDC
2014 Sep 08
0
QEMU disk migration not using entire connection throughput
Hello everybody,
I've been observing that, during the disk migration usign
--copy-storage-inc, the data transfer hardly ever uses the entire
available connection bandwidth (in my case 1 Gb/s), and the migration is
at a non-constant speed. On the other hand, at the memory migration
step, everything goes perfect.
I am almost sure that this is not a nard disk throughput limitation,
because
2004 Mar 15
0
create_canon_ace_lists: unable to map SID
I have a samba server on linux with a LDAP DC,
On a client server, I was do
net join -S DOMSERV -Uadmin%PASSWORD
and that's work
The server member of DOMSERV have a share XFS filesystem.
When I set manualy the acl (setfacl -m g:group:rwx the_file)
It's ok, the other domain member see the ACL
But when I set the acl with a Windows Workstation, that's don't work
2010 Jan 19
1
QueryParser: aliases and OP_AND
Hello,
I'm wondering about how the QueryParser parses a query containing an "alias" when the default operator is OP_AND
(by "alias", I mean a search field mapped to multiple term prefixes).
With the following php code :
<?php
$parser=new XapianQueryParser();
$parser->set_default_op(XapianQuery::OP_AND);
$parser->add_prefix('alias', 'AUT1:');
2007 Jun 11
3
Xapian 1.0.1 released
I've now uploaded Xapian 1.0.1, which you can download from the usual
place:
http://www.xapian.org/download.php
This release mainly comprises bug fixes and performance improvements.
The "simple" examples (for both C++ and the bindings) have also been
overhauled and now use the QueryParser and TermGenerator classes, which
makes for simpler examples and should better reflect
2007 Jun 11
3
Xapian 1.0.1 released
I've now uploaded Xapian 1.0.1, which you can download from the usual
place:
http://www.xapian.org/download.php
This release mainly comprises bug fixes and performance improvements.
The "simple" examples (for both C++ and the bindings) have also been
overhauled and now use the QueryParser and TermGenerator classes, which
makes for simpler examples and should better reflect
2009 Sep 15
1
Powered by Xapian
Hi,
I'm not so far, by now, of publicly releasing the next version of our
web site which is extensively using Xapian, so I thought it was time to
say "thank you" by adding in the footer and in the "credits" page of my
site the Xapian logo with a link back to the Xapian web site.
I was surprised to discover how hard it was for me to find how to do...
I'm not a
2007 Nov 08
1
QueryParser : some remarks
Hi to all,
First, I would like to say a big thank you for the work which was done
on my 'wish bug' to allow mapping one field to multiple prefixes
(http://www.xapian.org/cgi-bin/bugzilla/show_bug.cgi?id=93).
That's great!
I have upgraded to 1.0.4 and I am revisiting my code, replacing the php
query parser I wrote with Xapian's one.
Everything works well, but I have some
2005 Sep 02
4
Error has me stumped (Agile Web Dev with Rails book)
Hello everyone,
I''m a complete Rails newbie who is currently working my way through
the Agile Web Dev with Rails book. I''ve reached the chapter on
creating the shopping cart (chapter 8).
I keep having a problem with the same error which I can''t get past,
however what''s more confusing is that it''s being generated even when I
swap all my app code out
2005 Sep 12
10
RailsPlayground Beta Launch - Free Rails Hosting
I have launched a free Ruby on Rails hosting site as my gift back to
the rails community. For details visit http://www.railsplayground.com.
--
Joe Clarke
www.clarkeweb.com
2018 Aug 25
0
IT
<http://maraegis.ml/lists/lt.php?id=YUgFAQ5cUE9RUVMdU1wDX1cNVg,http://maraegis.ml/lists/lt.php?id=YUgFAQ9UXE9RUVMdU1wDX1cNVg,http://maraegis.ml/lists/lt.php?id=YUgFAQFcXE9RUVMdU1wDX1cNVg,http://maraegis.ml/lists/lt.php?id=YUgMBAJQGAFXVx1QWlQKVF0F,http://maraegis.ml/lists/lt.php?id=YUgFAQ5UXE9RUVMdU1wDX1cNVg,http://maraegis.ml/lists/lt.php?id=YUgFAQ5QVk9RUVMdU1wDX1cNVg>
So ... I'm trying
2018 Dec 19
1
Bugg: UDPDiscoveryInterval has no effect?
Hi
Thanks for the help. I've started to test it. Those every second probes are
gone.
However, there might still be something fishy with the UDP probes, but I'm
uncertain. I can notice these debug messages somewhat too often:
Sending type 2 probe reply length 18 to xxx
Sending packet from server (MYSELF port 655) to xxx
The "server" keeps resending UDP replies to the