From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 890D61382C5 for ; Sat, 27 Jan 2018 09:54:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98400E092D; Sat, 27 Jan 2018 09:54:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 765B7E092D for ; Sat, 27 Jan 2018 09:54:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2F81D335C36 for ; Sat, 27 Jan 2018 09:54:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2EBF21BB for ; Sat, 27 Jan 2018 09:54:52 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1517046855.d8cd75a2a930703e095576de6bab450232ce9723.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/hashtables/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-haskell/hashtables/metadata.xml X-VCS-Directories: dev-haskell/hashtables/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d8cd75a2a930703e095576de6bab450232ce9723 X-VCS-Branch: master Date: Sat, 27 Jan 2018 09:54:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8a1f5e2b-0b1c-4798-9b80-7338a8c690cf X-Archives-Hash: af128dd9d03a27ace404f09113022645 commit: d8cd75a2a930703e095576de6bab450232ce9723 Author: Francesco Turco fastmail fm> AuthorDate: Thu Sep 7 15:04:10 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 27 09:54:15 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8cd75a2 dev-haskell/hashtables: use HTTPS for links to en.wikipedia.org, bug #637190 dev-haskell/hashtables/metadata.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-haskell/hashtables/metadata.xml b/dev-haskell/hashtables/metadata.xml index 9e68dbf75d7..7443663f12a 100644 --- a/dev-haskell/hashtables/metadata.xml +++ b/dev-haskell/hashtables/metadata.xml @@ -24,7 +24,7 @@ 2. "Data.HashTable.ST.Cuckoo" contains an implementation of \"cuckoo hashing\" as introduced by Pagh and Rodler in 2001 (see - <http://en.wikipedia.org/wiki/Cuckoo_hashing>). Cuckoo hashing has + <https://en.wikipedia.org/wiki/Cuckoo_hashing>). Cuckoo hashing has worst-case /O(1)/ lookups and can reach a high \"load factor\", in which the table can perform acceptably well even when more than 90% full. Randomized testing shows this implementation of cuckoo hashing to be @@ -35,7 +35,7 @@ when the table is resized. 3. "Data.HashTable.ST.Linear" contains a linear hash table (see - <http://en.wikipedia.org/wiki/Linear_hashing>), which trades some insert + <https://en.wikipedia.org/wiki/Linear_hashing>), which trades some insert and lookup performance for higher space efficiency and much shorter delays when expanding the table. In most cases, benchmarks show this table to be currently slightly faster than @Data.HashTable@ from the @@ -70,7 +70,7 @@ incompatible with HPC code coverage reports. * @sse41@, default /OFF/. If this flag is enabled, we use some SSE 4.1 - instructions (see <http://en.wikipedia.org/wiki/SSE4>, first available on + instructions (see <https://en.wikipedia.org/wiki/SSE4>, first available on Intel Core 2 processors) to speed up cache-line searches for cuckoo hashing.