Skip to content

Commit

Permalink
Updated the license header for the new files linkedmap.go and linkedm…
Browse files Browse the repository at this point in the history
…ap_test.go

Signed-off-by: Benjamin Wang <[email protected]>
  • Loading branch information
ahrtr committed Jan 2, 2023
1 parent ed3c570 commit 29c64dd
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
15 changes: 13 additions & 2 deletions tools/rw-benchmark/linkedmap.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
// Copyright (c) 2019, Benjamin Wang ([email protected]). All rights reserved.
// Licensed under the MIT license that can be found in the LICENSE file.
// Copyright 2022 The etcd Authors
//
// 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 linkedmap implements a linked hashmap, based on a map and a doubly linked list. The iteration ordering is normally
// the order in which keys were inserted into the map, or the order in which the keys were accessed if the accessOrder flag is set.
Expand Down
15 changes: 13 additions & 2 deletions tools/rw-benchmark/linkedmap_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
// Copyright (c) 2019, Benjamin Wang ([email protected]). All rights reserved.
// Licensed under the MIT license that can be found in the LICENSE file.
// Copyright 2022 The etcd Authors
//
// 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 main

Expand Down

0 comments on commit 29c64dd

Please sign in to comment.