summaryrefslogtreecommitdiffstats
path: root/config-model/src
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2021-10-20 13:55:38 +0200
committerJon Bratseth <bratseth@gmail.com>2021-10-20 13:55:38 +0200
commit9b72725e33c79a036b957460131dbeafbefb35a2 (patch)
tree71e5c5a7397c80113a7005668e143ac421a77a57 /config-model/src
parente5573dc7279c54cefe47cc5eb450ff9018196145 (diff)
Add missiung copyrights
Diffstat (limited to 'config-model/src')
-rw-r--r--config-model/src/main/java/com/yahoo/searchdefinition/DistributableResource.java1
-rw-r--r--config-model/src/main/java/com/yahoo/searchdefinition/LargeRankExpressions.java1
-rw-r--r--config-model/src/main/java/com/yahoo/searchdefinition/RankExpressionBody.java1
-rw-r--r--config-model/src/test/cfg/application/invalid-services-syntax/services.xml1
-rw-r--r--config-model/src/test/derived/lowercase/lowercase.sd3
-rw-r--r--config-model/src/test/derived/tokenization/tokenization.sd3
-rwxr-xr-xconfig-model/src/test/java/com/yahoo/searchdefinition/derived/TokenizationTestCase.java1
7 files changed, 9 insertions, 2 deletions
diff --git a/config-model/src/main/java/com/yahoo/searchdefinition/DistributableResource.java b/config-model/src/main/java/com/yahoo/searchdefinition/DistributableResource.java
index 472bc9d5413..08194c578e7 100644
--- a/config-model/src/main/java/com/yahoo/searchdefinition/DistributableResource.java
+++ b/config-model/src/main/java/com/yahoo/searchdefinition/DistributableResource.java
@@ -1,3 +1,4 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchdefinition;
import com.yahoo.config.FileReference;
diff --git a/config-model/src/main/java/com/yahoo/searchdefinition/LargeRankExpressions.java b/config-model/src/main/java/com/yahoo/searchdefinition/LargeRankExpressions.java
index 76ad7e9a4ed..c33400fdcc1 100644
--- a/config-model/src/main/java/com/yahoo/searchdefinition/LargeRankExpressions.java
+++ b/config-model/src/main/java/com/yahoo/searchdefinition/LargeRankExpressions.java
@@ -1,3 +1,4 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchdefinition;
import com.yahoo.config.application.api.FileRegistry;
diff --git a/config-model/src/main/java/com/yahoo/searchdefinition/RankExpressionBody.java b/config-model/src/main/java/com/yahoo/searchdefinition/RankExpressionBody.java
index 8c6830de815..b3dec554cdc 100644
--- a/config-model/src/main/java/com/yahoo/searchdefinition/RankExpressionBody.java
+++ b/config-model/src/main/java/com/yahoo/searchdefinition/RankExpressionBody.java
@@ -1,3 +1,4 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchdefinition;
import java.nio.ByteBuffer;
diff --git a/config-model/src/test/cfg/application/invalid-services-syntax/services.xml b/config-model/src/test/cfg/application/invalid-services-syntax/services.xml
index 77b6fc0e33a..25c43b3c3bf 100644
--- a/config-model/src/test/cfg/application/invalid-services-syntax/services.xml
+++ b/config-model/src/test/cfg/application/invalid-services-syntax/services.xml
@@ -1,4 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
+<!-- Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
<services>
<config name='standard'>
<basicStruct>
diff --git a/config-model/src/test/derived/lowercase/lowercase.sd b/config-model/src/test/derived/lowercase/lowercase.sd
index de8c7ad729e..80edc837830 100644
--- a/config-model/src/test/derived/lowercase/lowercase.sd
+++ b/config-model/src/test/derived/lowercase/lowercase.sd
@@ -1,3 +1,4 @@
+# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema lowercase {
document lowercase {
@@ -18,4 +19,4 @@ schema lowercase {
indexing: input array_field_source | for_each { lowercase } | summary | index
}
-} \ No newline at end of file
+}
diff --git a/config-model/src/test/derived/tokenization/tokenization.sd b/config-model/src/test/derived/tokenization/tokenization.sd
index 4510a574d60..a74c52e4d9d 100644
--- a/config-model/src/test/derived/tokenization/tokenization.sd
+++ b/config-model/src/test/derived/tokenization/tokenization.sd
@@ -1,3 +1,4 @@
+# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema tokenization {
document tokenization {
@@ -20,4 +21,4 @@ schema tokenization {
indexing: input text_array | for_each { lowercase } | for_each { normalize } | index | summary
}
-} \ No newline at end of file
+}
diff --git a/config-model/src/test/java/com/yahoo/searchdefinition/derived/TokenizationTestCase.java b/config-model/src/test/java/com/yahoo/searchdefinition/derived/TokenizationTestCase.java
index 6fe367ef6d1..54768d474d6 100755
--- a/config-model/src/test/java/com/yahoo/searchdefinition/derived/TokenizationTestCase.java
+++ b/config-model/src/test/java/com/yahoo/searchdefinition/derived/TokenizationTestCase.java
@@ -1,3 +1,4 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// Copyright Verizon media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchdefinition.derived;