You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2014/02/11 08:54:11 UTC

ets-lru commit: updated refs/heads/import to aa817bd

Updated Branches:
  refs/heads/import d0e459456 -> aa817bd22


Add license headers


Project: http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/commit/aa817bd2
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/tree/aa817bd2
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/diff/aa817bd2

Branch: refs/heads/import
Commit: aa817bd22eb0ecc95180a1f386856a2e7da4b12f
Parents: d0e4594
Author: Paul J. Davis <pa...@gmail.com>
Authored: Tue Feb 11 01:54:01 2014 -0600
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Tue Feb 11 01:54:01 2014 -0600

----------------------------------------------------------------------
 test/01-basic-behavior.t    | 11 +++++++++++
 test/02-lru-options.t       | 11 +++++++++++
 test/03-limit-max-objects.t | 11 +++++++++++
 test/04-limit-max-size.t    | 11 +++++++++++
 test/05-limit-lifetime.t    | 11 +++++++++++
 test/tutil.erl              | 12 ++++++++++++
 6 files changed, 67 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/blob/aa817bd2/test/01-basic-behavior.t
----------------------------------------------------------------------
diff --git a/test/01-basic-behavior.t b/test/01-basic-behavior.t
index 7e87a5d..0015998 100755
--- a/test/01-basic-behavior.t
+++ b/test/01-basic-behavior.t
@@ -1,4 +1,15 @@
 #! /usr/bin/env escript
+% 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.
 
 -define(WITH_LRU(F), tutil:with_lru(fun(LRU) -> F(LRU) end)).
 

http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/blob/aa817bd2/test/02-lru-options.t
----------------------------------------------------------------------
diff --git a/test/02-lru-options.t b/test/02-lru-options.t
index 59d0ba1..c9fb721 100755
--- a/test/02-lru-options.t
+++ b/test/02-lru-options.t
@@ -1,4 +1,15 @@
 #! /usr/bin/env escript
+% 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.
 
 main([]) ->
     code:add_pathz("test"),

http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/blob/aa817bd2/test/03-limit-max-objects.t
----------------------------------------------------------------------
diff --git a/test/03-limit-max-objects.t b/test/03-limit-max-objects.t
index bd4e793..00a40a8 100755
--- a/test/03-limit-max-objects.t
+++ b/test/03-limit-max-objects.t
@@ -1,4 +1,15 @@
 #! /usr/bin/env escript
+% 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.
 
 objs() -> 25.
 

http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/blob/aa817bd2/test/04-limit-max-size.t
----------------------------------------------------------------------
diff --git a/test/04-limit-max-size.t b/test/04-limit-max-size.t
index 5cdf0ce..a54cdf0 100755
--- a/test/04-limit-max-size.t
+++ b/test/04-limit-max-size.t
@@ -1,4 +1,15 @@
 #! /usr/bin/env escript
+% 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.
 
 max_size() -> 1024.
 

http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/blob/aa817bd2/test/05-limit-lifetime.t
----------------------------------------------------------------------
diff --git a/test/05-limit-lifetime.t b/test/05-limit-lifetime.t
index 95effb2..eb6d54d 100755
--- a/test/05-limit-lifetime.t
+++ b/test/05-limit-lifetime.t
@@ -1,4 +1,15 @@
 #! /usr/bin/env escript
+% 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.
 
 lifetime() -> 100.
 

http://git-wip-us.apache.org/repos/asf/couchdb-ets-lru/blob/aa817bd2/test/tutil.erl
----------------------------------------------------------------------
diff --git a/test/tutil.erl b/test/tutil.erl
index 3e4bd68..3bf154b 100644
--- a/test/tutil.erl
+++ b/test/tutil.erl
@@ -1,3 +1,15 @@
+% 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.
+
 -module(tutil).
 
 -export([