Repository: jena Updated Branches: refs/heads/ThreadPerGraphDataset 8601cd302 -> 3425c00ef
Adding correct license headers Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/3425c00e Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/3425c00e Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/3425c00e Branch: refs/heads/ThreadPerGraphDataset Commit: 3425c00ef3ea937dd22c273a42ad272d9d6ed5cf Parents: 8601cd3 Author: ajs6f <[email protected]> Authored: Sat Jan 7 15:44:06 2017 -0500 Committer: ajs6f <[email protected]> Committed: Sat Jan 7 15:44:06 2017 -0500 ---------------------------------------------------------------------- .../sparql/core/DatasetGraphPerGraphLocking.java | 18 ++++++++++++++++++ .../core/JenaTransactionRegionException.java | 18 ++++++++++++++++++ .../core/TS_DatasetGraphPerGraphLocking.java | 18 ++++++++++++++++++ .../jena/sparql/core/pergraph/BasicTest.java | 18 ++++++++++++++++++ .../sparql/core/pergraph/FindPatternsTest.java | 18 ++++++++++++++++++ .../jena/sparql/core/pergraph/FindTest.java | 18 ++++++++++++++++++ .../jena/sparql/core/pergraph/LockTest.java | 18 ++++++++++++++++++ .../sparql/core/pergraph/MultithreadingTest.java | 18 ++++++++++++++++++ .../core/pergraph/TransactionLifecycleTest.java | 18 ++++++++++++++++++ .../jena/sparql/core/pergraph/ViewTest.java | 18 ++++++++++++++++++ 10 files changed, 180 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/3425c00e/jena-arq/src/main/java/org/apache/jena/sparql/core/DatasetGraphPerGraphLocking.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/main/java/org/apache/jena/sparql/core/DatasetGraphPerGraphLocking.java b/jena-arq/src/main/java/org/apache/jena/sparql/core/DatasetGraphPerGraphLocking.java index 30da6ed..46b2911 100644 --- a/jena-arq/src/main/java/org/apache/jena/sparql/core/DatasetGraphPerGraphLocking.java +++ b/jena-arq/src/main/java/org/apache/jena/sparql/core/DatasetGraphPerGraphLocking.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.jena.sparql.core; import static java.util.stream.Collectors.toList; http://git-wip-us.apache.org/repos/asf/jena/blob/3425c00e/jena-arq/src/main/java/org/apache/jena/sparql/core/JenaTransactionRegionException.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/main/java/org/apache/jena/sparql/core/JenaTransactionRegionException.java b/jena-arq/src/main/java/org/apache/jena/sparql/core/JenaTransactionRegionException.java index aaaef6c..29d0e41 100644 --- a/jena-arq/src/main/java/org/apache/jena/sparql/core/JenaTransactionRegionException.java +++ b/jena-arq/src/main/java/org/apache/jena/sparql/core/JenaTransactionRegionException.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.jena.sparql.core; import org.apache.jena.sparql.JenaTransactionException; http://git-wip-us.apache.org/repos/asf/jena/blob/3425c00e/jena-arq/src/test/java/org/apache/jena/sparql/core/TS_DatasetGraphPerGraphLocking.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/core/TS_DatasetGraphPerGraphLocking.java b/jena-arq/src/test/java/org/apache/jena/sparql/core/TS_DatasetGraphPerGraphLocking.java index 60e363e..82cb62e 100644 --- a/jena-arq/src/test/java/org/apache/jena/sparql/core/TS_DatasetGraphPerGraphLocking.java +++ b/jena-arq/src/test/java/org/apache/jena/sparql/core/TS_DatasetGraphPerGraphLocking.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.jena.sparql.core; import org.apache.jena.sparql.core.pergraph.*; http://git-wip-us.apache.org/repos/asf/jena/blob/3425c00e/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/BasicTest.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/BasicTest.java b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/BasicTest.java index 770973b..cda0471 100644 --- a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/BasicTest.java +++ b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/BasicTest.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.jena.sparql.core.pergraph; import org.apache.jena.sparql.core.AbstractDatasetGraphTests; http://git-wip-us.apache.org/repos/asf/jena/blob/3425c00e/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/FindPatternsTest.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/FindPatternsTest.java b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/FindPatternsTest.java index 5934a9f..9012e16 100644 --- a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/FindPatternsTest.java +++ b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/FindPatternsTest.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.jena.sparql.core.pergraph; import org.apache.jena.sparql.core.AbstractDatasetGraphFindPatterns; http://git-wip-us.apache.org/repos/asf/jena/blob/3425c00e/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/FindTest.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/FindTest.java b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/FindTest.java index 447dd98..dbe4243 100644 --- a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/FindTest.java +++ b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/FindTest.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.jena.sparql.core.pergraph; import org.apache.jena.sparql.core.AbstractDatasetGraphFind; http://git-wip-us.apache.org/repos/asf/jena/blob/3425c00e/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/LockTest.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/LockTest.java b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/LockTest.java index 782fde5..8d8ab10 100644 --- a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/LockTest.java +++ b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/LockTest.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.jena.sparql.core.pergraph; import static org.apache.jena.query.DatasetFactory.wrap; http://git-wip-us.apache.org/repos/asf/jena/blob/3425c00e/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/MultithreadingTest.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/MultithreadingTest.java b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/MultithreadingTest.java index e99c372..2959be3 100644 --- a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/MultithreadingTest.java +++ b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/MultithreadingTest.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.jena.sparql.core.pergraph; import static com.jayway.awaitility.Awaitility.waitAtMost; http://git-wip-us.apache.org/repos/asf/jena/blob/3425c00e/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/TransactionLifecycleTest.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/TransactionLifecycleTest.java b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/TransactionLifecycleTest.java index 65d91ff..b3ec3d7 100644 --- a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/TransactionLifecycleTest.java +++ b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/TransactionLifecycleTest.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.jena.sparql.core.pergraph; import static org.apache.jena.query.DatasetFactory.wrap; http://git-wip-us.apache.org/repos/asf/jena/blob/3425c00e/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/ViewTest.java ---------------------------------------------------------------------- diff --git a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/ViewTest.java b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/ViewTest.java index 5bd5b05..cc1c029 100644 --- a/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/ViewTest.java +++ b/jena-arq/src/test/java/org/apache/jena/sparql/core/pergraph/ViewTest.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.jena.sparql.core.pergraph; import org.apache.jena.sparql.core.DatasetGraph;
