search for: debuglin

Displaying 4 results from an estimated 4 matches for "debuglin".

Did you mean: debuggin
2007 Aug 24
1
Can't create audio conversation between softphones through Asterisk
...92.168.1.10:5060" time="1187721756281" isSender="true" transactionId="z9hg4bk361290cad5885dbc4a03b5951cc85585" callId="59f9fb5dd6b9fa775e38c6f31671bbc4 at 192.168.1.251" firstLine="SUBSCRIBE sip:202 at 192.168.1.252;transport=udp SIP/2.0" debugLine="0" > <![CDATA[SUBSCRIBE sip:202 at 192.168.1.252;transport=udp SIP/2.0 Call-ID: 59f9fb5dd6b9fa775e38c6f31671bbc4 at 192.168.1.251 CSeq: 1 SUBSCRIBE From: <sip:201 at 192.168.1.251>;tag=8505 To: <sip:202 at 192.168.1.252> Via: SIP/2.0/UDP 192.168.1.251:8386;branch=z9hG...
2007 Mar 06
1
Merging stats from multiple databases for expand
...+(const OmExpandBits &bits1, const OmExpandBits &bits2) { OmExpandBits sum(bits1); sum.multiplier += bits2.multiplier; sum.rtermfreq += bits2.rtermfreq; // FIXME - try to share this information rather than pick half of it if (bits2.dbsize > sum.dbsize) { DEBUGLINE(WTCALC, "OmExpandBits::operator+ using second operand: " << bits2.termfreq << "/" << bits2.dbsize << " instead of " << bits1.termfreq << "/" << bits1.dbsize); sum.termfreq...
2005 Feb 25
2
Bug in TermIterator::skip_to() ?
Hi all, I've been toying with xapian (mostly using the Python bindings) and I think I've hit a bug in the TermIterator::skip_to() method (or maybe in QuartzAllTermsList::skip_to()). I've attached a c++ source file that demonstrates the issue. In short, if you have a WritableDatabase, ask for the all-terms TermIterator with db.allterms_begin(), and then skip_to() a word that is itself
2006 Dec 06
1
Bug and patch for +terms with wildcards
...Xapian::Query::OP_NEAR || @@ -414,6 +423,9 @@ return qint_from_vector(Xapian::Query::OP_ELITE_SET, subqs, elite_set_size); } + case '!': { + return new Xapian::Query::Internal(Xapian::Query::OP_MATCH_NOTHING, 0); + } default: DEBUGLINE(UNKNOWN, "Can't parse remainder `" << p - 1 << "'"); throw Xapian::InvalidArgumentError("Invalid query string"); @@ -554,6 +566,68 @@ } } +void +Xapian::Query::Internal::simplify_matchnothing() +{ + subquery_list::iterator sq; +...