Quick Search:

jump to detailed chart | hide Line History

Line Count Graph

Constraint

Branch:
Author:
Tag:
Date: help

Sort: path | last-commit | first-commit Sub Directories

Changelog

147 by root on 24 December 2005, 16:26:26 -0600 (2 years 4 months ago) grant fisheye access

147 history download (+0 -0) diffs

146 by chirino on 19 December 2005, 15:41:18 -0600 (2 years 4 months ago) tagging 2.1 release

tags/ACTIVEIO-2.1/activeio 146 history download (+0) new/copied

tags/ACTIVEIO-2.1/activeio/src 146 history download (+0) new/copied

tags/ACTIVEIO-2.1/activeio/src/java 146 history download (+0) new/copied

tags/ACTIVEIO-2.1/activeio/src/java/org 146 history download (+0) new/copied

tags/ACTIVEIO-2.1/activeio/src/java/org/activeio 146 history download (+0) new/copied

… 261 more files in changeset.
145 by chirino on 19 December 2005, 15:40:22 -0600 (2 years 4 months ago) making release tag

tags/ACTIVEIO-2.1 145 history download (+0) new

144 by chirino on 01 December 2005, 08:44:12 -0600 (2 years 5 months ago) - The journal can now read records that have been moved to archived log files.

trunk/activeio/src/java/org/activeio/journal/active/LogFileManager.java 144 history download (+40 -10) diffs

trunk/activeio/src/java/org/activeio/journal/active/RecordInfo.java 144 history download (+7 -1) diffs

trunk/activeio/src/test/org/activeio/journal/active/JournalImplTest.java 144 history download (+24 -3) diffs

143 by maguro on 19 November 2005, 14:23:52 -0600 (2 years 5 months ago) Not really needed

branches/constructor 143 history deleted

branches/constructor/activeio 143 history deleted

branches/constructor/activeio/src 143 history deleted

branches/constructor/activeio/src/java 143 history deleted

branches/constructor/activeio/src/java/org 143 history deleted

… 258 more files in changeset.
142 by chirino on 14 November 2005, 04:18:24 -0600 (2 years 5 months ago) rev up version

trunk/activeio/project.xml 142 history download (+1 -1) diffs

141 by chirino on 01 November 2005, 17:34:27 -0600 (2 years 6 months ago) - Use only 1 thread to do the actual IO to the journal, the recent concurrent backport port had changed this
- Do safer locking of the control file.  We now check to see if the same java process has l…

trunk/activeio/src/java/org/activeio/journal/active/ControlFile.java 141 history download (+39 -6) diffs

trunk/activeio/src/java/org/activeio/journal/active/JournalImpl.java 141 history download (+14 -12) diffs

139 by chirino on 26 October 2005, 19:48:33 -0500 (2 years 6 months ago) tests are passing now.

trunk/activeio/project.xml 139 history download (+0 -9) diffs

138 by chirino on 26 October 2005, 19:42:04 -0500 (2 years 6 months ago) Tweaked the thread pool settings so that we don't get lockups.

trunk/activeio/src/java/org/activeio/ChannelFactory.java 138 history download (+2 -1) diffs

trunk/activeio/src/java/org/activeio/filter/AsyncWriteAsyncChannel.java 138 history download (+1 -1) diffs

trunk/activeio/src/test/org/activeio/net/benchmark/ClientLoadSimulator.java 138 history download (+2 -1) diffs

137 by dblevins on 26 October 2005, 14:04:24 -0500 (2 years 6 months ago) scm:subversion isn't a valid scm url

trunk/activeio/project.xml 137 history download (+2 -2) diffs

136 by dblevins on 26 October 2005, 14:02:25 -0500 (2 years 6 months ago) Fixed line endings

trunk/activeio/project.xml 136 history download (+289 -289) diffs

135 by jstrachan on 25 October 2005, 08:58:32 -0500 (2 years 6 months ago) excluding test case which always fails on OS X

trunk/activeio/project.xml 135 history download (+4 -1) diffs

134 by jstrachan on 25 October 2005, 08:53:39 -0500 (2 years 6 months ago) ported ActiveIO to use the backport.util.concurrent library so that it is API compatible with Java 5 as well as working from a newer, more heavily tested concurrent library

trunk/activeio/project.properties 134 history download (+1 -1) diffs

trunk/activeio/project.xml 134 history download (+18 -5) diffs

trunk/activeio/src/java/org/activeio/ChannelFactory.java 134 history download (+10 -8) diffs

trunk/activeio/src/java/org/activeio/FactoryFinder.java 134 history download (+1 -1) diffs

trunk/activeio/src/java/org/activeio/adapter/AsyncChannelToConcurrentRequestChannel.java 134 history download (+13 -16) diffs

… 35 more files in changeset.
133 by maguro on 16 October 2005, 10:31:04 -0500 (2 years 6 months ago) Use classMap cache.

