From d92ff1be080832ffc8f0a4d9f0189cc53ef88ed3 Mon Sep 17 00:00:00 2001 From: maypok86 Date: Fri, 27 Sep 2024 20:39:35 +0300 Subject: [PATCH] chore: update the license --- LICENSE | 2 +- builder.go | 2 +- builder_test.go | 2 +- cache.go | 2 +- cache_test.go | 2 +- cmd/generator/main.go | 2 +- deletion.go | 2 +- entry.go | 2 +- entry_test.go | 2 +- extension.go | 2 +- internal/clock/clock.go | 2 +- internal/clock/clock_bench_test.go | 2 +- internal/clock/clock_test.go | 2 +- internal/deque/linked.go | 2 +- internal/deque/linked_test.go | 4 ++-- internal/deque/queue/growable.go | 2 +- internal/deque/queue/growable_test.go | 2 +- internal/deque/queue/queue_bench_test.go | 2 +- internal/eviction/disabled.go | 14 ++++++++++++++ internal/eviction/s3fifo/ghost.go | 2 +- internal/eviction/s3fifo/main.go | 2 +- internal/eviction/s3fifo/policy.go | 2 +- internal/eviction/s3fifo/policy_test.go | 2 +- internal/eviction/s3fifo/small.go | 2 +- internal/expiry/disabled.go | 2 +- internal/expiry/fixed.go | 2 +- internal/expiry/variable.go | 2 +- internal/expiry/variable_test.go | 2 +- internal/hashmap/map.go | 4 ++-- internal/hashmap/map_test.go | 4 ++-- internal/hashmap/node.go | 2 +- internal/lossy/ring.go | 2 +- internal/lossy/ring_test.go | 2 +- internal/lossy/striped.go | 2 +- internal/lossy/striped_test.go | 2 +- internal/xmath/power.go | 2 +- internal/xruntime/runtime.go | 2 +- internal/xruntime/runtime_1.22.go | 2 +- internal/xruntime/xruntime.go | 2 +- internal/xsync/adder.go | 4 ++-- internal/xsync/adder_bench_test.go | 4 ++-- internal/xsync/adder_test.go | 4 ++-- loader.go | 2 +- logger.go | 2 +- stats.go | 2 +- stats/counter.go | 2 +- stats/counter_test.go | 2 +- stats/stats.go | 2 +- stats/stats_test.go | 2 +- stats_test.go | 2 +- task.go | 2 +- task_test.go | 2 +- 52 files changed, 71 insertions(+), 57 deletions(-) diff --git a/LICENSE b/LICENSE index f49a4e1..f00b634 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2023-present Alexey Mayshev and contributors Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/builder.go b/builder.go index 91fa23b..b34ba9c 100644 --- a/builder.go +++ b/builder.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/builder_test.go b/builder_test.go index 2b7ac9e..506659b 100644 --- a/builder_test.go +++ b/builder_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cache.go b/cache.go index 79ec5f9..126fba6 100644 --- a/cache.go +++ b/cache.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cache_test.go b/cache_test.go index 5483b16..10ba65e 100644 --- a/cache_test.go +++ b/cache_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/generator/main.go b/cmd/generator/main.go index 0cd7a2b..138df2d 100644 --- a/cmd/generator/main.go +++ b/cmd/generator/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/deletion.go b/deletion.go index d4b5ba9..200a651 100644 --- a/deletion.go +++ b/deletion.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/entry.go b/entry.go index d131977..a8aca4d 100644 --- a/entry.go +++ b/entry.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/entry_test.go b/entry_test.go index 86874fa..6582eb3 100644 --- a/entry_test.go +++ b/entry_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/extension.go b/extension.go index fb0c6bd..0f98409 100644 --- a/extension.go +++ b/extension.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/clock/clock.go b/internal/clock/clock.go index 9de3bde..6b66641 100644 --- a/internal/clock/clock.go +++ b/internal/clock/clock.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/clock/clock_bench_test.go b/internal/clock/clock_bench_test.go index 3d67411..54f5ff0 100644 --- a/internal/clock/clock_bench_test.go +++ b/internal/clock/clock_bench_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/clock/clock_test.go b/internal/clock/clock_test.go index 4b0164a..8da96a0 100644 --- a/internal/clock/clock_test.go +++ b/internal/clock/clock_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/deque/linked.go b/internal/deque/linked.go index ac6890f..2b79c8c 100644 --- a/internal/deque/linked.go +++ b/internal/deque/linked.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/deque/linked_test.go b/internal/deque/linked_test.go index 6573592..79a9872 100644 --- a/internal/deque/linked_test.go +++ b/internal/deque/linked_test.go @@ -1,5 +1,5 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. -// Copyright 2009 The Go Authors. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. +// Copyright (c) 2009 The Go Authors. All rights reserved. // // Copyright notice. Initial version of the following tests was based on // the following file from the Go Programming Language core repo: diff --git a/internal/deque/queue/growable.go b/internal/deque/queue/growable.go index 08b2fd0..b9bcd21 100644 --- a/internal/deque/queue/growable.go +++ b/internal/deque/queue/growable.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/deque/queue/growable_test.go b/internal/deque/queue/growable_test.go index 04e1304..d7baea1 100644 --- a/internal/deque/queue/growable_test.go +++ b/internal/deque/queue/growable_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/deque/queue/queue_bench_test.go b/internal/deque/queue/queue_bench_test.go index f794f16..b241928 100644 --- a/internal/deque/queue/queue_bench_test.go +++ b/internal/deque/queue/queue_bench_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/eviction/disabled.go b/internal/eviction/disabled.go index 98b8a20..2618a89 100644 --- a/internal/eviction/disabled.go +++ b/internal/eviction/disabled.go @@ -1,3 +1,17 @@ +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + package eviction import ( diff --git a/internal/eviction/s3fifo/ghost.go b/internal/eviction/s3fifo/ghost.go index 7d10d46..e4b685e 100644 --- a/internal/eviction/s3fifo/ghost.go +++ b/internal/eviction/s3fifo/ghost.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/eviction/s3fifo/main.go b/internal/eviction/s3fifo/main.go index ad2e568..dc5f2c4 100644 --- a/internal/eviction/s3fifo/main.go +++ b/internal/eviction/s3fifo/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/eviction/s3fifo/policy.go b/internal/eviction/s3fifo/policy.go index 388d629..2745520 100644 --- a/internal/eviction/s3fifo/policy.go +++ b/internal/eviction/s3fifo/policy.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/eviction/s3fifo/policy_test.go b/internal/eviction/s3fifo/policy_test.go index 71024f9..e36d933 100644 --- a/internal/eviction/s3fifo/policy_test.go +++ b/internal/eviction/s3fifo/policy_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/eviction/s3fifo/small.go b/internal/eviction/s3fifo/small.go index 322c9db..a4dceb8 100644 --- a/internal/eviction/s3fifo/small.go +++ b/internal/eviction/s3fifo/small.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/expiry/disabled.go b/internal/expiry/disabled.go index 484680f..e1bcbf7 100644 --- a/internal/expiry/disabled.go +++ b/internal/expiry/disabled.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/expiry/fixed.go b/internal/expiry/fixed.go index d4eacd6..96ad66c 100644 --- a/internal/expiry/fixed.go +++ b/internal/expiry/fixed.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/expiry/variable.go b/internal/expiry/variable.go index 58f2852..214fe39 100644 --- a/internal/expiry/variable.go +++ b/internal/expiry/variable.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/expiry/variable_test.go b/internal/expiry/variable_test.go index 4e05e33..b1b4271 100644 --- a/internal/expiry/variable_test.go +++ b/internal/expiry/variable_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/hashmap/map.go b/internal/hashmap/map.go index 4d0371d..8409c4e 100644 --- a/internal/hashmap/map.go +++ b/internal/hashmap/map.go @@ -1,5 +1,5 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. -// Copyright (c) 2021 Andrey Pechkurov +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. +// Copyright (c) 2021 Andrey Pechkurov. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/hashmap/map_test.go b/internal/hashmap/map_test.go index 2036023..e8157b5 100644 --- a/internal/hashmap/map_test.go +++ b/internal/hashmap/map_test.go @@ -1,5 +1,5 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. -// Copyright (c) 2021 Andrey Pechkurov +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. +// Copyright (c) 2021 Andrey Pechkurov. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/hashmap/node.go b/internal/hashmap/node.go index ee91095..1b036b6 100644 --- a/internal/hashmap/node.go +++ b/internal/hashmap/node.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/lossy/ring.go b/internal/lossy/ring.go index 3a8870c..555daf7 100644 --- a/internal/lossy/ring.go +++ b/internal/lossy/ring.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/lossy/ring_test.go b/internal/lossy/ring_test.go index aa25da1..2932b35 100644 --- a/internal/lossy/ring_test.go +++ b/internal/lossy/ring_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/lossy/striped.go b/internal/lossy/striped.go index ff9e8a5..ba98669 100644 --- a/internal/lossy/striped.go +++ b/internal/lossy/striped.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/lossy/striped_test.go b/internal/lossy/striped_test.go index 0c850d3..1eda165 100644 --- a/internal/lossy/striped_test.go +++ b/internal/lossy/striped_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/xmath/power.go b/internal/xmath/power.go index 384d765..ff17fca 100644 --- a/internal/xmath/power.go +++ b/internal/xmath/power.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/xruntime/runtime.go b/internal/xruntime/runtime.go index 4813c8c..d6f5422 100644 --- a/internal/xruntime/runtime.go +++ b/internal/xruntime/runtime.go @@ -1,6 +1,6 @@ //go:build !go1.22 -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/xruntime/runtime_1.22.go b/internal/xruntime/runtime_1.22.go index 4827a34..60992b4 100644 --- a/internal/xruntime/runtime_1.22.go +++ b/internal/xruntime/runtime_1.22.go @@ -1,6 +1,6 @@ //go:build go1.22 -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/xruntime/xruntime.go b/internal/xruntime/xruntime.go index 9c5de93..e3374c7 100644 --- a/internal/xruntime/xruntime.go +++ b/internal/xruntime/xruntime.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/xsync/adder.go b/internal/xsync/adder.go index aa3ada4..d2b9bce 100644 --- a/internal/xsync/adder.go +++ b/internal/xsync/adder.go @@ -1,5 +1,5 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. -// Copyright (c) 2021 Andrey Pechkurov +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. +// Copyright (c) 2021 Andrey Pechkurov. All rights reserved. // // Copyright notice. This code is a fork of xsync.Adder from this file with some changes: // https://github.com/puzpuzpuz/xsync/blob/main/counter.go diff --git a/internal/xsync/adder_bench_test.go b/internal/xsync/adder_bench_test.go index 47feecf..7b77644 100644 --- a/internal/xsync/adder_bench_test.go +++ b/internal/xsync/adder_bench_test.go @@ -1,5 +1,5 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. -// Copyright (c) 2021 Andrey Pechkurov +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. +// Copyright (c) 2021 Andrey Pechkurov. All rights reserved. // // Copyright notice. This code is a fork of benchmarks for xsync.Counter from this file with some changes: // https://github.com/puzpuzpuz/xsync/blob/main/counter_test.go diff --git a/internal/xsync/adder_test.go b/internal/xsync/adder_test.go index d56c6d3..fb1aafc 100644 --- a/internal/xsync/adder_test.go +++ b/internal/xsync/adder_test.go @@ -1,5 +1,5 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. -// Copyright (c) 2021 Andrey Pechkurov +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. +// Copyright (c) 2021 Andrey Pechkurov. All rights reserved. // // Copyright notice. This code is a fork of tests for xsync.Counter from this file with some changes: // https://github.com/puzpuzpuz/xsync/blob/main/counter_test.go diff --git a/loader.go b/loader.go index 46d3582..4fd195c 100644 --- a/loader.go +++ b/loader.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/logger.go b/logger.go index 2271e95..81f6c07 100644 --- a/logger.go +++ b/logger.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats.go b/stats.go index 507af86..72993ed 100644 --- a/stats.go +++ b/stats.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats/counter.go b/stats/counter.go index 605875b..b9a286e 100644 --- a/stats/counter.go +++ b/stats/counter.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats/counter_test.go b/stats/counter_test.go index 015e949..602d7b7 100644 --- a/stats/counter_test.go +++ b/stats/counter_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats/stats.go b/stats/stats.go index 1854fcf..58e5cfb 100644 --- a/stats/stats.go +++ b/stats/stats.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats/stats_test.go b/stats/stats_test.go index 880eee6..ae50263 100644 --- a/stats/stats_test.go +++ b/stats/stats_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/stats_test.go b/stats_test.go index c04b4db..2591059 100644 --- a/stats_test.go +++ b/stats_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Alexey Mayshev. All rights reserved. +// Copyright (c) 2024 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/task.go b/task.go index 4e60c8b..58c9891 100644 --- a/task.go +++ b/task.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/task_test.go b/task_test.go index 6128495..e7de37e 100644 --- a/task_test.go +++ b/task_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2023 Alexey Mayshev. All rights reserved. +// Copyright (c) 2023 Alexey Mayshev and contributors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.