0
I Use This!
Inactive

Commits : Listings

Analyzed about 8 hours ago. based on code collected about 16 hours ago.
Apr 28, 2023 — Apr 28, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
'>=' not '>', arghh!! More... almost 17 years ago
Need to use _send_resp method so that waiters will be woken up. More... almost 17 years ago
Adding the mozilla Networking Security Services (nss) library for darwin with Intel processor More... almost 17 years ago
Added readme More... almost 17 years ago
Fixed a memory leak! The pending_reads map did not remove using the right key. Incorrect to remove using the *array* of BlockAddress[] instead of using the BlockAddress! That is, incorrect 'pending_reads.remove(addrs)' correct 'pending_reads.remove(addr)' More... almost 17 years ago
Need to store LogState in in state_map in open_log_cb method if LogState already exists (i.e. opening a log that already exists). I am not sure how this worked before. Actually, I do not think it did work previously. Probably AntiquityLog was tested with this functionality and not DbLog. More... almost 17 years ago
Do some extra checks to make sure that inode pointers are not null More... almost 17 years ago
Write data the the log in batches, instead of one block at a time More... almost 17 years ago
Added extra usage and check to make sure that ANTIQUITY_DIR gets set More... almost 17 years ago
In addition to the error msg, print out the XdrAble object that failed to serialize. More... almost 17 years ago
Added BlockSize as a cfg parameter to ensure the BLOCK_SIZE of moxie matches Publisher More... almost 17 years ago
Return error if directory entry does not exist. To do this, we check the parent_dir_map if it contains child that matches path. Previously, it was not checked, and use to cause null pointer exception More... almost 17 years ago
Made BLOCK_SIZE a cfg parameter. If BLOCK_SIZE used by Publisher differs from MoxieRoFs, then errors will ensue! (Fuse defines a ByteBuffer with insufficient capacity). More... almost 17 years ago
Root directory inode can be evicted from cache, need to put back in cache when that happens More... almost 17 years ago
Made setting debug level a public method More... almost 17 years ago
correct comments More... almost 17 years ago
Need to set the mode permissions correctly for a directory or file More... almost 17 years ago
Added moxie.log.BlockAddress.class to list of Serializable classes. More... almost 17 years ago
Adding Fuse-J for MacOSX (arch=i386) More... almost 17 years ago
Added Fuse-J for MacOS X (arch=ppc) More... almost 17 years ago
ignore RepairStage if it is not present More... about 17 years ago
Change DebugLevel from debug to info More... about 17 years ago
Directions to run DummyASyncServer More... about 17 years ago
Need to register TypeCodes for BlockAddress and AppState More... about 17 years ago
Respond with block_names if verbose is true More... about 17 years ago
Add Publisher, DfsReader, and MoxieRoFs to work with AntiquityLog via pub.cfg, read.cfg, and moxierofs.cfg More... about 17 years ago
Added directions to run an NFS client and/or server More... about 17 years ago
commands to execute Publisher, DfsReader, and MoxieRoFs from pub_db.cfg, read_db.cfg, and moxierofs_db.cfg respectively More... about 17 years ago
Use Arrays.fill instead of Arrays.copyOf since the former is defined in java 1.5 and older; whereas the latter is only defined in 1.6 or newer. Using Arrays.fill allows us to be compatible with older jdk's More... about 17 years ago
Use parent as key, not child_path. The latter caused infinite loop More... about 17 years ago