From 05c157a60f66d0fe57d379021fec478ca67e94b7 Mon Sep 17 00:00:00 2001 From: Marc Vef Date: Tue, 22 Feb 2022 14:32:23 +0100 Subject: [PATCH 1/2] Adding GekkoFS running chapter to the wiki --- README.md | 15 ++- docs/sphinx/users/building.rst | 10 +- docs/sphinx/users/running.md | 172 +++++++++++++++++++++++++++++++++ docs/sphinx/users/running.rst | 2 - 4 files changed, 184 insertions(+), 15 deletions(-) create mode 100644 docs/sphinx/users/running.md delete mode 100644 docs/sphinx/users/running.rst diff --git a/README.md b/README.md index 00dc8c4e4..f2c861414 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,10 @@ GekkoFS testing support: `python38-devel` (**>Python-3.6 required**) 1. Make sure the above listed dependencies are available on your machine 2. Clone GekkoFS: `git clone --recurse-submodules https://storage.bsc.es/gitlab/hpc/gekkofs.git` -3. Set up the necessary environment variables where the compiled direct GekkoFS dependencies will be installed at (we assume the path `/home/foo/gekkofs_deps/install` in the following) + - (Optional) (Optional) If you checked out the sources using `git` without the `--recursive` option, you need to + execute the following command from the root of the source directory: `git submodule update --init` +3. Set up the necessary environment variables where the compiled direct GekkoFS dependencies will be installed at (we + assume the path `/home/foo/gekkofs_deps/install` in the following) - `export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/home/foo/gekkofs_deps/install/lib:/home/foo/gekkofs_deps/install/lib64` 4. Download and compile the direct dependencies, e.g., - Download example: `gekkofs/scripts/dl_dep.sh /home/foo/gekkofs_deps/git` @@ -58,10 +61,12 @@ the binary on many nodes, e.g., `srun`, `mpiexec/mpirun`, `pdsh`, or `pssh`. You need to decide what Mercury NA plugin you want to use for network communication. `ofi+sockets` is the default. The `-P` argument is used for setting another RPC protocol. See below. - - `ofi+sockets` for using the libfabric plugin with TCP (stable) - - `ofi+tcp` for using the libfabric plugin with TCP (slower than sockets) - - `ofi+verbs` for using the libfabric plugin with Infiniband verbs (reasonably stable) - - `ofi+psm2` for using the libfabric plugin with Intel Omni-Path (unstable) +- `ofi+sockets` for using the libfabric plugin with TCP (stable) +- `ofi+tcp` for using the libfabric plugin with TCP (slower than sockets) +- `ofi+verbs` for using the libfabric plugin with Infiniband verbs (reasonably stable) and requires + the [rdma-core (formerly libibverbs)](https://github.com/linux-rdma/rdma-core) library +- `ofi+psm2` for using the libfabric plugin with Intel Omni-Path (unstable) and requires + the [opa-psm2](https://github.com/cornelisnetworks/opa-psm2>) library ## The GekkoFS hostsfile diff --git a/docs/sphinx/users/building.rst b/docs/sphinx/users/building.rst index 3fa5f1684..bcd13438b 100644 --- a/docs/sphinx/users/building.rst +++ b/docs/sphinx/users/building.rst @@ -75,23 +75,17 @@ order to function properly. We list them here for informational purposes. the :ref:`step-by-step installation` section before attempting a manual install. -- `RocksDB `_ version 6.2.2 or newer and its dependencies: - - - `bzip2 `_ version 1.0.6 or newer. - - - `zstd `_ version 1.3.2 or newer. +- `RocksDB `_ version 6.2.2 or newer and its used compression library: - `lz4 `_ version 1.8.0 or newer. - - `snappy `_ version 1.1.7 or newer. - - `Margo `_ version 0.6.3 and its dependencies: - `Argobots `_ version 1.0rc1. - `Mercury `_ version 2.0.0. - - `libfabric `_ and/or `bmi `_. + - `libfabric `_ version 1.9 or newer. - `syscall_intercept `_ (commit f7cebb7 or newer) and its dependencies: diff --git a/docs/sphinx/users/running.md b/docs/sphinx/users/running.md new file mode 100644 index 000000000..286353a98 --- /dev/null +++ b/docs/sphinx/users/running.md @@ -0,0 +1,172 @@ +# Running GekkoFS + +This section describes how to run GekkoFS locally or within a cluster environment. + +## General + +First of all, the GekkoFS daemon (`gkfs_daemon` binary) has to be started on each node. Other tools can be used to +execute the binary on many nodes, e.g., `srun`, +`mpiexec/mpirun`, `pdsh`, or `pssh`. + +Now, you need to decide what Mercury NA plugin you want to use for network communication. +`ofi+sockets` is the default and uses the TCP protocol. + +When running the daemon binary, the `-P` argument can be used to control which RPC protocol should be used: + +- `ofi+sockets` for using the libfabric plugin with TCP (stable) +- `ofi+tcp` for using the libfabric plugin with TCP (slower than sockets) +- `ofi+verbs` for using the libfabric plugin with Infiniband verbs (reasonably stable) and requires + the [rdma-core (formerly libibverbs)](https://github.com/linux-rdma/rdma-core) library +- `ofi+psm2` for using the libfabric plugin with Intel Omni-Path (unstable) and requires + the [opa-psm2](https://github.com/cornelisnetworks/opa-psm2>) library + +## The GekkoFS hostsfile + +Each GekkoFS daemon needs to register itself in a shared file (*host file*) which needs to be accessible to **all** +GekkoFS clients and daemons. Therefore, the hostsfile describes a file system and which node is part of that specific +GekkoFS file system instance. Conceptually, the hostsfile represents a single GekkoFS file system instance. That is to +say, all daemons of one GekkoFS use the same hostsfile to identify as a server in that file system instance and +namespace. + +```{important} +At this time, we only support strongly consistent parallel file systems, such as Lustre or GPFS, for storing the hostsfile, when one GekkoFS file systems consists of multiple servers. +While we will offer an alternative in the future, this means that eventual consistent file systems, e.g., NFS, cannot be used for the hostsfile. +Note that if only one daemon is part of a file system instance, and all GekkoFS client are run on the same node (e.g., a laptop), the hostsfile can be stored on a local file system. +``` + +## GekkoFS daemon start and shutdown + +tl;dr example: `/bin/gkfs_daemon -r -m -H ` + +When running the daemon, it requires two mandatory arguments: which specify where the daemon stores its data and +metadata locally, and at which path clients can access the file system (mount point): + +1. `-r/--rootdir ` specifies where the daemon stores its data and metadata locally. In general, the daemon + can use any device with a file system path that is accessible to the user, e.g., a RAMDisk or a node-local SSD. + +2. `-m/--mountdir ` specifies a pseudo mount directory used by clients to access GekkoFS. + This pseudo mount directory differs from usual file system mount points which mounted as a kernel-based file system. + Therefore, GekkoFS will **not** appear when typing `mount` on the command line. Rather, the pseudo mount dir is used + later by the client interposition library which intercepts file system operations and processes those which are + within the GekkoFS namespace. + +3. (optional) `-H/--hosts-file ` specifies the path where the hostsfile is placed. In a distributed + environment, all daemons should use the same file (see above) and, therefore, this argument should be used. By + default, the daemon creates a hostsfile in the current working directory (see below). + +Further options are available + +```bash + Allowed options + Usage: src/daemon/gkfs_daemon [OPTIONS] + + Options: + -h,--help Print this help message and exit + -m,--mountdir TEXT REQUIRED Virtual mounting directory where GekkoFS is available. + -r,--rootdir TEXT REQUIRED Local data directory where GekkoFS data for this daemon is stored. + -s,--rootdir-suffix TEXT Creates an additional directory within the rootdir, allowing multiple daemons on one node. + -i,--metadir TEXT Metadata directory where GekkoFS RocksDB data directory is located. If not set, rootdir is used. + -l,--listen TEXT Address or interface to bind the daemon to. Default: local hostname. + When used with ofi+verbs the FI_VERBS_IFACE environment variable is set accordingly which associates the verbs device with the network interface. In case FI_VERBS_IFACE is already defined, the argument is ignored. Default 'ib'. + -H,--hosts-file TEXT Shared file used by deamons to register their endpoints. (default './gkfs_hosts.txt') + -P,--rpc-protocol TEXT Used RPC protocol for inter-node communication. + Available: {ofi+sockets, ofi+verbs, ofi+psm2} for TCP, Infiniband, and Omni-Path, respectively. (Default ofi+sockets) + Libfabric must have enabled support verbs or psm2. + --auto-sm Enables intra-node communication (IPCs) via the `na+sm` (shared memory) protocol, instead of using the RPC protocol. (Default off) + -c,--clean-rootdir Cleans Rootdir >before< launching the deamon + --version Print version and exit. +```` + +Shut it down by gracefully killing the process (SIGTERM). + +```{note} +It is possible to run multiple independent GekkoFS instances on the same node. Note, that when these GekkoFS instances +are part of the same file system, use the same `rootdir` with different `rootdir-suffixe`. +``` + +### Running and shutting down GekkoFS as a Slurm job step + +To run GekkoFS as a Slurm job step, it is as easy as executing `srun /gkfs_daemon &` +to launch GekkoFS in the background. An easy way to check if all daemons have started, is to count the number of lines +in the hostsfile which corresponds to the number of started daemons. + +It is recommended that you explicitly tell Slurm which and how many resources it should use on each node. +Noteworthy `srun` arguments are as follows: + +- `--disable-status` allows to immediately forward a signal, e.g., `SIGINT`, to the running job +- `-N`, `--ntasks`, and `--ntasks-per-node` allows defining how many daemons are run on how many nodes +- `--cpus-per-task` allows to set the number of CPU resources the daemon can use + +If a node features multiple CPU sockets, it is recommended to pin the daemon to one socket with `numactl`, `taskset`, or +similar. + +To gracefully shut down all daemons, send `SIGINT` to the background process: `kill -s SIGINT `. This +command finishes once all daemons have shut down. + +## Use the GekkoFS client library + +tl;dr example: + +```bash +export LIBGKFS_ HOSTS_FILE= +LD_PRELOAD=/lib64/libgkfs_intercept.so cp ~/some_input_data /some_input_data +LD_PRELOAD=/lib64/libgkfs_intercept.so md5sum ~/some_input_data /some_input_data +``` + +Clients read the hostsfile to determine which daemons are part of the GekkoFS instance. Because the client is an +interposition library that is loaded within the context of the application, this information is passed via the +environment variable `LIBGKFS_HOSTS_FILE` pointing to the hostsfile path. The client library itself is loaded for each +application process via the `LD_PRELOAD` environment variable intercepting file system related calls. If they are +within (or hierarchically under) the GekkoFS mount directory they are processed in the library, otherwise they are +passed to the kernel. + +Note, if `LD_PRELOAD` is not pointing to the library and, hence the client is not loaded, the mounting directory appears +to be empty. + +For MPI applications, the `LD_PRELOAD` and `LIBGKFS_HOSTS_FILE` variables can be passed with the `-x` argument +for `mpirun/mpiexec`. + +### Logging + +#### Client logging + +The following environment variables can be used to enable logging in the client library: `LIBGKFS_LOG=` +and `LIBGKFS_LOG_OUTPUT=` to configure the output module and set the path to the log file of the client +library. If not path is specified in `LIBGKFS_LOG_OUTPUT`, the client library will send log messages +to `/tmp/gkfs_client.log`. + +The following modules are available: + +- `none`: don't print any messages +- `syscalls`: Trace system calls: print the name of each system call, its arguments, and its return value. All system + calls are printed after being executed save for those that may not return, such as `execve()`, + `execve_at()`, `exit()`, and `exit_group()`. This module will only be available if the client library is built + in `Debug` mode. +- `syscalls_at_entry`: Trace system calls: print the name of each system call and its arguments. All system calls are + printed before being executed and therefore their return values are not available in the log. This module will only be + available if the client library is built in `Debug` mode. +- `info`: Print information messages. +- `critical`: Print critical errors. +- `errors`: Print errors. +- `warnings`: Print warnings. +- `mercury`: Print Mercury messages. +- `debug`: Print debug messages. This module will only be available if the client library is built in `Debug` mode. +- `most`: All previous options combined except `syscalls_at_entry`. This module will only be available if the client + library is built in `Debug` + mode. +- `all`: All previous options combined. +- `trace_reads`: Generate log line with extra information in read operations for guided distributor +- `help`: Print a help message and exit. + +When tracing sytem calls, specific syscalls can be removed from log messages by setting the `LIBGKFS_LOG_SYSCALL_FILTER` +environment variable. For instance, setting it to `LIBGKFS_LOG_SYSCALL_FILTER=epoll_wait,epoll_create` will filter out +any log entries from the `epoll_wait()` and `epoll_create()` system calls. + +Additionally, setting the `LIBGKFS_LOG_OUTPUT_TRUNC` environment variable with a value different from `0` will instruct +the logging subsystem to truncate the file used for logging, rather than append to it. + +#### Daemon logging + +For the daemon, the `GKFS_DAEMON_LOG_PATH=` environment variable can be provided to set the path to the +log file, and the log module can be selected with the `GKFS_LOG_LEVEL={off,critical,err,warn,info,debug,trace}` +environment variable whereas `trace` produces the most trace records while `info` is the default value. \ No newline at end of file diff --git a/docs/sphinx/users/running.rst b/docs/sphinx/users/running.rst deleted file mode 100644 index 8bf8ef498..000000000 --- a/docs/sphinx/users/running.rst +++ /dev/null @@ -1,2 +0,0 @@ -Running GekkoFS -================ -- GitLab From 7c887b9df235c259b3fca32406cec35b2ee8a88f Mon Sep 17 00:00:00 2001 From: Marc Vef Date: Mon, 21 Feb 2022 20:37:33 +0100 Subject: [PATCH 2/2] Updating copyright year to 2022 --- CMake/FindAGIOS.cmake | 4 ++-- CMake/FindAbt.cmake | 4 ++-- CMake/FindBoost_preprocessor.cmake | 4 ++-- CMake/FindDate.cmake | 4 ++-- CMake/FindJeMalloc.cmake | 4 ++-- CMake/FindLZ4.cmake | 4 ++-- CMake/FindMargo.cmake | 4 ++-- CMake/FindRocksDB.cmake | 4 ++-- CMake/FindSnappy.cmake | 4 ++-- CMake/FindSphinx.cmake | 4 ++-- CMake/FindSyscall_intercept.cmake | 4 ++-- CMake/FindZStd.cmake | 4 ++-- CMake/GkfsPythonTesting.cmake | 4 ++-- CMake/gkfs-code-coverage.cmake | 4 ++-- CMake/gkfs-utils.cmake | 4 ++-- CMakeLists.txt | 4 ++-- docs/CMakeLists.txt | 4 ++-- docs/doxygen/CMakeLists.txt | 4 ++-- docs/sphinx/CMakeLists.txt | 4 ++-- include/client/env.hpp | 4 ++-- include/client/gkfs_functions.hpp | 4 ++-- include/client/hooks.hpp | 4 ++-- include/client/intercept.hpp | 4 ++-- include/client/logging.hpp | 4 ++-- include/client/make_array.hpp | 4 ++-- include/client/open_dir.hpp | 4 ++-- include/client/open_file_map.hpp | 4 ++-- include/client/path.hpp | 4 ++-- include/client/preload.hpp | 4 ++-- include/client/preload_context.hpp | 4 ++-- include/client/preload_util.hpp | 4 ++-- include/client/rpc/forward_data.hpp | 4 ++-- include/client/rpc/forward_management.hpp | 4 ++-- include/client/rpc/forward_metadata.hpp | 4 ++-- include/client/rpc/rpc_types.hpp | 4 ++-- include/client/syscalls.hpp | 4 ++-- include/client/syscalls/args.hpp | 4 ++-- include/client/syscalls/decoder.hpp | 4 ++-- include/client/syscalls/detail/syscall_info.h | 4 ++-- include/client/syscalls/errno.hpp | 4 ++-- include/client/syscalls/rets.hpp | 4 ++-- include/client/syscalls/syscall.hpp | 4 ++-- include/common/arithmetic/arithmetic.hpp | 4 ++-- include/common/common_defs.hpp | 4 ++-- include/common/env_util.hpp | 4 ++-- include/common/log_util.hpp | 4 ++-- include/common/metadata.hpp | 4 ++-- include/common/path_util.hpp | 4 ++-- include/common/rpc/rpc_types.hpp | 4 ++-- include/common/rpc/rpc_util.hpp | 4 ++-- include/config.hpp | 4 ++-- include/daemon/backend/data/chunk_storage.hpp | 4 ++-- include/daemon/backend/data/data_module.hpp | 4 ++-- include/daemon/backend/data/file_handle.hpp | 4 ++-- include/daemon/backend/exceptions.hpp | 4 ++-- include/daemon/backend/metadata/db.hpp | 4 ++-- include/daemon/backend/metadata/merge.hpp | 4 ++-- include/daemon/backend/metadata/metadata_module.hpp | 4 ++-- include/daemon/classes/fs_data.hpp | 4 ++-- include/daemon/classes/rpc_data.hpp | 4 ++-- include/daemon/daemon.hpp | 4 ++-- include/daemon/env.hpp | 4 ++-- include/daemon/handler/rpc_defs.hpp | 4 ++-- include/daemon/handler/rpc_util.hpp | 4 ++-- include/daemon/ops/data.hpp | 4 ++-- include/daemon/ops/metadentry.hpp | 4 ++-- include/daemon/scheduler/agios.hpp | 4 ++-- include/daemon/util.hpp | 4 ++-- scripts/benchmark_check.sh | 4 ++-- scripts/check_format.sh | 4 ++-- scripts/ci/coverage.sh | 4 ++-- scripts/ci/trim_build_artifacts.sh | 4 ++-- scripts/compile_dep.sh | 4 ++-- scripts/dl_dep.sh | 4 ++-- scripts/gkfs_dep.sh | 4 ++-- scripts/maintainer-tools/copyright-headers/Dockerfile | 4 ++-- scripts/maintainer-tools/copyright-headers/README.md | 4 ++-- scripts/maintainer-tools/copyright-headers/gekkofs-syntax.yml | 4 ++-- scripts/maintainer-tools/copyright-headers/manage-headers.sh | 4 ++-- scripts/profiles/0.8.0/all.specs | 4 ++-- scripts/profiles/0.8.0/ci.specs | 4 ++-- scripts/profiles/0.8.0/default.specs | 4 ++-- scripts/profiles/0.8.0/direct.specs | 4 ++-- scripts/profiles/0.8.0/install/agios.install | 4 ++-- scripts/profiles/0.8.0/install/argobots.install | 4 ++-- scripts/profiles/0.8.0/install/bmi.install | 4 ++-- scripts/profiles/0.8.0/install/bzip2.install | 4 ++-- scripts/profiles/0.8.0/install/capstone.install | 4 ++-- scripts/profiles/0.8.0/install/date.install | 4 ++-- scripts/profiles/0.8.0/install/libfabric%experimental.install | 4 ++-- scripts/profiles/0.8.0/install/libfabric%verbs.install | 4 ++-- scripts/profiles/0.8.0/install/libfabric.install | 4 ++-- scripts/profiles/0.8.0/install/lz4.install | 4 ++-- scripts/profiles/0.8.0/install/margo.install | 4 ++-- scripts/profiles/0.8.0/install/mercury.install | 4 ++-- scripts/profiles/0.8.0/install/rocksdb%experimental.install | 4 ++-- scripts/profiles/0.8.0/install/rocksdb.install | 4 ++-- scripts/profiles/0.8.0/install/snappy.install | 4 ++-- scripts/profiles/0.8.0/install/syscall_intercept.install | 4 ++-- scripts/profiles/0.8.0/install/zstd.install | 4 ++-- scripts/profiles/0.8.0/mogon2.specs | 4 ++-- scripts/profiles/0.8.0/ngio.specs | 4 ++-- scripts/profiles/0.9.0/agios.specs | 4 ++-- scripts/profiles/0.9.0/ci.specs | 4 ++-- scripts/profiles/0.9.0/default.specs | 4 ++-- scripts/profiles/0.9.0/direct.specs | 4 ++-- scripts/profiles/0.9.0/infiniband_verbs.specs | 4 ++-- scripts/profiles/0.9.0/install/agios.install | 4 ++-- scripts/profiles/0.9.0/install/argobots.install | 4 ++-- scripts/profiles/0.9.0/install/capstone.install | 4 ++-- scripts/profiles/0.9.0/install/date.install | 4 ++-- scripts/profiles/0.9.0/install/json-c.install | 4 ++-- scripts/profiles/0.9.0/install/libfabric%verbs.install | 4 ++-- scripts/profiles/0.9.0/install/libfabric.install | 4 ++-- scripts/profiles/0.9.0/install/lz4.install | 4 ++-- scripts/profiles/0.9.0/install/margo.install | 4 ++-- scripts/profiles/0.9.0/install/mercury.install | 4 ++-- scripts/profiles/0.9.0/install/rocksdb.install | 4 ++-- scripts/profiles/0.9.0/install/syscall_intercept.install | 4 ++-- scripts/profiles/0.9.0/marenostrum4.specs | 4 ++-- scripts/profiles/0.9.0/mogon2.specs | 4 ++-- scripts/profiles/0.9.0/ngio.specs | 4 ++-- scripts/profiles/0.9.0/omnipath_psm2.specs | 4 ++-- scripts/profiles/sources.list | 4 ++-- src/client/CMakeLists.txt | 4 ++-- src/client/gkfs_functions.cpp | 4 ++-- src/client/hooks.cpp | 4 ++-- src/client/intercept.cpp | 4 ++-- src/client/logging.cpp | 4 ++-- src/client/open_dir.cpp | 4 ++-- src/client/open_file_map.cpp | 4 ++-- src/client/path.cpp | 4 ++-- src/client/preload.cpp | 4 ++-- src/client/preload_context.cpp | 4 ++-- src/client/preload_util.cpp | 4 ++-- src/client/rpc/forward_data.cpp | 4 ++-- src/client/rpc/forward_management.cpp | 4 ++-- src/client/rpc/forward_metadata.cpp | 4 ++-- src/client/rpc/rpc_types.cpp | 4 ++-- src/client/syscalls/detail/syscall_info.c | 4 ++-- src/common/CMakeLists.txt | 4 ++-- src/common/arithmetic/CMakeLists.txt | 4 ++-- src/common/env_util.cpp | 4 ++-- src/common/log_util.cpp | 4 ++-- src/common/metadata.cpp | 4 ++-- src/common/path_util.cpp | 4 ++-- src/common/rpc/rpc_util.cpp | 4 ++-- src/daemon/CMakeLists.txt | 4 ++-- src/daemon/backend/CMakeLists.txt | 4 ++-- src/daemon/backend/data/CMakeLists.txt | 4 ++-- src/daemon/backend/data/chunk_storage.cpp | 4 ++-- src/daemon/backend/data/data_module.cpp | 4 ++-- src/daemon/backend/metadata/CMakeLists.txt | 4 ++-- src/daemon/backend/metadata/db.cpp | 4 ++-- src/daemon/backend/metadata/merge.cpp | 4 ++-- src/daemon/backend/metadata/metadata_module.cpp | 4 ++-- src/daemon/classes/fs_data.cpp | 4 ++-- src/daemon/classes/rpc_data.cpp | 4 ++-- src/daemon/daemon.cpp | 4 ++-- src/daemon/handler/srv_data.cpp | 4 ++-- src/daemon/handler/srv_management.cpp | 4 ++-- src/daemon/handler/srv_metadata.cpp | 4 ++-- src/daemon/ops/data.cpp | 4 ++-- src/daemon/ops/metadentry.cpp | 4 ++-- src/daemon/scheduler/agios.cpp | 4 ++-- src/daemon/util.cpp | 4 ++-- test/CMakeLists.txt | 4 ++-- test/IO_test.cpp | 4 ++-- test/dir_test.cpp | 4 ++-- test/lseek.cpp | 4 ++-- test/main.cpp | 4 ++-- test/main_IO_testing.cpp | 4 ++-- test/main_MPI.cpp | 4 ++-- test/main_temp.cpp | 4 ++-- test/symlink_test.cpp | 4 ++-- test/truncate.cpp | 4 ++-- test/wr_test.cpp | 4 ++-- tests/CMakeLists.txt | 4 ++-- tests/integration/CMakeLists.txt | 4 ++-- tests/integration/conftest.py | 4 ++-- tests/integration/data/test_truncate.py | 4 ++-- tests/integration/directories/test_pathresolution.py | 4 ++-- tests/integration/directories/test_symlink.py | 4 ++-- tests/integration/forwarding/test_map.py | 4 ++-- tests/integration/harness/CMakeLists.txt | 4 ++-- tests/integration/harness/cli.py | 4 ++-- tests/integration/harness/cmd.py | 4 ++-- tests/integration/harness/gkfs.io/binary_buffer.hpp | 4 ++-- tests/integration/harness/gkfs.io/chdir.cpp | 4 ++-- tests/integration/harness/gkfs.io/command.hpp | 4 ++-- tests/integration/harness/gkfs.io/commands.hpp | 4 ++-- tests/integration/harness/gkfs.io/getcwd_validate.cpp | 4 ++-- tests/integration/harness/gkfs.io/lseek.cpp | 4 ++-- tests/integration/harness/gkfs.io/main.cpp | 4 ++-- tests/integration/harness/gkfs.io/mkdir.cpp | 4 ++-- tests/integration/harness/gkfs.io/open.cpp | 4 ++-- tests/integration/harness/gkfs.io/opendir.cpp | 4 ++-- tests/integration/harness/gkfs.io/pread.cpp | 4 ++-- tests/integration/harness/gkfs.io/preadv.cpp | 4 ++-- tests/integration/harness/gkfs.io/pwrite.cpp | 4 ++-- tests/integration/harness/gkfs.io/pwritev.cpp | 4 ++-- tests/integration/harness/gkfs.io/read.cpp | 4 ++-- tests/integration/harness/gkfs.io/readdir.cpp | 4 ++-- tests/integration/harness/gkfs.io/readv.cpp | 4 ++-- tests/integration/harness/gkfs.io/reflection.hpp | 4 ++-- tests/integration/harness/gkfs.io/rmdir.cpp | 4 ++-- tests/integration/harness/gkfs.io/serialize.hpp | 4 ++-- tests/integration/harness/gkfs.io/stat.cpp | 4 ++-- tests/integration/harness/gkfs.io/statx.cpp | 4 ++-- tests/integration/harness/gkfs.io/symlink.cpp | 4 ++-- tests/integration/harness/gkfs.io/truncate.cpp | 4 ++-- tests/integration/harness/gkfs.io/util/file_compare.cpp | 4 ++-- tests/integration/harness/gkfs.io/write.cpp | 4 ++-- tests/integration/harness/gkfs.io/write_random.cpp | 4 ++-- tests/integration/harness/gkfs.io/write_validate.cpp | 4 ++-- tests/integration/harness/gkfs.io/writev.cpp | 4 ++-- tests/integration/harness/io.py | 4 ++-- tests/integration/harness/logger.py | 4 ++-- tests/integration/harness/reporter.py | 4 ++-- tests/integration/harness/workspace.py | 4 ++-- tests/integration/operations/test_read_operations.py | 4 ++-- tests/integration/operations/test_write_operations.py | 4 ++-- tests/integration/position/test_lseek.py | 4 ++-- tests/integration/shell/test_concat.py | 4 ++-- tests/integration/shell/test_cp.py | 4 ++-- tests/integration/shell/test_stat.py | 4 ++-- tests/integration/status/test_status.py | 4 ++-- tests/unit/CMakeLists.txt | 4 ++-- tests/unit/catch_main.cpp | 4 ++-- tests/unit/helpers/CMakeLists.txt | 4 ++-- tests/unit/helpers/helpers.hpp | 4 ++-- tests/unit/helpers/random_string.cpp | 4 ++-- tests/unit/helpers/temporary_directory.cpp | 4 ++-- tests/unit/helpers/temporary_file.cpp | 4 ++-- tests/unit/test_example_00.cpp | 4 ++-- tests/unit/test_example_01.cpp | 4 ++-- tests/unit/test_helpers.cpp | 4 ++-- tests/unit/test_utils_arithmetic.cpp | 4 ++-- 238 files changed, 476 insertions(+), 476 deletions(-) diff --git a/CMake/FindAGIOS.cmake b/CMake/FindAGIOS.cmake index 143db4f13..4ef139eb4 100644 --- a/CMake/FindAGIOS.cmake +++ b/CMake/FindAGIOS.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/FindAbt.cmake b/CMake/FindAbt.cmake index 827c6474a..a92c3543f 100644 --- a/CMake/FindAbt.cmake +++ b/CMake/FindAbt.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/FindBoost_preprocessor.cmake b/CMake/FindBoost_preprocessor.cmake index 76090e60e..e1658b1e6 100644 --- a/CMake/FindBoost_preprocessor.cmake +++ b/CMake/FindBoost_preprocessor.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/FindDate.cmake b/CMake/FindDate.cmake index b7f25d757..7534fc3d7 100644 --- a/CMake/FindDate.cmake +++ b/CMake/FindDate.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/FindJeMalloc.cmake b/CMake/FindJeMalloc.cmake index 5554b792c..e321e0665 100644 --- a/CMake/FindJeMalloc.cmake +++ b/CMake/FindJeMalloc.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/FindLZ4.cmake b/CMake/FindLZ4.cmake index 7569b8819..a82ff81e6 100644 --- a/CMake/FindLZ4.cmake +++ b/CMake/FindLZ4.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/FindMargo.cmake b/CMake/FindMargo.cmake index eb1f18cf7..ec3f3193c 100644 --- a/CMake/FindMargo.cmake +++ b/CMake/FindMargo.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/FindRocksDB.cmake b/CMake/FindRocksDB.cmake index 7e2dec190..5d4b2c9ce 100644 --- a/CMake/FindRocksDB.cmake +++ b/CMake/FindRocksDB.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/FindSnappy.cmake b/CMake/FindSnappy.cmake index d5b04991d..8dcb5e9bc 100644 --- a/CMake/FindSnappy.cmake +++ b/CMake/FindSnappy.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/FindSphinx.cmake b/CMake/FindSphinx.cmake index 1c7db99af..9b80a4858 100644 --- a/CMake/FindSphinx.cmake +++ b/CMake/FindSphinx.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/FindSyscall_intercept.cmake b/CMake/FindSyscall_intercept.cmake index 66564b3d5..e0dd5bfa8 100644 --- a/CMake/FindSyscall_intercept.cmake +++ b/CMake/FindSyscall_intercept.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/FindZStd.cmake b/CMake/FindZStd.cmake index 959c331b7..f873fa3bf 100644 --- a/CMake/FindZStd.cmake +++ b/CMake/FindZStd.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/GkfsPythonTesting.cmake b/CMake/GkfsPythonTesting.cmake index be064068d..89785bbc2 100644 --- a/CMake/GkfsPythonTesting.cmake +++ b/CMake/GkfsPythonTesting.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/gkfs-code-coverage.cmake b/CMake/gkfs-code-coverage.cmake index f3335724a..d8d23c4fd 100644 --- a/CMake/gkfs-code-coverage.cmake +++ b/CMake/gkfs-code-coverage.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMake/gkfs-utils.cmake b/CMake/gkfs-utils.cmake index 52a4c0404..e4ea1379d 100644 --- a/CMake/gkfs-utils.cmake +++ b/CMake/gkfs-utils.cmake @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/CMakeLists.txt b/CMakeLists.txt index 5a69c62aa..4efd6a898 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt index fc6d03644..4305d939d 100644 --- a/docs/CMakeLists.txt +++ b/docs/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/docs/doxygen/CMakeLists.txt b/docs/doxygen/CMakeLists.txt index 22009c598..33968bdf8 100644 --- a/docs/doxygen/CMakeLists.txt +++ b/docs/doxygen/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/docs/sphinx/CMakeLists.txt b/docs/sphinx/CMakeLists.txt index d01c10a6b..24df51acd 100644 --- a/docs/sphinx/CMakeLists.txt +++ b/docs/sphinx/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/include/client/env.hpp b/include/client/env.hpp index 64dd5467d..c35ae1ad3 100644 --- a/include/client/env.hpp +++ b/include/client/env.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/gkfs_functions.hpp b/include/client/gkfs_functions.hpp index f64b50215..d9d9d8d86 100644 --- a/include/client/gkfs_functions.hpp +++ b/include/client/gkfs_functions.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/hooks.hpp b/include/client/hooks.hpp index 9eca42262..c99f60858 100644 --- a/include/client/hooks.hpp +++ b/include/client/hooks.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/intercept.hpp b/include/client/intercept.hpp index 4af2f5e7e..0d5a3c9d2 100644 --- a/include/client/intercept.hpp +++ b/include/client/intercept.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/logging.hpp b/include/client/logging.hpp index e87aa0c05..e0f620cf6 100644 --- a/include/client/logging.hpp +++ b/include/client/logging.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/make_array.hpp b/include/client/make_array.hpp index eb0893fc1..f73435e48 100644 --- a/include/client/make_array.hpp +++ b/include/client/make_array.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/open_dir.hpp b/include/client/open_dir.hpp index 5f0664d86..a8aa3978e 100644 --- a/include/client/open_dir.hpp +++ b/include/client/open_dir.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/open_file_map.hpp b/include/client/open_file_map.hpp index 9787fe97b..2da1d0806 100644 --- a/include/client/open_file_map.hpp +++ b/include/client/open_file_map.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/path.hpp b/include/client/path.hpp index 0882a9e18..2294c28a4 100644 --- a/include/client/path.hpp +++ b/include/client/path.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/preload.hpp b/include/client/preload.hpp index 9829028e1..d5477f7a3 100644 --- a/include/client/preload.hpp +++ b/include/client/preload.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/preload_context.hpp b/include/client/preload_context.hpp index 183f7960b..bfdaacadf 100644 --- a/include/client/preload_context.hpp +++ b/include/client/preload_context.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/preload_util.hpp b/include/client/preload_util.hpp index 2014f84bf..9ccb8833b 100644 --- a/include/client/preload_util.hpp +++ b/include/client/preload_util.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/rpc/forward_data.hpp b/include/client/rpc/forward_data.hpp index b59a18818..d22abe9da 100644 --- a/include/client/rpc/forward_data.hpp +++ b/include/client/rpc/forward_data.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/rpc/forward_management.hpp b/include/client/rpc/forward_management.hpp index 9c90c7625..3bf3ea10c 100644 --- a/include/client/rpc/forward_management.hpp +++ b/include/client/rpc/forward_management.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/rpc/forward_metadata.hpp b/include/client/rpc/forward_metadata.hpp index 7b88efcc6..8ece28e4a 100644 --- a/include/client/rpc/forward_metadata.hpp +++ b/include/client/rpc/forward_metadata.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/rpc/rpc_types.hpp b/include/client/rpc/rpc_types.hpp index 34d5cfa5b..ad0f53a1b 100644 --- a/include/client/rpc/rpc_types.hpp +++ b/include/client/rpc/rpc_types.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/syscalls.hpp b/include/client/syscalls.hpp index 3187ec254..fb1384afe 100644 --- a/include/client/syscalls.hpp +++ b/include/client/syscalls.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/syscalls/args.hpp b/include/client/syscalls/args.hpp index 79406754b..6ba5ed732 100644 --- a/include/client/syscalls/args.hpp +++ b/include/client/syscalls/args.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/syscalls/decoder.hpp b/include/client/syscalls/decoder.hpp index 45a141bc3..915fa054d 100644 --- a/include/client/syscalls/decoder.hpp +++ b/include/client/syscalls/decoder.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/syscalls/detail/syscall_info.h b/include/client/syscalls/detail/syscall_info.h index 9067cf07a..2424cd9d8 100644 --- a/include/client/syscalls/detail/syscall_info.h +++ b/include/client/syscalls/detail/syscall_info.h @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/syscalls/errno.hpp b/include/client/syscalls/errno.hpp index 088bea6b3..992c0d89c 100644 --- a/include/client/syscalls/errno.hpp +++ b/include/client/syscalls/errno.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/syscalls/rets.hpp b/include/client/syscalls/rets.hpp index 6ff4bb5d4..0eb1aa446 100644 --- a/include/client/syscalls/rets.hpp +++ b/include/client/syscalls/rets.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/client/syscalls/syscall.hpp b/include/client/syscalls/syscall.hpp index a85b3ddd4..b86f0a2d6 100644 --- a/include/client/syscalls/syscall.hpp +++ b/include/client/syscalls/syscall.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/common/arithmetic/arithmetic.hpp b/include/common/arithmetic/arithmetic.hpp index afab3c540..564af262a 100644 --- a/include/common/arithmetic/arithmetic.hpp +++ b/include/common/arithmetic/arithmetic.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/common/common_defs.hpp b/include/common/common_defs.hpp index 5acc81230..c9d224387 100644 --- a/include/common/common_defs.hpp +++ b/include/common/common_defs.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/common/env_util.hpp b/include/common/env_util.hpp index 7c3534568..84a25eef3 100644 --- a/include/common/env_util.hpp +++ b/include/common/env_util.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/common/log_util.hpp b/include/common/log_util.hpp index 7775fb5db..2dca6a3c4 100644 --- a/include/common/log_util.hpp +++ b/include/common/log_util.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/common/metadata.hpp b/include/common/metadata.hpp index 8715e5591..7939e5c47 100644 --- a/include/common/metadata.hpp +++ b/include/common/metadata.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/common/path_util.hpp b/include/common/path_util.hpp index 8ff8efa93..f7d9cac49 100644 --- a/include/common/path_util.hpp +++ b/include/common/path_util.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/common/rpc/rpc_types.hpp b/include/common/rpc/rpc_types.hpp index 9e50f110e..7c05d68c1 100644 --- a/include/common/rpc/rpc_types.hpp +++ b/include/common/rpc/rpc_types.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/common/rpc/rpc_util.hpp b/include/common/rpc/rpc_util.hpp index 3a0f61571..0cc26e699 100644 --- a/include/common/rpc/rpc_util.hpp +++ b/include/common/rpc/rpc_util.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/config.hpp b/include/config.hpp index 56fcd0ede..10d672a25 100644 --- a/include/config.hpp +++ b/include/config.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/backend/data/chunk_storage.hpp b/include/daemon/backend/data/chunk_storage.hpp index b585469ed..f9fc3c69a 100644 --- a/include/daemon/backend/data/chunk_storage.hpp +++ b/include/daemon/backend/data/chunk_storage.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/backend/data/data_module.hpp b/include/daemon/backend/data/data_module.hpp index de3bda099..746301d9b 100644 --- a/include/daemon/backend/data/data_module.hpp +++ b/include/daemon/backend/data/data_module.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/backend/data/file_handle.hpp b/include/daemon/backend/data/file_handle.hpp index d130489d5..f385f8832 100644 --- a/include/daemon/backend/data/file_handle.hpp +++ b/include/daemon/backend/data/file_handle.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/backend/exceptions.hpp b/include/daemon/backend/exceptions.hpp index 6a992d9a7..dce7b71da 100644 --- a/include/daemon/backend/exceptions.hpp +++ b/include/daemon/backend/exceptions.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/backend/metadata/db.hpp b/include/daemon/backend/metadata/db.hpp index 6175320db..80e06f740 100644 --- a/include/daemon/backend/metadata/db.hpp +++ b/include/daemon/backend/metadata/db.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/backend/metadata/merge.hpp b/include/daemon/backend/metadata/merge.hpp index 4189e6804..ec1f7b8ec 100644 --- a/include/daemon/backend/metadata/merge.hpp +++ b/include/daemon/backend/metadata/merge.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/backend/metadata/metadata_module.hpp b/include/daemon/backend/metadata/metadata_module.hpp index 1ed0abe7b..4c0376c72 100644 --- a/include/daemon/backend/metadata/metadata_module.hpp +++ b/include/daemon/backend/metadata/metadata_module.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/classes/fs_data.hpp b/include/daemon/classes/fs_data.hpp index 2b0b7b9fe..e38fea795 100644 --- a/include/daemon/classes/fs_data.hpp +++ b/include/daemon/classes/fs_data.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/classes/rpc_data.hpp b/include/daemon/classes/rpc_data.hpp index 35f0458d1..f1e6de9aa 100644 --- a/include/daemon/classes/rpc_data.hpp +++ b/include/daemon/classes/rpc_data.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/daemon.hpp b/include/daemon/daemon.hpp index 994df7daa..8bd559f27 100644 --- a/include/daemon/daemon.hpp +++ b/include/daemon/daemon.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/env.hpp b/include/daemon/env.hpp index d35fd0886..9ba70a03d 100644 --- a/include/daemon/env.hpp +++ b/include/daemon/env.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/handler/rpc_defs.hpp b/include/daemon/handler/rpc_defs.hpp index b1b5262eb..d2a767fc4 100644 --- a/include/daemon/handler/rpc_defs.hpp +++ b/include/daemon/handler/rpc_defs.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/handler/rpc_util.hpp b/include/daemon/handler/rpc_util.hpp index 5bc62a1e9..afbceb65f 100644 --- a/include/daemon/handler/rpc_util.hpp +++ b/include/daemon/handler/rpc_util.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/ops/data.hpp b/include/daemon/ops/data.hpp index 75dbd7b20..03824894e 100644 --- a/include/daemon/ops/data.hpp +++ b/include/daemon/ops/data.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/ops/metadentry.hpp b/include/daemon/ops/metadentry.hpp index 4665be86a..2aec3cadf 100644 --- a/include/daemon/ops/metadentry.hpp +++ b/include/daemon/ops/metadentry.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/scheduler/agios.hpp b/include/daemon/scheduler/agios.hpp index 6a1248d14..75cc5cf1b 100644 --- a/include/daemon/scheduler/agios.hpp +++ b/include/daemon/scheduler/agios.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/include/daemon/util.hpp b/include/daemon/util.hpp index a0f2d7f63..4d0df4564 100644 --- a/include/daemon/util.hpp +++ b/include/daemon/util.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/scripts/benchmark_check.sh b/scripts/benchmark_check.sh index 9f254784a..702050c75 100755 --- a/scripts/benchmark_check.sh +++ b/scripts/benchmark_check.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/check_format.sh b/scripts/check_format.sh index f4556a3e0..d1fc05d9a 100755 --- a/scripts/check_format.sh +++ b/scripts/check_format.sh @@ -1,7 +1,7 @@ #!/bin/bash ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/ci/coverage.sh b/scripts/ci/coverage.sh index 28979d5a2..ce7ef5ae8 100755 --- a/scripts/ci/coverage.sh +++ b/scripts/ci/coverage.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/ci/trim_build_artifacts.sh b/scripts/ci/trim_build_artifacts.sh index eb2fa2394..e6284778b 100755 --- a/scripts/ci/trim_build_artifacts.sh +++ b/scripts/ci/trim_build_artifacts.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/compile_dep.sh b/scripts/compile_dep.sh index 2241952e3..d430d2d75 100755 --- a/scripts/compile_dep.sh +++ b/scripts/compile_dep.sh @@ -1,7 +1,7 @@ #!/bin/bash ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/dl_dep.sh b/scripts/dl_dep.sh index 5791dde64..348ebce63 100755 --- a/scripts/dl_dep.sh +++ b/scripts/dl_dep.sh @@ -1,7 +1,7 @@ #!/bin/bash ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/gkfs_dep.sh b/scripts/gkfs_dep.sh index 34d58b138..0ecb639fc 100755 --- a/scripts/gkfs_dep.sh +++ b/scripts/gkfs_dep.sh @@ -1,7 +1,7 @@ #!/bin/bash ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/maintainer-tools/copyright-headers/Dockerfile b/scripts/maintainer-tools/copyright-headers/Dockerfile index 2c3ab439a..71514d169 100644 --- a/scripts/maintainer-tools/copyright-headers/Dockerfile +++ b/scripts/maintainer-tools/copyright-headers/Dockerfile @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/maintainer-tools/copyright-headers/README.md b/scripts/maintainer-tools/copyright-headers/README.md index 56f1080e0..6a1200184 100644 --- a/scripts/maintainer-tools/copyright-headers/README.md +++ b/scripts/maintainer-tools/copyright-headers/README.md @@ -39,8 +39,8 @@ updated fields should show in a diff view: +++ b/examples/gfind/gfind.cpp @@ -1,6 +1,6 @@ /* - - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + - Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + - Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2020, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2020, Johannes Gutenberg Universitaet Mainz, Germany diff --git a/scripts/maintainer-tools/copyright-headers/gekkofs-syntax.yml b/scripts/maintainer-tools/copyright-headers/gekkofs-syntax.yml index daf7f63d6..a66a01ed4 100644 --- a/scripts/maintainer-tools/copyright-headers/gekkofs-syntax.yml +++ b/scripts/maintainer-tools/copyright-headers/gekkofs-syntax.yml @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/maintainer-tools/copyright-headers/manage-headers.sh b/scripts/maintainer-tools/copyright-headers/manage-headers.sh index be957b1cf..68f9d4abc 100755 --- a/scripts/maintainer-tools/copyright-headers/manage-headers.sh +++ b/scripts/maintainer-tools/copyright-headers/manage-headers.sh @@ -1,7 +1,7 @@ #!/bin/bash ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/all.specs b/scripts/profiles/0.8.0/all.specs index c6e1a1819..cc6e3f5a9 100644 --- a/scripts/profiles/0.8.0/all.specs +++ b/scripts/profiles/0.8.0/all.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/ci.specs b/scripts/profiles/0.8.0/ci.specs index 514bd5421..641e05578 100644 --- a/scripts/profiles/0.8.0/ci.specs +++ b/scripts/profiles/0.8.0/ci.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/default.specs b/scripts/profiles/0.8.0/default.specs index d3506b0d2..98a6cdb0b 100644 --- a/scripts/profiles/0.8.0/default.specs +++ b/scripts/profiles/0.8.0/default.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/direct.specs b/scripts/profiles/0.8.0/direct.specs index 7c0b73189..3f9afbc8c 100644 --- a/scripts/profiles/0.8.0/direct.specs +++ b/scripts/profiles/0.8.0/direct.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/agios.install b/scripts/profiles/0.8.0/install/agios.install index f19d03f09..3d0392ff5 100644 --- a/scripts/profiles/0.8.0/install/agios.install +++ b/scripts/profiles/0.8.0/install/agios.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/argobots.install b/scripts/profiles/0.8.0/install/argobots.install index 6c0aff146..96ccea920 100644 --- a/scripts/profiles/0.8.0/install/argobots.install +++ b/scripts/profiles/0.8.0/install/argobots.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/bmi.install b/scripts/profiles/0.8.0/install/bmi.install index a0cd0b675..309aa7938 100644 --- a/scripts/profiles/0.8.0/install/bmi.install +++ b/scripts/profiles/0.8.0/install/bmi.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/bzip2.install b/scripts/profiles/0.8.0/install/bzip2.install index a1f45ab39..34b99002e 100644 --- a/scripts/profiles/0.8.0/install/bzip2.install +++ b/scripts/profiles/0.8.0/install/bzip2.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/capstone.install b/scripts/profiles/0.8.0/install/capstone.install index 60bbd5faf..ff299d82b 100644 --- a/scripts/profiles/0.8.0/install/capstone.install +++ b/scripts/profiles/0.8.0/install/capstone.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/date.install b/scripts/profiles/0.8.0/install/date.install index 4adf6bc11..57471078e 100644 --- a/scripts/profiles/0.8.0/install/date.install +++ b/scripts/profiles/0.8.0/install/date.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/libfabric%experimental.install b/scripts/profiles/0.8.0/install/libfabric%experimental.install index 98cbe5b0c..e974acf32 100644 --- a/scripts/profiles/0.8.0/install/libfabric%experimental.install +++ b/scripts/profiles/0.8.0/install/libfabric%experimental.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/libfabric%verbs.install b/scripts/profiles/0.8.0/install/libfabric%verbs.install index 46fe27433..1b6a0320f 100644 --- a/scripts/profiles/0.8.0/install/libfabric%verbs.install +++ b/scripts/profiles/0.8.0/install/libfabric%verbs.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/libfabric.install b/scripts/profiles/0.8.0/install/libfabric.install index deb0f5111..5d034faba 100644 --- a/scripts/profiles/0.8.0/install/libfabric.install +++ b/scripts/profiles/0.8.0/install/libfabric.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/lz4.install b/scripts/profiles/0.8.0/install/lz4.install index 2e807ab88..a7ffbbe07 100644 --- a/scripts/profiles/0.8.0/install/lz4.install +++ b/scripts/profiles/0.8.0/install/lz4.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/margo.install b/scripts/profiles/0.8.0/install/margo.install index 8ddfadd98..a32e3699d 100644 --- a/scripts/profiles/0.8.0/install/margo.install +++ b/scripts/profiles/0.8.0/install/margo.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/mercury.install b/scripts/profiles/0.8.0/install/mercury.install index 50394d861..02e75d05f 100644 --- a/scripts/profiles/0.8.0/install/mercury.install +++ b/scripts/profiles/0.8.0/install/mercury.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/rocksdb%experimental.install b/scripts/profiles/0.8.0/install/rocksdb%experimental.install index 3acd77819..c7813f103 100644 --- a/scripts/profiles/0.8.0/install/rocksdb%experimental.install +++ b/scripts/profiles/0.8.0/install/rocksdb%experimental.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/rocksdb.install b/scripts/profiles/0.8.0/install/rocksdb.install index 9959bf1f1..b417e49d3 100644 --- a/scripts/profiles/0.8.0/install/rocksdb.install +++ b/scripts/profiles/0.8.0/install/rocksdb.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/snappy.install b/scripts/profiles/0.8.0/install/snappy.install index 5d9b1ce92..11af46469 100644 --- a/scripts/profiles/0.8.0/install/snappy.install +++ b/scripts/profiles/0.8.0/install/snappy.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/syscall_intercept.install b/scripts/profiles/0.8.0/install/syscall_intercept.install index aa469255a..a8a785cb2 100644 --- a/scripts/profiles/0.8.0/install/syscall_intercept.install +++ b/scripts/profiles/0.8.0/install/syscall_intercept.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/install/zstd.install b/scripts/profiles/0.8.0/install/zstd.install index def1d467d..026318934 100644 --- a/scripts/profiles/0.8.0/install/zstd.install +++ b/scripts/profiles/0.8.0/install/zstd.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/mogon2.specs b/scripts/profiles/0.8.0/mogon2.specs index ad8d8d97d..c57b5933a 100644 --- a/scripts/profiles/0.8.0/mogon2.specs +++ b/scripts/profiles/0.8.0/mogon2.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.8.0/ngio.specs b/scripts/profiles/0.8.0/ngio.specs index 1742e8c54..6eb95ca98 100644 --- a/scripts/profiles/0.8.0/ngio.specs +++ b/scripts/profiles/0.8.0/ngio.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/agios.specs b/scripts/profiles/0.9.0/agios.specs index e967029cd..066cf7cb1 100644 --- a/scripts/profiles/0.9.0/agios.specs +++ b/scripts/profiles/0.9.0/agios.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/ci.specs b/scripts/profiles/0.9.0/ci.specs index 509171035..261f1e21f 100644 --- a/scripts/profiles/0.9.0/ci.specs +++ b/scripts/profiles/0.9.0/ci.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/default.specs b/scripts/profiles/0.9.0/default.specs index c65bf556e..4c893a36a 100644 --- a/scripts/profiles/0.9.0/default.specs +++ b/scripts/profiles/0.9.0/default.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/direct.specs b/scripts/profiles/0.9.0/direct.specs index 6f2a48123..c65f528f7 100644 --- a/scripts/profiles/0.9.0/direct.specs +++ b/scripts/profiles/0.9.0/direct.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/infiniband_verbs.specs b/scripts/profiles/0.9.0/infiniband_verbs.specs index c34c4ff6d..e7215869f 100644 --- a/scripts/profiles/0.9.0/infiniband_verbs.specs +++ b/scripts/profiles/0.9.0/infiniband_verbs.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/install/agios.install b/scripts/profiles/0.9.0/install/agios.install index f19d03f09..3d0392ff5 100644 --- a/scripts/profiles/0.9.0/install/agios.install +++ b/scripts/profiles/0.9.0/install/agios.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/install/argobots.install b/scripts/profiles/0.9.0/install/argobots.install index 6c0aff146..96ccea920 100644 --- a/scripts/profiles/0.9.0/install/argobots.install +++ b/scripts/profiles/0.9.0/install/argobots.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/install/capstone.install b/scripts/profiles/0.9.0/install/capstone.install index 60bbd5faf..ff299d82b 100644 --- a/scripts/profiles/0.9.0/install/capstone.install +++ b/scripts/profiles/0.9.0/install/capstone.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/install/date.install b/scripts/profiles/0.9.0/install/date.install index 901cc5926..c4f12524c 100644 --- a/scripts/profiles/0.9.0/install/date.install +++ b/scripts/profiles/0.9.0/install/date.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/install/json-c.install b/scripts/profiles/0.9.0/install/json-c.install index ccb5aad49..7280cda81 100644 --- a/scripts/profiles/0.9.0/install/json-c.install +++ b/scripts/profiles/0.9.0/install/json-c.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/install/libfabric%verbs.install b/scripts/profiles/0.9.0/install/libfabric%verbs.install index a5beb74f4..15257eb81 100644 --- a/scripts/profiles/0.9.0/install/libfabric%verbs.install +++ b/scripts/profiles/0.9.0/install/libfabric%verbs.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/install/libfabric.install b/scripts/profiles/0.9.0/install/libfabric.install index 8b26c9a53..7db89438e 100644 --- a/scripts/profiles/0.9.0/install/libfabric.install +++ b/scripts/profiles/0.9.0/install/libfabric.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/install/lz4.install b/scripts/profiles/0.9.0/install/lz4.install index c61d0ac03..13e4e53b3 100644 --- a/scripts/profiles/0.9.0/install/lz4.install +++ b/scripts/profiles/0.9.0/install/lz4.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/install/margo.install b/scripts/profiles/0.9.0/install/margo.install index 1f1c49de1..d2c6e4b5f 100644 --- a/scripts/profiles/0.9.0/install/margo.install +++ b/scripts/profiles/0.9.0/install/margo.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/install/mercury.install b/scripts/profiles/0.9.0/install/mercury.install index 9aed03f0d..601305b83 100644 --- a/scripts/profiles/0.9.0/install/mercury.install +++ b/scripts/profiles/0.9.0/install/mercury.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/install/rocksdb.install b/scripts/profiles/0.9.0/install/rocksdb.install index ab87e7bb8..9350e9feb 100644 --- a/scripts/profiles/0.9.0/install/rocksdb.install +++ b/scripts/profiles/0.9.0/install/rocksdb.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/install/syscall_intercept.install b/scripts/profiles/0.9.0/install/syscall_intercept.install index 5835bee81..9dd287271 100644 --- a/scripts/profiles/0.9.0/install/syscall_intercept.install +++ b/scripts/profiles/0.9.0/install/syscall_intercept.install @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/marenostrum4.specs b/scripts/profiles/0.9.0/marenostrum4.specs index 785150c8a..2f64676f6 100644 --- a/scripts/profiles/0.9.0/marenostrum4.specs +++ b/scripts/profiles/0.9.0/marenostrum4.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/mogon2.specs b/scripts/profiles/0.9.0/mogon2.specs index 7a076831d..ee6c1d0a2 100644 --- a/scripts/profiles/0.9.0/mogon2.specs +++ b/scripts/profiles/0.9.0/mogon2.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/ngio.specs b/scripts/profiles/0.9.0/ngio.specs index b109bbd7f..ae633e44d 100644 --- a/scripts/profiles/0.9.0/ngio.specs +++ b/scripts/profiles/0.9.0/ngio.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/0.9.0/omnipath_psm2.specs b/scripts/profiles/0.9.0/omnipath_psm2.specs index 10163c302..779c3dadd 100644 --- a/scripts/profiles/0.9.0/omnipath_psm2.specs +++ b/scripts/profiles/0.9.0/omnipath_psm2.specs @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/scripts/profiles/sources.list b/scripts/profiles/sources.list index 970259b39..0c8788837 100644 --- a/scripts/profiles/sources.list +++ b/scripts/profiles/sources.list @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/src/client/CMakeLists.txt b/src/client/CMakeLists.txt index a4820eca0..681c264f1 100644 --- a/src/client/CMakeLists.txt +++ b/src/client/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/src/client/gkfs_functions.cpp b/src/client/gkfs_functions.cpp index 36054c23a..e505e270a 100644 --- a/src/client/gkfs_functions.cpp +++ b/src/client/gkfs_functions.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/hooks.cpp b/src/client/hooks.cpp index 7fdabf78f..d58302373 100644 --- a/src/client/hooks.cpp +++ b/src/client/hooks.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/intercept.cpp b/src/client/intercept.cpp index ded844d19..a403ddd05 100644 --- a/src/client/intercept.cpp +++ b/src/client/intercept.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/logging.cpp b/src/client/logging.cpp index b5d6f0b89..2f060053c 100644 --- a/src/client/logging.cpp +++ b/src/client/logging.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/open_dir.cpp b/src/client/open_dir.cpp index 20d7344a1..9aae602b6 100644 --- a/src/client/open_dir.cpp +++ b/src/client/open_dir.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/open_file_map.cpp b/src/client/open_file_map.cpp index 34242ec2b..84ee45f6f 100644 --- a/src/client/open_file_map.cpp +++ b/src/client/open_file_map.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/path.cpp b/src/client/path.cpp index d0d437ee3..5eb2f0a31 100644 --- a/src/client/path.cpp +++ b/src/client/path.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/preload.cpp b/src/client/preload.cpp index 47a354551..ba3a87870 100644 --- a/src/client/preload.cpp +++ b/src/client/preload.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/preload_context.cpp b/src/client/preload_context.cpp index c3d221c1b..9a1f9f27d 100644 --- a/src/client/preload_context.cpp +++ b/src/client/preload_context.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/preload_util.cpp b/src/client/preload_util.cpp index 595dcae68..ed4a1a38e 100644 --- a/src/client/preload_util.cpp +++ b/src/client/preload_util.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/rpc/forward_data.cpp b/src/client/rpc/forward_data.cpp index 45e4f368e..b6dcd85e9 100644 --- a/src/client/rpc/forward_data.cpp +++ b/src/client/rpc/forward_data.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/rpc/forward_management.cpp b/src/client/rpc/forward_management.cpp index ee7530891..4ebbef9b3 100644 --- a/src/client/rpc/forward_management.cpp +++ b/src/client/rpc/forward_management.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/rpc/forward_metadata.cpp b/src/client/rpc/forward_metadata.cpp index f23a6cd9f..b18115d32 100644 --- a/src/client/rpc/forward_metadata.cpp +++ b/src/client/rpc/forward_metadata.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/rpc/rpc_types.cpp b/src/client/rpc/rpc_types.cpp index c6819cd31..568a2f589 100644 --- a/src/client/rpc/rpc_types.cpp +++ b/src/client/rpc/rpc_types.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/client/syscalls/detail/syscall_info.c b/src/client/syscalls/detail/syscall_info.c index 6154900fd..29ff2c3d6 100644 --- a/src/client/syscalls/detail/syscall_info.c +++ b/src/client/syscalls/detail/syscall_info.c @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 5dffa1dc2..74b80e58c 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/src/common/arithmetic/CMakeLists.txt b/src/common/arithmetic/CMakeLists.txt index 5e9cdc8f5..dd39211ca 100644 --- a/src/common/arithmetic/CMakeLists.txt +++ b/src/common/arithmetic/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/src/common/env_util.cpp b/src/common/env_util.cpp index c5e726877..b4b911238 100644 --- a/src/common/env_util.cpp +++ b/src/common/env_util.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/common/log_util.cpp b/src/common/log_util.cpp index 9280e1ac8..52dfb41e5 100644 --- a/src/common/log_util.cpp +++ b/src/common/log_util.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/common/metadata.cpp b/src/common/metadata.cpp index c3948847e..d75f6681b 100644 --- a/src/common/metadata.cpp +++ b/src/common/metadata.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/common/path_util.cpp b/src/common/path_util.cpp index 7b6782129..6ff0bf112 100644 --- a/src/common/path_util.cpp +++ b/src/common/path_util.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/common/rpc/rpc_util.cpp b/src/common/rpc/rpc_util.cpp index 5f045ed82..604749b6d 100644 --- a/src/common/rpc/rpc_util.cpp +++ b/src/common/rpc/rpc_util.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/CMakeLists.txt b/src/daemon/CMakeLists.txt index 3ca8ddbe9..e3703d73b 100644 --- a/src/daemon/CMakeLists.txt +++ b/src/daemon/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/src/daemon/backend/CMakeLists.txt b/src/daemon/backend/CMakeLists.txt index 195f60928..847a73d4d 100644 --- a/src/daemon/backend/CMakeLists.txt +++ b/src/daemon/backend/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/src/daemon/backend/data/CMakeLists.txt b/src/daemon/backend/data/CMakeLists.txt index e7d25c5af..32d5b7818 100644 --- a/src/daemon/backend/data/CMakeLists.txt +++ b/src/daemon/backend/data/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/src/daemon/backend/data/chunk_storage.cpp b/src/daemon/backend/data/chunk_storage.cpp index c06c76856..5bb3944c9 100644 --- a/src/daemon/backend/data/chunk_storage.cpp +++ b/src/daemon/backend/data/chunk_storage.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/backend/data/data_module.cpp b/src/daemon/backend/data/data_module.cpp index 414d57598..2afb7b49a 100644 --- a/src/daemon/backend/data/data_module.cpp +++ b/src/daemon/backend/data/data_module.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/backend/metadata/CMakeLists.txt b/src/daemon/backend/metadata/CMakeLists.txt index b0662e3a5..fc4961fc8 100644 --- a/src/daemon/backend/metadata/CMakeLists.txt +++ b/src/daemon/backend/metadata/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/src/daemon/backend/metadata/db.cpp b/src/daemon/backend/metadata/db.cpp index 5d140f856..440c97ad7 100644 --- a/src/daemon/backend/metadata/db.cpp +++ b/src/daemon/backend/metadata/db.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/backend/metadata/merge.cpp b/src/daemon/backend/metadata/merge.cpp index 68d29aa18..16cf44434 100644 --- a/src/daemon/backend/metadata/merge.cpp +++ b/src/daemon/backend/metadata/merge.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/backend/metadata/metadata_module.cpp b/src/daemon/backend/metadata/metadata_module.cpp index 28344898c..ad7d51567 100644 --- a/src/daemon/backend/metadata/metadata_module.cpp +++ b/src/daemon/backend/metadata/metadata_module.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/classes/fs_data.cpp b/src/daemon/classes/fs_data.cpp index ca5ae88aa..98ac82a53 100644 --- a/src/daemon/classes/fs_data.cpp +++ b/src/daemon/classes/fs_data.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/classes/rpc_data.cpp b/src/daemon/classes/rpc_data.cpp index ae970ee11..59b9eda23 100644 --- a/src/daemon/classes/rpc_data.cpp +++ b/src/daemon/classes/rpc_data.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/daemon.cpp b/src/daemon/daemon.cpp index d58c3106b..5144f4bcc 100644 --- a/src/daemon/daemon.cpp +++ b/src/daemon/daemon.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/handler/srv_data.cpp b/src/daemon/handler/srv_data.cpp index 058f7be46..d7b9a6ace 100644 --- a/src/daemon/handler/srv_data.cpp +++ b/src/daemon/handler/srv_data.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/handler/srv_management.cpp b/src/daemon/handler/srv_management.cpp index cb0b13217..17c1923d9 100644 --- a/src/daemon/handler/srv_management.cpp +++ b/src/daemon/handler/srv_management.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/handler/srv_metadata.cpp b/src/daemon/handler/srv_metadata.cpp index 9b13a10c4..3cea7e3ea 100644 --- a/src/daemon/handler/srv_metadata.cpp +++ b/src/daemon/handler/srv_metadata.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/ops/data.cpp b/src/daemon/ops/data.cpp index 0f580d89a..5cab377d8 100644 --- a/src/daemon/ops/data.cpp +++ b/src/daemon/ops/data.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/ops/metadentry.cpp b/src/daemon/ops/metadentry.cpp index d51b2dc6d..e73ca0aae 100644 --- a/src/daemon/ops/metadentry.cpp +++ b/src/daemon/ops/metadentry.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/scheduler/agios.cpp b/src/daemon/scheduler/agios.cpp index af40e68e3..e428d0b08 100644 --- a/src/daemon/scheduler/agios.cpp +++ b/src/daemon/scheduler/agios.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/src/daemon/util.cpp b/src/daemon/util.cpp index c4042882d..c78d8507b 100644 --- a/src/daemon/util.cpp +++ b/src/daemon/util.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 96ac15562..acbe363af 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/test/IO_test.cpp b/test/IO_test.cpp index 492c5dcc0..2db8edc55 100644 --- a/test/IO_test.cpp +++ b/test/IO_test.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/test/dir_test.cpp b/test/dir_test.cpp index 9437c34fc..950291e22 100644 --- a/test/dir_test.cpp +++ b/test/dir_test.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/test/lseek.cpp b/test/lseek.cpp index 857c82dfb..f737b6355 100644 --- a/test/lseek.cpp +++ b/test/lseek.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/test/main.cpp b/test/main.cpp index 33e7d2f6b..ea84c6f24 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/test/main_IO_testing.cpp b/test/main_IO_testing.cpp index aaef45895..d50081cea 100644 --- a/test/main_IO_testing.cpp +++ b/test/main_IO_testing.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/test/main_MPI.cpp b/test/main_MPI.cpp index 1573be3dc..ccbab2402 100644 --- a/test/main_MPI.cpp +++ b/test/main_MPI.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/test/main_temp.cpp b/test/main_temp.cpp index d57ca7a6e..247e0a40f 100644 --- a/test/main_temp.cpp +++ b/test/main_temp.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/test/symlink_test.cpp b/test/symlink_test.cpp index e9b4c40ac..7db66ab5d 100644 --- a/test/symlink_test.cpp +++ b/test/symlink_test.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/test/truncate.cpp b/test/truncate.cpp index 38c736c54..4b3ed39b2 100644 --- a/test/truncate.cpp +++ b/test/truncate.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/test/wr_test.cpp b/test/wr_test.cpp index 873d7862e..3615cd4a0 100644 --- a/test/wr_test.cpp +++ b/test/wr_test.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index fd3ca201e..1333a019d 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/CMakeLists.txt b/tests/integration/CMakeLists.txt index 1caaa8712..37033091a 100644 --- a/tests/integration/CMakeLists.txt +++ b/tests/integration/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 68288cbb7..a3c4e5900 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/data/test_truncate.py b/tests/integration/data/test_truncate.py index b511d4139..58887a799 100644 --- a/tests/integration/data/test_truncate.py +++ b/tests/integration/data/test_truncate.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/directories/test_pathresolution.py b/tests/integration/directories/test_pathresolution.py index ed94297ba..9cd4cf8b8 100644 --- a/tests/integration/directories/test_pathresolution.py +++ b/tests/integration/directories/test_pathresolution.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/directories/test_symlink.py b/tests/integration/directories/test_symlink.py index 08fe937d8..9c3d0fa16 100644 --- a/tests/integration/directories/test_symlink.py +++ b/tests/integration/directories/test_symlink.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/forwarding/test_map.py b/tests/integration/forwarding/test_map.py index dd9b530f3..4123694b2 100644 --- a/tests/integration/forwarding/test_map.py +++ b/tests/integration/forwarding/test_map.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/harness/CMakeLists.txt b/tests/integration/harness/CMakeLists.txt index a2aea938e..20af1a029 100644 --- a/tests/integration/harness/CMakeLists.txt +++ b/tests/integration/harness/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/harness/cli.py b/tests/integration/harness/cli.py index 850549cac..1ad3fce73 100644 --- a/tests/integration/harness/cli.py +++ b/tests/integration/harness/cli.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/harness/cmd.py b/tests/integration/harness/cmd.py index 4723b83f7..d15ff4521 100644 --- a/tests/integration/harness/cmd.py +++ b/tests/integration/harness/cmd.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/harness/gkfs.io/binary_buffer.hpp b/tests/integration/harness/gkfs.io/binary_buffer.hpp index 539b35029..2771bd8cf 100644 --- a/tests/integration/harness/gkfs.io/binary_buffer.hpp +++ b/tests/integration/harness/gkfs.io/binary_buffer.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/chdir.cpp b/tests/integration/harness/gkfs.io/chdir.cpp index a75fae613..d0cdcbcd6 100644 --- a/tests/integration/harness/gkfs.io/chdir.cpp +++ b/tests/integration/harness/gkfs.io/chdir.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/command.hpp b/tests/integration/harness/gkfs.io/command.hpp index 475689138..31c2cac81 100644 --- a/tests/integration/harness/gkfs.io/command.hpp +++ b/tests/integration/harness/gkfs.io/command.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/commands.hpp b/tests/integration/harness/gkfs.io/commands.hpp index 1425e7d9f..8cc92eadb 100644 --- a/tests/integration/harness/gkfs.io/commands.hpp +++ b/tests/integration/harness/gkfs.io/commands.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/getcwd_validate.cpp b/tests/integration/harness/gkfs.io/getcwd_validate.cpp index 4e5f6fc0b..62687e33e 100644 --- a/tests/integration/harness/gkfs.io/getcwd_validate.cpp +++ b/tests/integration/harness/gkfs.io/getcwd_validate.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/lseek.cpp b/tests/integration/harness/gkfs.io/lseek.cpp index 047f1aeee..21fdf61bb 100644 --- a/tests/integration/harness/gkfs.io/lseek.cpp +++ b/tests/integration/harness/gkfs.io/lseek.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/main.cpp b/tests/integration/harness/gkfs.io/main.cpp index 2233c0d81..a7ce919b0 100644 --- a/tests/integration/harness/gkfs.io/main.cpp +++ b/tests/integration/harness/gkfs.io/main.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/mkdir.cpp b/tests/integration/harness/gkfs.io/mkdir.cpp index 8f38ddc93..aeb083aba 100644 --- a/tests/integration/harness/gkfs.io/mkdir.cpp +++ b/tests/integration/harness/gkfs.io/mkdir.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/open.cpp b/tests/integration/harness/gkfs.io/open.cpp index 8802043c5..b847e9cb9 100644 --- a/tests/integration/harness/gkfs.io/open.cpp +++ b/tests/integration/harness/gkfs.io/open.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/opendir.cpp b/tests/integration/harness/gkfs.io/opendir.cpp index a0d96350d..0a21ae454 100644 --- a/tests/integration/harness/gkfs.io/opendir.cpp +++ b/tests/integration/harness/gkfs.io/opendir.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/pread.cpp b/tests/integration/harness/gkfs.io/pread.cpp index 42fc5faac..556d35cdd 100644 --- a/tests/integration/harness/gkfs.io/pread.cpp +++ b/tests/integration/harness/gkfs.io/pread.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/preadv.cpp b/tests/integration/harness/gkfs.io/preadv.cpp index 44304e825..331899778 100644 --- a/tests/integration/harness/gkfs.io/preadv.cpp +++ b/tests/integration/harness/gkfs.io/preadv.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/pwrite.cpp b/tests/integration/harness/gkfs.io/pwrite.cpp index c08a92844..92d17c9ae 100644 --- a/tests/integration/harness/gkfs.io/pwrite.cpp +++ b/tests/integration/harness/gkfs.io/pwrite.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/pwritev.cpp b/tests/integration/harness/gkfs.io/pwritev.cpp index 3741aa615..133e2a620 100644 --- a/tests/integration/harness/gkfs.io/pwritev.cpp +++ b/tests/integration/harness/gkfs.io/pwritev.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/read.cpp b/tests/integration/harness/gkfs.io/read.cpp index 1430073d3..a968038af 100644 --- a/tests/integration/harness/gkfs.io/read.cpp +++ b/tests/integration/harness/gkfs.io/read.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/readdir.cpp b/tests/integration/harness/gkfs.io/readdir.cpp index b2caaaf7e..43a9ec9a4 100644 --- a/tests/integration/harness/gkfs.io/readdir.cpp +++ b/tests/integration/harness/gkfs.io/readdir.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/readv.cpp b/tests/integration/harness/gkfs.io/readv.cpp index 73e21c49e..1ea55c98f 100644 --- a/tests/integration/harness/gkfs.io/readv.cpp +++ b/tests/integration/harness/gkfs.io/readv.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/reflection.hpp b/tests/integration/harness/gkfs.io/reflection.hpp index a2f46753d..1348c1520 100644 --- a/tests/integration/harness/gkfs.io/reflection.hpp +++ b/tests/integration/harness/gkfs.io/reflection.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/rmdir.cpp b/tests/integration/harness/gkfs.io/rmdir.cpp index 2b511e152..4cc5f38c0 100644 --- a/tests/integration/harness/gkfs.io/rmdir.cpp +++ b/tests/integration/harness/gkfs.io/rmdir.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/serialize.hpp b/tests/integration/harness/gkfs.io/serialize.hpp index 744a8ef5e..5786c32ee 100644 --- a/tests/integration/harness/gkfs.io/serialize.hpp +++ b/tests/integration/harness/gkfs.io/serialize.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/stat.cpp b/tests/integration/harness/gkfs.io/stat.cpp index 7dbf6eb7b..abb0ff9ee 100644 --- a/tests/integration/harness/gkfs.io/stat.cpp +++ b/tests/integration/harness/gkfs.io/stat.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/statx.cpp b/tests/integration/harness/gkfs.io/statx.cpp index 9c92a9be1..c78247cd3 100644 --- a/tests/integration/harness/gkfs.io/statx.cpp +++ b/tests/integration/harness/gkfs.io/statx.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/symlink.cpp b/tests/integration/harness/gkfs.io/symlink.cpp index 3e27eef60..5b9b746f0 100644 --- a/tests/integration/harness/gkfs.io/symlink.cpp +++ b/tests/integration/harness/gkfs.io/symlink.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/truncate.cpp b/tests/integration/harness/gkfs.io/truncate.cpp index c3babda59..7d07d788a 100644 --- a/tests/integration/harness/gkfs.io/truncate.cpp +++ b/tests/integration/harness/gkfs.io/truncate.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/util/file_compare.cpp b/tests/integration/harness/gkfs.io/util/file_compare.cpp index ec7e1cff3..7f6ebafe7 100644 --- a/tests/integration/harness/gkfs.io/util/file_compare.cpp +++ b/tests/integration/harness/gkfs.io/util/file_compare.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/write.cpp b/tests/integration/harness/gkfs.io/write.cpp index d95ee6fe0..7a3e0e785 100644 --- a/tests/integration/harness/gkfs.io/write.cpp +++ b/tests/integration/harness/gkfs.io/write.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/write_random.cpp b/tests/integration/harness/gkfs.io/write_random.cpp index 409165630..7af91c225 100644 --- a/tests/integration/harness/gkfs.io/write_random.cpp +++ b/tests/integration/harness/gkfs.io/write_random.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/write_validate.cpp b/tests/integration/harness/gkfs.io/write_validate.cpp index dffdbeeec..75ce6c2fe 100644 --- a/tests/integration/harness/gkfs.io/write_validate.cpp +++ b/tests/integration/harness/gkfs.io/write_validate.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/gkfs.io/writev.cpp b/tests/integration/harness/gkfs.io/writev.cpp index e391c0c19..00aece915 100644 --- a/tests/integration/harness/gkfs.io/writev.cpp +++ b/tests/integration/harness/gkfs.io/writev.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/integration/harness/io.py b/tests/integration/harness/io.py index 6522cdad9..05423d857 100644 --- a/tests/integration/harness/io.py +++ b/tests/integration/harness/io.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/harness/logger.py b/tests/integration/harness/logger.py index 2a5cffe10..86851be59 100644 --- a/tests/integration/harness/logger.py +++ b/tests/integration/harness/logger.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/harness/reporter.py b/tests/integration/harness/reporter.py index c3f28f051..146e98bc5 100644 --- a/tests/integration/harness/reporter.py +++ b/tests/integration/harness/reporter.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/harness/workspace.py b/tests/integration/harness/workspace.py index 9b912836c..ef02d71e2 100644 --- a/tests/integration/harness/workspace.py +++ b/tests/integration/harness/workspace.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/operations/test_read_operations.py b/tests/integration/operations/test_read_operations.py index d6122a5a9..6d3f1b42e 100644 --- a/tests/integration/operations/test_read_operations.py +++ b/tests/integration/operations/test_read_operations.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/operations/test_write_operations.py b/tests/integration/operations/test_write_operations.py index 157afe9c5..9094e1fa6 100644 --- a/tests/integration/operations/test_write_operations.py +++ b/tests/integration/operations/test_write_operations.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/position/test_lseek.py b/tests/integration/position/test_lseek.py index db1072ac8..dd96ca9ec 100644 --- a/tests/integration/position/test_lseek.py +++ b/tests/integration/position/test_lseek.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/shell/test_concat.py b/tests/integration/shell/test_concat.py index 5119f3823..1b9077a6b 100644 --- a/tests/integration/shell/test_concat.py +++ b/tests/integration/shell/test_concat.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/shell/test_cp.py b/tests/integration/shell/test_cp.py index c6ae09c08..d513bac55 100644 --- a/tests/integration/shell/test_cp.py +++ b/tests/integration/shell/test_cp.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/shell/test_stat.py b/tests/integration/shell/test_stat.py index f6f036e85..2a778b0bc 100644 --- a/tests/integration/shell/test_stat.py +++ b/tests/integration/shell/test_stat.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/integration/status/test_status.py b/tests/integration/status/test_status.py index b225ec755..df75b855f 100644 --- a/tests/integration/status/test_status.py +++ b/tests/integration/status/test_status.py @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/unit/CMakeLists.txt b/tests/unit/CMakeLists.txt index fd0f11b0b..763178b87 100644 --- a/tests/unit/CMakeLists.txt +++ b/tests/unit/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/unit/catch_main.cpp b/tests/unit/catch_main.cpp index 9e6da056f..1967213be 100644 --- a/tests/unit/catch_main.cpp +++ b/tests/unit/catch_main.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/unit/helpers/CMakeLists.txt b/tests/unit/helpers/CMakeLists.txt index aef19067c..36f77843b 100644 --- a/tests/unit/helpers/CMakeLists.txt +++ b/tests/unit/helpers/CMakeLists.txt @@ -1,6 +1,6 @@ ################################################################################ -# Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain # -# Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany # +# Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain # +# Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany # # # # This software was partially supported by the # # EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). # diff --git a/tests/unit/helpers/helpers.hpp b/tests/unit/helpers/helpers.hpp index dba166cf6..12866ba21 100644 --- a/tests/unit/helpers/helpers.hpp +++ b/tests/unit/helpers/helpers.hpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/unit/helpers/random_string.cpp b/tests/unit/helpers/random_string.cpp index 223a70e9e..1bc62a306 100644 --- a/tests/unit/helpers/random_string.cpp +++ b/tests/unit/helpers/random_string.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/unit/helpers/temporary_directory.cpp b/tests/unit/helpers/temporary_directory.cpp index 95f39a933..7fa421567 100644 --- a/tests/unit/helpers/temporary_directory.cpp +++ b/tests/unit/helpers/temporary_directory.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/unit/helpers/temporary_file.cpp b/tests/unit/helpers/temporary_file.cpp index 9c8836633..22ea5ae2e 100644 --- a/tests/unit/helpers/temporary_file.cpp +++ b/tests/unit/helpers/temporary_file.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/unit/test_example_00.cpp b/tests/unit/test_example_00.cpp index 307327284..1b615220b 100644 --- a/tests/unit/test_example_00.cpp +++ b/tests/unit/test_example_00.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/unit/test_example_01.cpp b/tests/unit/test_example_01.cpp index 3dcab00e5..bef585f44 100644 --- a/tests/unit/test_example_01.cpp +++ b/tests/unit/test_example_01.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/unit/test_helpers.cpp b/tests/unit/test_helpers.cpp index c606931d0..463141122 100644 --- a/tests/unit/test_helpers.cpp +++ b/tests/unit/test_helpers.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). diff --git a/tests/unit/test_utils_arithmetic.cpp b/tests/unit/test_utils_arithmetic.cpp index f9f28c803..4a517ed51 100644 --- a/tests/unit/test_utils_arithmetic.cpp +++ b/tests/unit/test_utils_arithmetic.cpp @@ -1,6 +1,6 @@ /* - Copyright 2018-2021, Barcelona Supercomputing Center (BSC), Spain - Copyright 2015-2021, Johannes Gutenberg Universitaet Mainz, Germany + Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain + Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany This software was partially supported by the EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu). -- GitLab