trunk/activeio/src/java/org/activeio/FactoryFinder.java 133 history download (+18 -16) diffs

132 by chirino on 09 October 2005, 19:06:39 -0500 (2 years 7 months ago) The narrow() method was a little smelly and I've been told more than once.  Since it's purpose is that same as the IAdaptable interface eclipse uses, I'm going to follow that lead.
Refactored out the …

trunk/activeio/src/java/org/activeio/Adaptable.java 132 history download (+35) new

trunk/activeio/src/java/org/activeio/Channel.java 132 history download (+1 -11) diffs

trunk/activeio/src/java/org/activeio/FilterAsyncChannel.java 132 history download (+2 -2) diffs

trunk/activeio/src/java/org/activeio/FilterAsyncChannelServer.java 132 history download (+2 -2) diffs

trunk/activeio/src/java/org/activeio/FilterSyncChannel.java 132 history download (+2 -2) diffs

… 37 more files in changeset.
131 by chirino on 04 October 2005, 14:15:37 -0500 (2 years 7 months ago) - Fixed spelling problems
- Added an alternative ByteArray(Input|Output)Stream implementations which are not thread safe.
- PacketData now has static methods that can be used against the Packet.

trunk/activeio/src/java/org/activeio/ByteArrayInputStream.java 131 history download (+82) new

trunk/activeio/src/java/org/activeio/ByteArrayOutputStream.java 131 history download (+65) new

trunk/activeio/src/java/org/activeio/ByteSequence.java 131 history download (+42) new

trunk/activeio/src/java/org/activeio/Packet.java 131 history download (+0 -22) diffs

trunk/activeio/src/java/org/activeio/PacketData.java 131 history download (+215 -83) diffs

… 14 more files in changeset.
130 by maguro on 25 September 2005, 12:38:11 -0500 (2 years 7 months ago) Constructor change sandbox

branches/constructor 130 history download (+0) new/copied

branches/constructor/activeio 130 history download (+0) new/copied

branches/constructor/activeio/src 130 history download (+0) new/copied

branches/constructor/activeio/src/java 130 history download (+0) new/copied

branches/constructor/activeio/src/java/org 130 history download (+0) new/copied

… 258 more files in changeset.
129 by maguro on 25 September 2005, 01:44:25 -0500 (2 years 7 months ago) Having some synchronization issues.

trunk/activeio/src/test/org/activeio/net/SyncChannelTestSupport.java 129 history download (+35 -38) diffs

127 by maguro on 24 September 2005, 23:33:27 -0500 (2 years 7 months ago) Added some handy ignore stuff.

trunk/activeio 127 history download (+0 -0) diffs

125 by chirino on 19 September 2005, 10:20:52 -0500 (2 years 7 months ago) Trying to fix problem reported with osx g5s

trunk/activeio/src/java/org/activeio/net/SocketStreamChannelFactory.java 125 history download (+3 -3) diffs

124 by chirino on 16 September 2005, 01:22:26 -0500 (2 years 7 months ago) Bubble up exception due to EOS

trunk/activeio 124 history download (+0 -0) diffs

trunk/activeio/src/java/org/activeio/command/AsyncChannelToAsyncCommandChannel.java 124 history download (+6 -0) diffs

123 by maguro on 07 September 2005, 14:31:12 -0500 (2 years 8 months ago) Let DatagramSocketSyncChannel to all the work.

trunk/activeio/src/java/org/activeio/net/DatagramSocketSyncChannel.java 123 history download (+6 -2) diffs

trunk/activeio/src/java/org/activeio/net/MulticastSocketSyncChannel.java 123 history download (+5 -99) diffs

122 by maguro on 07 September 2005, 14:29:09 -0500 (2 years 8 months ago) Synced with old spelling.

trunk/activeio/src/test/org/activeio/net/DatagramSyncChannelTest.java 122 history download (+1 -1) diffs

118 by dblevins on 06 September 2005, 16:40:21 -0500 (2 years 8 months ago) Added enough ActiveIO 1.1 backward compatibility for ActiveMQ 3.2
Fixed some javadoc

trunk/activeio/src/java/org/activeio/AcceptListener.java 118 history download (+1 -1) diffs

trunk/activeio/src/java/org/activeio/AsyncChannel.java 118 history download (+2 -1) diffs

trunk/activeio/src/java/org/activeio/AsynchChannel.java 118 history download (+24) new

trunk/activeio/src/java/org/activeio/AsynchChannelListener.java 118 history download (+23) new

trunk/activeio/src/java/org/activeio/AsynchChannelServer.java 118 history download (+23) new

… 6 more files in changeset.
earlier earlier | later later
Open Source License registered to the Codehaus Project. This license of FishEye is provided to support the development of Codehaus only.
Atlassian FishEye, Subversion, CVS & Perforce analysis. (Version:1.5.1 Build:build-296 2008-04-24 ) - Administration - Page generated 2008-05-11 17:31 -0500