Displaying 20 results from an estimated 56 matches for "murmurs".
Did you mean:
murmur
2011 Mar 13
3
Mumble gamers' VOIP server (murmur)
I was unable to build the whole Mumble system on CentOS but it's available
for Fedora Development. I just wanted the server part on my headless
server, and a static build is available from the Mumble project on
Sourceforge. So I grabbed the Mumble SRPM from Fedora Development, the
static build from Sourceforge, and stripped the spec file down to the
minimum needed to just install the
2012 Feb 15
2
[LLVMdev] We need better hashing
On Tue, Feb 14, 2012 at 2:44 AM, Chris Lattner <clattner at apple.com> wrote:
> On Feb 13, 2012, at 2:00 AM, Talin wrote:
>>
>> Just out of curiosity, why not MurmurHash3 ? This page seems to
>> suggest that #2 has some flaw, and #3 is better all round:
>>
>> https://sites.google.com/site/murmurhash/
>>
> The main reason is because there's no
2018 May 23
1
Autofile Junk for all users
On 2018-05-23 (08:17 MDT), Andr? Rodier <andre at rodier.me> wrote:
> Use the default scripts, works well for me.
>
> https://wiki2.dovecot.org/Pigeonhole/Sieve/Configuration#Visible_Default_Script
>
> The Dovecot wiki is really helpful, have a look on it ;-)
Excellent, that's exactly what I want.
Question from that page, my users are (almost) all virtual, so what
2016 Jul 12
0
CEBA-2016:1407 CentOS 6 sssd BugFix Update
CentOS Errata and Bugfix Advisory 2016:1407
Upstream details at : https://rhn.redhat.com/errata/RHBA-2016-1407.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
ea8bd669e4ddf4b0638663c1e27aa01fbc64be921f6c09f1afd396d830608927 libipa_hbac-1.13.3-22.el6_8.4.i686.rpm
2017 Aug 23
0
CEBA-2017:2505 CentOS 6 sssd BugFix Update
CentOS Errata and Bugfix Advisory 2017:2505
Upstream details at : https://access.redhat.com/errata/RHBA-2017:2505
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
a13401b5a68e93e194fa862f3502ad7c93976151e61df31543612279904316d4 libipa_hbac-1.13.3-57.el6_9.i686.rpm
2018 Mar 14
0
CEBA-2018:0510 CentOS 6 sssd BugFix Update
CentOS Errata and Bugfix Advisory 2018:0510
Upstream details at : https://access.redhat.com/errata/RHBA-2018:0510
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
7e2059795a5bc50e3b70cdb457d4daebc5de5384127e15e96b9185b2ca6cbd9c libipa_hbac-1.13.3-58.el6_9.i686.rpm
2019 Jan 16
0
CEBA-2019:0063 CentOS 6 sssd BugFix Update
CentOS Errata and Bugfix Advisory 2019:0063
Upstream details at : https://access.redhat.com/errata/RHBA-2019:0063
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
b22a1737a4e5697e44b3151c970a3433097410cf34039258b8fcfbfe8d1dc95b libipa_hbac-1.13.3-60.el6_10.2.i686.rpm
2017 Feb 24
0
CEBA-2017:0302 CentOS 6 sssd BugFix Update
CentOS Errata and Bugfix Advisory 2017:0302
Upstream details at : https://rhn.redhat.com/errata/RHBA-2017-0302.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
62c9102db1c4c156a2d187b9e34bcd225b5fb5a581042aff538fa47b853b9456 libipa_hbac-1.13.3-22.el6_8.6.i686.rpm
2012 Feb 14
0
[LLVMdev] We need better hashing
On Feb 13, 2012, at 2:00 AM, Talin wrote:
> Just out of curiosity, why not MurmurHash3 ? This page seems to
> suggest that #2 has some flaw, and #3 is better all round:
>
> https://sites.google.com/site/murmurhash/
>
> The main reason is because there's no incremental version of 3.
I think that that is a great reason.
> LLVM's needs, on the other hand, are fairly
2012 Feb 15
3
[LLVMdev] We need better hashing
On Tue, Feb 14, 2012 at 2:44 AM, Chris Lattner <clattner at apple.com> wrote:
> On Feb 13, 2012, at 2:00 AM, Talin wrote:
>
> Just out of curiosity, why not MurmurHash3 ? This page seems to
>> suggest that #2 has some flaw, and #3 is better all round:
>>
>> https://sites.google.com/site/murmurhash/
>>
>> The main reason is because there's no
2012 Feb 13
5
[LLVMdev] We need better hashing
On Mon, Feb 13, 2012 at 1:22 AM, Jay Foad <jay.foad at gmail.com> wrote:
> On 13 February 2012 00:59, Talin <viridia at gmail.com> wrote:
> > Here's my latest version of Hashing.h, which I propose to add to
> llvm/ADT.
> > Comments welcome and encouraged.
>
> > /// Adapted from MurmurHash2 by Austin Appleby
>
> Just out of curiosity, why not
2012 Feb 15
0
[LLVMdev] We need better hashing
On Feb 14, 2012, at 10:47 PM, Talin wrote:
> /// Add a pointer value
> template<typename T>
> void add(const T *PtrVal) {
> addImpl(
> reinterpret_cast<const uint32_t *>(&PtrVal),
> reinterpret_cast<const uint32_t *>(&PtrVal + 1));
> }
>
> This violates TBAA rules and looks pretty dangerous to expose as public API.
2017 Apr 28
2
RFC: Improving performance of HashString
According to...
https://github.com/rurban/smhasher/blob/master/README.md
Bernstein has quality problems (while xx is as good as you get in a
non-crypto hash), and xx is 7x (32 bit) - 12x (64 bit) faster.
That's on long strings. It would be worth checking the startup overhead for
typically short identifiers in programs.
See later on in the README:
"When used in a hash table the
2004 Aug 06
2
Ices2 / Icecast2 / Long connect and no sound
Unfortunately, ices2 isn't writing anything to the logs. I've got them on
debug mode, but there still isn't anything being written to indicate it's
having a known problem.
As far as the interference goes, I've found that reducing the iGain and amping
the input source seems to reduce the interfencence a good deal, at least, good
enough such that it's only a low murmur in
2019 Jan 17
0
CentOS-announce Digest, Vol 167, Issue 4
Send CentOS-announce mailing list submissions to
centos-announce at centos.org
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-request at centos.org
You can reach the person managing the list at
centos-announce-owner at centos.org
When
2012 Feb 17
0
[LLVMdev] We need better hashing
On Fri, Feb 17, 2012 at 3:59 AM, Chandler Carruth<chandlerc at google.com> wrote:
> On Tue, Feb 14, 2012 at 2:44 AM, Chris Lattner<clattner at apple.com <http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev>> wrote:
>
> >/ I'm contradicting my stance above about not caring about the
> />/ implementation :), but is MurmurHash a good hash for string data?
2016 Mar 31
0
CEBA-2016:0552 CentOS 7 sssd BugFix Update
CentOS Errata and Bugfix Advisory 2016:0552
Upstream details at : https://rhn.redhat.com/errata/RHBA-2016-0552.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
x86_64:
89b50826836cba0def30edf4e2f169173485ff538ce558f5048c7322c59080f1 libipa_hbac-1.13.0-40.el7_2.2.i686.rpm
2016 May 13
0
CEBA-2016:1035 CentOS 7 sssd BugFix Update
CentOS Errata and Bugfix Advisory 2016:1035
Upstream details at : https://rhn.redhat.com/errata/RHBA-2016-1035.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
x86_64:
1d5eae602bcae20f1031dab97d58e751ee278a97f466fe308c5c91fb331aab1f libipa_hbac-1.13.0-40.el7_2.4.i686.rpm
2016 Jun 23
0
CEBA-2016:1255 CentOS 7 sssd BugFix Update
CentOS Errata and Bugfix Advisory 2016:1255
Upstream details at : https://rhn.redhat.com/errata/RHBA-2016-1255.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
x86_64:
084266412c5ab99d40848cc4e9da0fe72d8efdecc5d3d0de28293ea36a011a09 libipa_hbac-1.13.0-40.el7_2.9.i686.rpm
2016 Aug 02
0
CEBA-2016:1528 CentOS 7 sssd BugFix Update
CentOS Errata and Bugfix Advisory 2016:1528
Upstream details at : https://rhn.redhat.com/errata/RHBA-2016-1528.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
x86_64:
32e4c2f56dfc312f1de89aecfc70d4862094ae38d83878d7b5949c68d0d6821b libipa_hbac-1.13.0-40.el7_2.12.i686.rpm