Displaying 20 results from an estimated 128 matches for "bron".
Did you mean:
brno
2016 Dec 13
2
Pull requests: CJK words and Snippet generator
On Tue, Oct 04, 2016 at 10:37:49AM +1100, Bron Gondwana wrote:
> Robert is in Australia visiting the FastMail office to co-work with us for a
> couple of months, and I'd love to get this Xapian integration work done
> during this time. We're also looking to release Cyrus IMAPd version 3.0 some
> time in the next few months,...
2011 Feb 14
1
Bron-Kerbosch algorithm
Dear R users
I need to solve the finding all cliques in a graph problem, is there a R
package implementing Bron-Kerbosch algorithm?
Many thanks
YAn
**********************************************************************
This email and any files transmitted with it are confide...{{dropped:10}}
2016 Dec 14
2
Pull requests: CJK words and Snippet generator
I haven't had a chance to look at the patch and won't be able to do
before January. Its design description sounds promising, though.
The snippet generator code linked to by Bron contains mostly the same
code as in my pull request, with two exceptions: it adds a flag to make
the generator return the empty string for snippets without any matching
terms. And it includes a fix to a possible memory corruption (only
impacted our forked version).
Cheers, Robert
On Tue, Dec 13,...
2013 Jun 19
2
Broken links on trac release overview page
http://trac.xapian.org/wiki/ReleaseOverview/1.2.15
The links to individual NEWS items are broken:
i.e. http://svn.xapian.org/*checkout*/tags/1.2.15/xapian-core/NEWS
http://svn.xapian.org/Xapian/tags/1.2.15/xapian-core/NEWS?view=markup
might be a better link.
Regards,
Bron.
--
Bron Gondwana
brong at fastmail.fm
2019 Feb 03
2
Amount of writes during index creation
Bron Gondwana writes:
> This is quite possibly part of the underlying write explosion that we ran into when we wrote:
>
> https://fastmail.blog/2014/12/01/email-search-system/
>
> Which now almost 5 years on, has been running like a champion! We're really pleased with how well...
2019 Nov 14
4
JMAP: Re: http API for IMAP
Am 14.11.19 um 14:03 schrieb Benny Pedersen via dovecot:
> Thomas G?ttler via dovecot skrev den 2019-11-14 08:55:
>
>> Is there already an open source imap2jmap server?
>
> why do you say imap here ?
>
> https://www.cyrusimap.org/imap/developer/jmap.html
>
> cyrus already have it, we just wait for dovecot :)
I used my favorite search engine (ecosia) and found
2019 May 28
1
JMAP support in Dovecot
...ng in those specs into Cyrus IMAP version 3.2 as well. Right now there's a couple of gaps that we either don't use at FastMail or are papering around with our perl middleware. You can see the remaining tasks here as we progress:
https://github.com/cyrusimap/cyrus-imapd/labels/3.2
Cheers,
Bron.
--
Bron Gondwana
brong at fastmail.fm
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dovecot.org/pipermail/dovecot/attachments/20190528/5bd9d40b/attachment.html>
2016 Nov 27
1
JMAP support in Dovecot
...demo proxy was a pretty quick hack and isn't very efficient, but it should be working. It does a fairly slow background import for existing accounts, so I'd recommend using small tests accounts.
What particular bit is broken for you? (apart from the known not-working authentication flow)
Bron.
--
Bron Gondwana
brong at fastmail.fm
2013 Jun 19
2
Compact databases and removing stale records at the same time
On Wed, Jun 19, 2013, at 03:49 PM, Olly Betts wrote:
> On Wed, Jun 19, 2013 at 01:29:16PM +1000, Bron Gondwana wrote:
> > The advantage of compact - it runs approximately 8 times as fast (we
> > are CPU limited in each case - writing to tmpfs first, then rsyncing
> > to the destination) and it takes approximately 75% of the space of a
> > fresh database with maximum compacti...
2008 Jan 15
2
[ANNOUNCE] Btrfs v0.10 available
Hello everyone,
Btrfs v0.10 is now available for download from:
http://oss.oracle.com/projects/btrfs/
Btrfs is still in an early alpha state, and the disk format is not finalized.
v0.10 introduces a new disk format, and is not compatible with v0.9.
The core of this release is explicit back references for all metadata blocks,
data extents, and directory items. These are a crucial building
2008 Jan 15
2
[ANNOUNCE] Btrfs v0.10 available
Hello everyone,
Btrfs v0.10 is now available for download from:
http://oss.oracle.com/projects/btrfs/
Btrfs is still in an early alpha state, and the disk format is not finalized.
v0.10 introduces a new disk format, and is not compatible with v0.9.
The core of this release is explicit back references for all metadata blocks,
data extents, and directory items. These are a crucial building
2019 Feb 03
0
Amount of writes during index creation
...as you have memory for at once. We have one index per user, and we have never had a user so big that we can't fit their index in memory, so initial index creation is always build entire index in memory then compact it to archive.
On Sun, Feb 3, 2019, at 10:07, Jean-Francois Dockes wrote:
> Bron Gondwana writes:
> > This is quite possibly part of the underlying write explosion that we ran into when we wrote:
> >
> > https://fastmail.blog/2014/12/01/email-search-system/
> >
> > Which now almost 5 years on, has been running like a champion! We're really pl...
2013 Jun 19
2
Compact databases and removing stale records at the same time
...to do this? I'll paste the code for the two different functions below (Cyrus is written in C - hence the C-compatible API interface).
I would prefer not to write to the source databases at all - the idea is that all except the "temp" database are read-only for all callers.
Thanks,
Bron.
----
int xapian_compact_dbs(const char *dest, const char **sources)
{
int r = 0;
try {
Xapian::Compactor *c = new Xapian::Compactor;
while (*sources) {
c->add_source(*sources++);
}
c->set_destdir(dest);
/* we never write to compresion targets again */
c->set_compa...
2019 Nov 18
2
Perl was: JMAP: Re: http API for IMAP
Am 16.11.19 um 08:15 schrieb Bron Gondwana via dovecot:
> proxy.jmap.io is very stale code at the moment.? I'm hoping to have enough time to hack on it at the IETF hackathon this
> weekend :)
I am a big biased. AFAIK it is written in Perl. I am very happy that I did not need to use Perl since 18 years now.
The regex whe...
2017 Dec 15
2
Question about imap (expunge response)
(This is not neccesarily about dovecot, but rather IMAP protocol)
At https://drive.google.com/open?id=1j3oa5jYeSdiPbgaihq02K-u_vHbZLJZQ
is fetchmail log from my sessinon with polish email provider "Wirtualna
Polska"
As you can se fetchmail logged "* 1 EXPUNGE" as a response to "STORE"
command.
According to https://tools.ietf.org/html/rfc3501#section-7.4.1
EXPUNGE
2014 Oct 23
2
GSoC Reunion + Documentation Sprint
Gaurav, James and I are attending the GSoC reunion in San Jose,
California, USA this weekend, so if anyone else is around, do come and
say hello.
We're also going to be holding a documentation sprint on Monday and
Tuesday next week in San Francisco. If anyone else wants to take
part (remotely would work) let me know. The only plan we have so far
is to come up with a plan over the weekend.
2008 Jan 20
3
Logical test and look up table
...urce $Type
A23
A24
A9
A32
A25
A14
A10
A12
A11
A13
G
Alternative solutions are also welcome.
Thanks in advance
P.S. I found a discussion mentioning match() and %in% but it does not seem
adapted.
--
Nikola Markov
Inserm U 846 Stem cells and brain research institute
18 av Du Doyen Lepine
69500 Bron
France
2023 Jan 28
1
lines through points in lattice legend
...> loaded via a namespace (and not attached):
> [1] compiler_4.2.2 grid_4.2.2
>
> Thanks for any enlightenment, in advance.
>
> Ken
>
> ___
> Kenneth Knoblauch
> Inserm U1208
> Stem-cell and Brain Research Institute
> 18 avenue du Doyen L?pine
> 69500 Bron
> France
> tel: +33 (0)4 72 91 34 77
> fax: +33 (0)4 72 91 34 61
> portable: +33 (0)6 84 10 64 10
> https://sbri.fr/public-profile/63/single-member/
>
> ______________________________________________
> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see...
2009 Dec 08
4
lower.tail option in pnorm
...phics grDevices utils datasets methods
[7] base
loaded via a namespace (and not attached):
[1] tools_2.10.1
Thanks for any enlightenment.
best,
Ken
--
Ken Knoblauch
Inserm U846
Stem-cell and Brain Research Institute
Department of Integrative Neurosciences
18 avenue du Doyen L?pine
69500 Bron
France
tel: +33 (0)4 72 91 34 77
fax: +33 (0)4 72 91 34 61
portable: +33 (0)6 84 10 64 10
http://www.sbri.fr/members/kenneth-knoblauch.html
2016 Jul 29
3
Pull requests: CJK words and Snippet generator
Hi James,
thanks for the feedback.
On Thu, Jul 28, 2016, at 00:22, James Aylett wrote:
> This sounds great! I know sufficiently little about CJK that I won't
> try to comment on that at all :)
I've just opened a pull request for the CJK tokenizer:
https://github.com/xapian/xapian/pull/114
> I wonder if we can arrange suitable defaults to use your
> implementation with the