aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/internal/util
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2023-10-10 13:05:26 +0200
committerGitHub <noreply@github.com>2023-10-10 13:05:26 +0200
commitf606c6d91246e2f029da40c66a1f7ad827c7c14a (patch)
tree4c43607eb3d0fd9cbcf0092f27b1ec9b68f5a527 /client/go/internal/util
parent98cc1dc0aa08f744ec663cda0237009d8f1ee46b (diff)
parenta32b1fe6f6f94d3857fd6b7974a87a3118f573d3 (diff)
Merge pull request #28836 from vespa-engine/bratseth/copyright-2
Update copyright
Diffstat (limited to 'client/go/internal/util')
-rw-r--r--client/go/internal/util/array_list.go2
-rw-r--r--client/go/internal/util/array_list_test.go2
-rw-r--r--client/go/internal/util/execvp.go2
-rw-r--r--client/go/internal/util/execvp_windows.go2
-rw-r--r--client/go/internal/util/fix_fs.go2
-rw-r--r--client/go/internal/util/fix_fs_test.go2
-rw-r--r--client/go/internal/util/http.go2
-rw-r--r--client/go/internal/util/io.go2
-rw-r--r--client/go/internal/util/io_test.go2
-rw-r--r--client/go/internal/util/just_exit.go2
-rw-r--r--client/go/internal/util/md5.go2
-rw-r--r--client/go/internal/util/md5_test.go2
-rw-r--r--client/go/internal/util/operation_result.go2
-rw-r--r--client/go/internal/util/run_cmd.go2
-rw-r--r--client/go/internal/util/setrlimit.go2
-rw-r--r--client/go/internal/util/setrlimit_windows.go2
-rw-r--r--client/go/internal/util/spinner.go2
-rw-r--r--client/go/internal/util/tune_logctl.go2
-rw-r--r--client/go/internal/util/tuning.go2
19 files changed, 19 insertions, 19 deletions
diff --git a/client/go/internal/util/array_list.go b/client/go/internal/util/array_list.go
index 2e74d30fcec..0e768b5617f 100644
--- a/client/go/internal/util/array_list.go
+++ b/client/go/internal/util/array_list.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej
// generic utilities
diff --git a/client/go/internal/util/array_list_test.go b/client/go/internal/util/array_list_test.go
index 79eab4f8ef2..d8a3fa88b5c 100644
--- a/client/go/internal/util/array_list_test.go
+++ b/client/go/internal/util/array_list_test.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package util
import (
diff --git a/client/go/internal/util/execvp.go b/client/go/internal/util/execvp.go
index 60f81380573..38514696365 100644
--- a/client/go/internal/util/execvp.go
+++ b/client/go/internal/util/execvp.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej
//go:build !windows
diff --git a/client/go/internal/util/execvp_windows.go b/client/go/internal/util/execvp_windows.go
index 24b67e221c8..d01eda589ff 100644
--- a/client/go/internal/util/execvp_windows.go
+++ b/client/go/internal/util/execvp_windows.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej
//go:build windows
diff --git a/client/go/internal/util/fix_fs.go b/client/go/internal/util/fix_fs.go
index f7b5f767456..12d49462e07 100644
--- a/client/go/internal/util/fix_fs.go
+++ b/client/go/internal/util/fix_fs.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej
package util
diff --git a/client/go/internal/util/fix_fs_test.go b/client/go/internal/util/fix_fs_test.go
index 0d65f43576b..0ecf2e06535 100644
--- a/client/go/internal/util/fix_fs_test.go
+++ b/client/go/internal/util/fix_fs_test.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package util
import (
diff --git a/client/go/internal/util/http.go b/client/go/internal/util/http.go
index 26e7937028e..a7a9de5b8e4 100644
--- a/client/go/internal/util/http.go
+++ b/client/go/internal/util/http.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package util
import (
diff --git a/client/go/internal/util/io.go b/client/go/internal/util/io.go
index 41f1aeb0aea..9e755737035 100644
--- a/client/go/internal/util/io.go
+++ b/client/go/internal/util/io.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// File utilities.
// Author: bratseth
diff --git a/client/go/internal/util/io_test.go b/client/go/internal/util/io_test.go
index 42ee04f1dc6..0b2ad0f081b 100644
--- a/client/go/internal/util/io_test.go
+++ b/client/go/internal/util/io_test.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package util
import (
diff --git a/client/go/internal/util/just_exit.go b/client/go/internal/util/just_exit.go
index b05430adcde..ad07f451c9c 100644
--- a/client/go/internal/util/just_exit.go
+++ b/client/go/internal/util/just_exit.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej
package util
diff --git a/client/go/internal/util/md5.go b/client/go/internal/util/md5.go
index 84c7d5d5e1d..6a98b49c472 100644
--- a/client/go/internal/util/md5.go
+++ b/client/go/internal/util/md5.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej
package util
diff --git a/client/go/internal/util/md5_test.go b/client/go/internal/util/md5_test.go
index 6c9302e18cf..ac3bc6a9546 100644
--- a/client/go/internal/util/md5_test.go
+++ b/client/go/internal/util/md5_test.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package util
import (
diff --git a/client/go/internal/util/operation_result.go b/client/go/internal/util/operation_result.go
index 5e79f727d4e..7dc60f92e1d 100644
--- a/client/go/internal/util/operation_result.go
+++ b/client/go/internal/util/operation_result.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// A struct containing the result of an operation
// Author: bratseth
diff --git a/client/go/internal/util/run_cmd.go b/client/go/internal/util/run_cmd.go
index 5d146a3e604..cc40f86154c 100644
--- a/client/go/internal/util/run_cmd.go
+++ b/client/go/internal/util/run_cmd.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej
package util
diff --git a/client/go/internal/util/setrlimit.go b/client/go/internal/util/setrlimit.go
index ec8769bfc6c..1a96d260fcb 100644
--- a/client/go/internal/util/setrlimit.go
+++ b/client/go/internal/util/setrlimit.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
//go:build !windows
diff --git a/client/go/internal/util/setrlimit_windows.go b/client/go/internal/util/setrlimit_windows.go
index c40b1cb1364..f2993c7af13 100644
--- a/client/go/internal/util/setrlimit_windows.go
+++ b/client/go/internal/util/setrlimit_windows.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
//go:build windows
diff --git a/client/go/internal/util/spinner.go b/client/go/internal/util/spinner.go
index 39b00352c32..880375f961b 100644
--- a/client/go/internal/util/spinner.go
+++ b/client/go/internal/util/spinner.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package util
diff --git a/client/go/internal/util/tune_logctl.go b/client/go/internal/util/tune_logctl.go
index 1ab87bed52c..b66c14c2d65 100644
--- a/client/go/internal/util/tune_logctl.go
+++ b/client/go/internal/util/tune_logctl.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej
package util
diff --git a/client/go/internal/util/tuning.go b/client/go/internal/util/tuning.go
index 0cfa8810846..b36c0a431da 100644
--- a/client/go/internal/util/tuning.go
+++ b/client/go/internal/util/tuning.go
@@ -1,4 +1,4 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Author: arnej
package util