Skip to content

Commit 6790f15

Browse files
committed
Update missing copyrights
1 parent 9885f7d commit 6790f15

21 files changed

+76
-16
lines changed

benchmarks/src/jmh/kotlin/benchmarks/ForkJoinBenchmark.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package benchmarks
26

37
import benchmarks.ForkJoinBenchmark.Companion.BATCH_SIZE

benchmarks/src/jmh/kotlin/benchmarks/LaunchBenchmark.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package benchmarks
26

37
import kotlinx.coroutines.experimental.launch

benchmarks/src/jmh/kotlin/benchmarks/ParametrizedDispatcherBase.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package benchmarks
26

37
import benchmarks.actors.CORES_COUNT

benchmarks/src/jmh/kotlin/benchmarks/StatefulAwaitsBenchmark.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package benchmarks
26

37
import kotlinx.coroutines.experimental.*

benchmarks/src/jmh/kotlin/benchmarks/actors/ConcurrentStatefulActorBenchmark.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package benchmarks.actors
26

37
import benchmarks.ParametrizedDispatcherBase

benchmarks/src/jmh/kotlin/benchmarks/actors/CycledActorsBenchmark.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package benchmarks.actors
26

37
import benchmarks.ParametrizedDispatcherBase

benchmarks/src/jmh/kotlin/benchmarks/actors/PingPongActorBenchmark.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package benchmarks.actors
26

37
import benchmarks.*

benchmarks/src/jmh/kotlin/benchmarks/actors/PingPongAkkaBenchmark.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package benchmarks.actors
26

37
import akka.actor.ActorRef

benchmarks/src/jmh/kotlin/benchmarks/actors/PingPongWithBlockingContext.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package benchmarks.actors
26

37
import kotlinx.coroutines.experimental.*

benchmarks/src/jmh/kotlin/benchmarks/actors/StatefulActorAkkaBenchmark.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package benchmarks.actors
26

37
import akka.actor.ActorRef

benchmarks/src/jmh/kotlin/benchmarks/actors/StatefulActorBenchmark.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package benchmarks.actors
26

37
import benchmarks.ParametrizedDispatcherBase

core/kotlinx-coroutines-core/src/internal/ThreadContext.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package kotlinx.coroutines.experimental.internal
26

37
import kotlinx.coroutines.experimental.*

core/kotlinx-coroutines-core/test/ThreadLocalTest.kt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
14

25
package kotlinx.coroutines.experimental
36

core/kotlinx-coroutines-core/test/WithDefaultContextTest.kt

+1-13
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
/*
2-
* Copyright 2016-2017 JetBrains s.r.o.
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
7-
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
153
*/
164

175
package kotlinx.coroutines.experimental

core/kotlinx-coroutines-core/test/WithTimeoutJvmTest.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
import kotlinx.coroutines.experimental.*
26
import kotlinx.coroutines.experimental.exceptions.*
37
import java.io.*

core/kotlinx-coroutines-core/test/channels/ChannelLinearizabilityTest.kt

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
/*
22
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
*/
4-
/*
5-
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
6-
*/
74

85
package kotlinx.coroutines.experimental.channels
96

core/kotlinx-coroutines-core/test/scheduling/BlockingCoroutineDispatcherRaceStressTest.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package kotlinx.coroutines.experimental.scheduling
26

37
import kotlinx.coroutines.experimental.*

core/kotlinx-coroutines-core/test/scheduling/BlockingCoroutineDispatcherTest.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package kotlinx.coroutines.experimental.scheduling
26

37
import kotlinx.coroutines.experimental.*

core/kotlinx-coroutines-core/test/scheduling/CoroutineSchedulerShrinkTest.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package kotlinx.coroutines.experimental.scheduling
26

37
import kotlinx.coroutines.experimental.*

core/kotlinx-coroutines-core/test/scheduling/LimitingCoroutineDispatcherStressTest.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package kotlinx.coroutines.experimental.scheduling
26

37
import kotlinx.atomicfu.*

core/kotlinx-coroutines-core/test/scheduling/LimitingDispatcherTest.kt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
15
package kotlinx.coroutines.experimental.scheduling
26

37
import kotlinx.coroutines.experimental.*

0 commit comments

Comments
 (0)