Put the copyright/license header into a few overlooked files.
This commit is contained in:
parent
bd3e638a96
commit
fec14a1c51
8 changed files with 231 additions and 40 deletions
|
@ -1,3 +1,26 @@
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
%%
|
||||||
|
%% lsm_btree: LSM-trees (Log-Structured Merge Trees) Indexed Storage
|
||||||
|
%%
|
||||||
|
%% Copyright 2011-2012 (c) Trifork A/S. All Rights Reserved.
|
||||||
|
%% http://trifork.com/ info@trifork.com
|
||||||
|
%%
|
||||||
|
%% Copyright 2012 (c) Basho Technologies, Inc. All Rights Reserved.
|
||||||
|
%% http://basho.com/ info@basho.com
|
||||||
|
%%
|
||||||
|
%% This file is provided 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.
|
||||||
|
%%
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
%%
|
%%
|
||||||
|
|
|
@ -1,5 +1,29 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
## ----------------------------------------------------------------------------
|
||||||
|
##
|
||||||
|
## lsm_btree: LSM-trees (Log-Structured Merge Trees) Indexed Storage
|
||||||
|
##
|
||||||
|
## Copyright 2011-2012 (c) Trifork A/S. All Rights Reserved.
|
||||||
|
## http://trifork.com/ info@trifork.com
|
||||||
|
##
|
||||||
|
## Copyright 2012 (c) Basho Technologies, Inc. All Rights Reserved.
|
||||||
|
## http://basho.com/ info@basho.com
|
||||||
|
##
|
||||||
|
## This file is provided 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.
|
||||||
|
##
|
||||||
|
## ----------------------------------------------------------------------------
|
||||||
|
|
||||||
function periodic() {
|
function periodic() {
|
||||||
t=0
|
t=0
|
||||||
while sleep 1 ; do
|
while sleep 1 ; do
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
%%
|
||||||
|
%% lsm_btree: LSM-trees (Log-Structured Merge Trees) Indexed Storage
|
||||||
|
%%
|
||||||
|
%% Copyright 2011-2012 (c) Trifork A/S. All Rights Reserved.
|
||||||
|
%% http://trifork.com/ info@trifork.com
|
||||||
|
%%
|
||||||
|
%% Copyright 2012 (c) Basho Technologies, Inc. All Rights Reserved.
|
||||||
|
%% http://basho.com/ info@basho.com
|
||||||
|
%%
|
||||||
|
%% This file is provided 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.
|
||||||
|
%%
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
|
||||||
-module(basho_bench_driver_lsm_btree).
|
-module(basho_bench_driver_lsm_btree).
|
||||||
|
|
||||||
-record(state, { tree,
|
-record(state, { tree,
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
%%
|
||||||
|
%% lsm_btree: LSM-trees (Log-Structured Merge Trees) Indexed Storage
|
||||||
|
%%
|
||||||
|
%% Copyright 2011-2012 (c) Trifork A/S. All Rights Reserved.
|
||||||
|
%% http://trifork.com/ info@trifork.com
|
||||||
|
%%
|
||||||
|
%% Copyright 2012 (c) Basho Technologies, Inc. All Rights Reserved.
|
||||||
|
%% http://basho.com/ info@basho.com
|
||||||
|
%%
|
||||||
|
%% This file is provided 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.
|
||||||
|
%%
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
|
||||||
{application, lsm_btree,
|
{application, lsm_btree,
|
||||||
[
|
[
|
||||||
{description, ""},
|
{description, ""},
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
%%
|
||||||
|
%% lsm_btree: LSM-trees (Log-Structured Merge Trees) Indexed Storage
|
||||||
|
%%
|
||||||
|
%% Copyright 2011-2012 (c) Trifork A/S. All Rights Reserved.
|
||||||
|
%% http://trifork.com/ info@trifork.com
|
||||||
|
%%
|
||||||
|
%% Copyright 2012 (c) Basho Technologies, Inc. All Rights Reserved.
|
||||||
|
%% http://basho.com/ info@basho.com
|
||||||
|
%%
|
||||||
|
%% This file is provided 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.
|
||||||
|
%%
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
|
||||||
%% @Doc Drive a set of lsm BTrees
|
%% @Doc Drive a set of lsm BTrees
|
||||||
-module(lsm_btree_drv).
|
-module(lsm_btree_drv).
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
%%
|
||||||
|
%% lsm_btree: LSM-trees (Log-Structured Merge Trees) Indexed Storage
|
||||||
|
%%
|
||||||
|
%% Copyright 2011-2012 (c) Trifork A/S. All Rights Reserved.
|
||||||
|
%% http://trifork.com/ info@trifork.com
|
||||||
|
%%
|
||||||
|
%% Copyright 2012 (c) Basho Technologies, Inc. All Rights Reserved.
|
||||||
|
%% http://basho.com/ info@basho.com
|
||||||
|
%%
|
||||||
|
%% This file is provided 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.
|
||||||
|
%%
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
|
||||||
-module(lsm_btree_merger_tests).
|
-module(lsm_btree_merger_tests).
|
||||||
|
|
||||||
-ifdef(TEST).
|
-ifdef(TEST).
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
%%
|
||||||
|
%% lsm_btree: LSM-trees (Log-Structured Merge Trees) Indexed Storage
|
||||||
|
%%
|
||||||
|
%% Copyright 2011-2012 (c) Trifork A/S. All Rights Reserved.
|
||||||
|
%% http://trifork.com/ info@trifork.com
|
||||||
|
%%
|
||||||
|
%% Copyright 2012 (c) Basho Technologies, Inc. All Rights Reserved.
|
||||||
|
%% http://basho.com/ info@basho.com
|
||||||
|
%%
|
||||||
|
%% This file is provided 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.
|
||||||
|
%%
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
|
||||||
-module(lsm_btree_tests).
|
-module(lsm_btree_tests).
|
||||||
|
|
||||||
-include("include/lsm_btree.hrl").
|
-include("include/lsm_btree.hrl").
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
%%
|
||||||
|
%% lsm_btree: LSM-trees (Log-Structured Merge Trees) Indexed Storage
|
||||||
|
%%
|
||||||
|
%% Copyright 2011-2012 (c) Trifork A/S. All Rights Reserved.
|
||||||
|
%% http://trifork.com/ info@trifork.com
|
||||||
|
%%
|
||||||
|
%% Copyright 2012 (c) Basho Technologies, Inc. All Rights Reserved.
|
||||||
|
%% http://basho.com/ info@basho.com
|
||||||
|
%%
|
||||||
|
%% This file is provided 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.
|
||||||
|
%%
|
||||||
|
%% ----------------------------------------------------------------------------
|
||||||
|
|
||||||
-module(lsm_btree_writer_tests).
|
-module(lsm_btree_writer_tests).
|
||||||
|
|
||||||
-ifdef(TEST).
|
-ifdef(TEST).
|
||||||
|
|
Loading…
Reference in a new issue