commit 919ceb0acbf4c6bc4f463433504a338c643612c2 Author: Karen D. Devine Date: Tue Feb 2 13:49:13 2021 -0700 tpetra: removed duplicate using statement #8673 diff --git a/packages/tpetra/core/src/Tpetra_Details_FixedHashTable_def.hpp b/packages/tpetra/core/src/Tpetra_Details_FixedHashTable_def.hpp index a76f78c41a8..69d4dc46d03 100644 --- a/packages/tpetra/core/src/Tpetra_Details_FixedHashTable_def.hpp +++ b/packages/tpetra/core/src/Tpetra_Details_FixedHashTable_def.hpp @@ -1094,7 +1094,6 @@ init (const keys_type& keys, // Allocate the array of (key,value) pairs. Don't fill it with // zeros, because we will fill it with actual data below. - using Kokkos::ViewAllocateWithoutInitializing; typedef typename val_type::non_const_type nonconst_val_type; nonconst_val_type val (ViewAllocateWithoutInitializing ("Tpetra::FixedHashTable::pairs"), theNumKeys); Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/home/services/dotfiles.scm
AgeCommit message (Expand)Author
2024-03-06gnu: home: dotfiles: Properly support both plain and Stow directory layouts....Fixes <https://issues.guix.gnu.org/68848>. The current implementation of the home-dotfiles-service-type contradicts the Guix manual. This patch properly implements both the plain and Stow dotfiles directory layouts. It does so by refactoring home-dotfiles-configuration adding a new packages field to support GNU Stow's users workflow and introducing a new layout field to switch between the two directory layouts. * gnu/home/services/dotfiles (home-dotfiles-configuration): Migrate to (gnu services configuration); [packages]: new field; [layout]: new field; (strip-stow-dotfile): new variable; (strip-plain-dotfile): new variable; (home-dotfiles-configuration->files): use the new fields; [directory-contents]: allow for selecting a subset of application dotfile directories; * doc/guix.texi: document the new layouts. Change-Id: I2e96037608353e360828290f055ec5271cfdfd48 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Giacomo Leidi
2024-01-28home: Add home-dotfiles-service....* gnu/home/service/dotfiles.scm: New file; * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * po/guix/POTFILES.in: Add it. * doc/guix.texi (Essential Home Services): Document it. Change-Id: I6769169cfacefc3842faa5b31bee081c56c28743 Co-authored-by: Ludovic Courtès <ludo@gnu.org> Giacomo Leidi