Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/hashtables/
Date: Sat, 27 Jan 2018 09:54:56
Message-Id: 1517046855.d8cd75a2a930703e095576de6bab450232ce9723.mgorny@gentoo
1 commit: d8cd75a2a930703e095576de6bab450232ce9723
2 Author: Francesco Turco <fturco <AT> fastmail <DOT> fm>
3 AuthorDate: Thu Sep 7 15:04:10 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 27 09:54:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8cd75a2
7
8 dev-haskell/hashtables: use HTTPS for links to en.wikipedia.org, bug #637190
9
10 dev-haskell/hashtables/metadata.xml | 6 +++---
11 1 file changed, 3 insertions(+), 3 deletions(-)
12
13 diff --git a/dev-haskell/hashtables/metadata.xml b/dev-haskell/hashtables/metadata.xml
14 index 9e68dbf75d7..7443663f12a 100644
15 --- a/dev-haskell/hashtables/metadata.xml
16 +++ b/dev-haskell/hashtables/metadata.xml
17 @@ -24,7 +24,7 @@
18
19 2. "Data.HashTable.ST.Cuckoo" contains an implementation of \"cuckoo
20 hashing\" as introduced by Pagh and Rodler in 2001 (see
21 - &lt;http://en.wikipedia.org/wiki/Cuckoo_hashing&gt;). Cuckoo hashing has
22 + &lt;https://en.wikipedia.org/wiki/Cuckoo_hashing&gt;). Cuckoo hashing has
23 worst-case /O(1)/ lookups and can reach a high \"load factor\", in which
24 the table can perform acceptably well even when more than 90% full.
25 Randomized testing shows this implementation of cuckoo hashing to be
26 @@ -35,7 +35,7 @@
27 when the table is resized.
28
29 3. "Data.HashTable.ST.Linear" contains a linear hash table (see
30 - &lt;http://en.wikipedia.org/wiki/Linear_hashing&gt;), which trades some insert
31 + &lt;https://en.wikipedia.org/wiki/Linear_hashing&gt;), which trades some insert
32 and lookup performance for higher space efficiency and much shorter
33 delays when expanding the table. In most cases, benchmarks show this
34 table to be currently slightly faster than @Data.HashTable@ from the
35 @@ -70,7 +70,7 @@
36 incompatible with HPC code coverage reports.
37
38 * @sse41@, default /OFF/. If this flag is enabled, we use some SSE 4.1
39 - instructions (see &lt;http://en.wikipedia.org/wiki/SSE4&gt;, first available on
40 + instructions (see &lt;https://en.wikipedia.org/wiki/SSE4&gt;, first available on
41 Intel Core 2 processors) to speed up cache-line searches for cuckoo
42 hashing.