Skip to content

Commit 5d6070d

Browse files
HoverbearBusyJay
authored andcommitted
Update authors header (tikv#404)
Signed-off-by: Ana Hobden <[email protected]>
1 parent da2d1b0 commit 5d6070d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+62
-685
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright {yyyy} {name of copyright owner}
189+
Copyright 2019 TiKV Project Authors.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

benchmark/src/bench.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
#![allow(renamed_and_removed_lints)]
154

benchmark/src/client.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
use std::ffi::CString;
154
use std::sync::atomic::{AtomicBool, Ordering};

benchmark/src/error.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
use std::result;
154

benchmark/src/lib.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
#![allow(unknown_lints)]
154

benchmark/src/main.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
extern crate benchmark;
154
extern crate clap;

benchmark/src/server.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
use std::ffi::CString;
154
use std::sync::atomic::{AtomicBool, Ordering};

benchmark/src/util.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
use std::f64;
154
use std::time::{Duration, Instant};

benchmark/src/worker.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
use std::sync::{Arc, Mutex};
154

compiler/src/bin/grpc_rust_plugin.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
// Copyright (c) 2016, Stepan Koltsov
154
//

compiler/src/codegen.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
// Copyright (c) 2016, Stepan Koltsov
154
//

compiler/src/lib.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
#[cfg(feature = "protobuf-codec")]
154
pub mod codegen;

compiler/src/prost_codegen.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2019 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
use super::util::{fq_grpc, to_snake_case, MethodType};
154
use derive_new::new;

compiler/src/util.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
use std::fmt;
154
use std::str;

grpc-sys/build.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
extern crate cc;
154
extern crate cmake;

grpc-sys/grpc_wrap.cc

+1-12
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,7 @@
3131
*
3232
*/
3333

34-
// Copyright 2017 PingCAP, Inc.
35-
//
36-
// Licensed under the Apache License, Version 2.0 (the "License");
37-
// you may not use this file except in compliance with the License.
38-
// You may obtain a copy of the License at
39-
//
40-
// http://www.apache.org/licenses/LICENSE-2.0
41-
//
42-
// Unless required by applicable law or agreed to in writing, software
43-
// distributed under the License is distributed on an "AS IS" BASIS,
44-
// See the License for the specific language governing permissions and
45-
// limitations under the License.
34+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
4635

4736
// Because rust's union implementation is unstable and possibly buggy
4837
// (rust-lang/rust#32836),

grpc-sys/src/grpc_wrap.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
2+
13
use super::*;
24

35
use std::slice;

grpc-sys/src/lib.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
#![allow(non_camel_case_types)]
154
#![allow(non_snake_case)]

interop/src/bin/client.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
extern crate clap;
154
extern crate grpcio as grpc;

interop/src/bin/server.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
extern crate clap;
154
extern crate futures;

interop/src/client.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
use std::thread;
154
use std::time::Duration;

interop/src/lib.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
#![allow(unknown_lints)]
154

interop/src/server.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
use std::time::Duration;
154

interop/tests/tests.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// Copyright 2017 PingCAP, Inc.
2-
//
3-
// Licensed under the Apache License, Version 2.0 (the "License");
4-
// you may not use this file except in compliance with the License.
5-
// You may obtain a copy of the License at
6-
//
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
9-
// Unless required by applicable law or agreed to in writing, software
10-
// distributed under the License is distributed on an "AS IS" BASIS,
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
1+
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
132

143
extern crate grpcio as grpc;
154
extern crate grpcio_proto as grpc_proto;

0 commit comments

Comments
 (0)