Return-Path: X-Original-To: apmail-directory-commits-archive@www.apache.org Delivered-To: apmail-directory-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 69C607E41 for ; Mon, 29 Aug 2011 17:48:38 +0000 (UTC) Received: (qmail 29187 invoked by uid 500); 29 Aug 2011 17:48:38 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 29120 invoked by uid 500); 29 Aug 2011 17:48:37 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 29110 invoked by uid 99); 29 Aug 2011 17:48:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Aug 2011 17:48:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Aug 2011 17:48:34 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id A8EA22388A1C for ; Mon, 29 Aug 2011 17:48:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1162916 [2/2] - in /directory/apacheds/branches/apacheds-jdbm: jdbm-partition/src/main/java/org/apache/directory/server/core/partition/impl/btree/jdbm/ jdbm/src/main/java/jdbm/ jdbm/src/main/java/jdbm/btree/ jdbm/src/main/java/jdbm/helper/... Date: Mon, 29 Aug 2011 17:48:11 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110829174812.A8EA22388A1C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: directory/apacheds/branches/apacheds-jdbm/jdbm/src/test/java/jdbm/btree/SnapshotBTree.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-jdbm/jdbm/src/test/java/jdbm/btree/SnapshotBTree.java?rev=1162916&r1=1162915&r2=1162916&view=diff ============================================================================== --- directory/apacheds/branches/apacheds-jdbm/jdbm/src/test/java/jdbm/btree/SnapshotBTree.java (original) +++ directory/apacheds/branches/apacheds-jdbm/jdbm/src/test/java/jdbm/btree/SnapshotBTree.java Mon Aug 29 17:48:11 2011 @@ -1,39 +1,51 @@ - package jdbm.btree; +/* + * 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 jdbm.btree; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; -import java.io.ByteArrayOutputStream; import java.io.IOException; -import java.io.ObjectOutputStream; - -import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.io.ObjectInputStream; -import java.io.ObjectOutputStream; import java.io.Serializable; +import java.util.concurrent.Semaphore; import jdbm.RecordManager; import jdbm.RecordManagerFactory; -import jdbm.helper.CacheEvictionException; import jdbm.helper.IntegerComparator; -import jdbm.helper.LRUCache; import jdbm.helper.Tuple; import jdbm.helper.TupleBrowser; - import jdbm.recman.SnapshotRecordManager; +import org.junit.Test; +import org.junit.rules.TemporaryFolder; import org.junit.runner.RunWith; + import com.mycila.junit.concurrent.Concurrency; import com.mycila.junit.concurrent.ConcurrentJunitRunner; -import org.junit.rules.TemporaryFolder; - -import org.junit.Test; - -import java.util.concurrent.Semaphore; - +/** + * + * TODO SnapshotBTree. + * + * @author Apache Directory Project + */ @RunWith(ConcurrentJunitRunner.class) @Concurrency() public class SnapshotBTree Modified: directory/apacheds/branches/apacheds-jdbm/jdbm/src/test/java/jdbm/helper/TestActionVersioning.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-jdbm/jdbm/src/test/java/jdbm/helper/TestActionVersioning.java?rev=1162916&r1=1162915&r2=1162916&view=diff ============================================================================== --- directory/apacheds/branches/apacheds-jdbm/jdbm/src/test/java/jdbm/helper/TestActionVersioning.java (original) +++ directory/apacheds/branches/apacheds-jdbm/jdbm/src/test/java/jdbm/helper/TestActionVersioning.java Mon Aug 29 17:48:11 2011 @@ -1,13 +1,38 @@ +/* + * 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 jdbm.helper; -import org.junit.runner.RunWith; -import com.mycila.junit.concurrent.Concurrency; -import com.mycila.junit.concurrent.ConcurrentJunitRunner; +import static org.junit.Assert.assertEquals; import org.junit.Test; +import org.junit.runner.RunWith; -import static org.junit.Assert.assertEquals; +import com.mycila.junit.concurrent.Concurrency; +import com.mycila.junit.concurrent.ConcurrentJunitRunner; +/** + * + * TODO TestActionVersioning. + * + * @author Apache Directory Project + */ @RunWith(ConcurrentJunitRunner.class) @Concurrency() public class TestActionVersioning Modified: directory/apacheds/branches/apacheds-jdbm/jdbm/src/test/java/jdbm/helper/TestVersionedCache.java URL: http://svn.apache.org/viewvc/directory/apacheds/branches/apacheds-jdbm/jdbm/src/test/java/jdbm/helper/TestVersionedCache.java?rev=1162916&r1=1162915&r2=1162916&view=diff ============================================================================== --- directory/apacheds/branches/apacheds-jdbm/jdbm/src/test/java/jdbm/helper/TestVersionedCache.java (original) +++ directory/apacheds/branches/apacheds-jdbm/jdbm/src/test/java/jdbm/helper/TestVersionedCache.java Mon Aug 29 17:48:11 2011 @@ -1,16 +1,41 @@ +/* + * 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 jdbm.helper; +import static org.junit.Assert.assertEquals; + import java.io.IOException; +import org.junit.Test; import org.junit.runner.RunWith; + import com.mycila.junit.concurrent.Concurrency; import com.mycila.junit.concurrent.ConcurrentJunitRunner; -import org.junit.Test; - -import static org.junit.Assert.assertEquals; - +/** + * + * TODO TestVersionedCache. + * + * @author Apache Directory Project + */ @RunWith(ConcurrentJunitRunner.class) @Concurrency() public class TestVersionedCache