forked from I2P_Developers/i2p.i2p
javadoc fixes part 8 (ticket #1894)
This commit is contained in:
@@ -1298,7 +1298,7 @@ public class KademliaNetworkDatabaseFacade extends NetworkDatabaseFacade {
|
||||
|
||||
/**
|
||||
* Is the key in the negative lookup cache?
|
||||
*&
|
||||
*
|
||||
* @param key for Destinations or RouterIdentities
|
||||
* @since 0.9.4 moved from FNDF to KNDF in 0.9.16
|
||||
*/
|
||||
|
||||
@@ -153,6 +153,7 @@ class SearchJob extends JobImpl {
|
||||
}
|
||||
***/
|
||||
|
||||
/** timeout */
|
||||
static final int PER_FLOODFILL_PEER_TIMEOUT = 10*1000;
|
||||
static final long MIN_TIMEOUT = 2500;
|
||||
|
||||
|
||||
@@ -79,6 +79,7 @@ class StoreState {
|
||||
}
|
||||
****/
|
||||
|
||||
/** getFailed */
|
||||
public Set<Hash> getFailed() {
|
||||
synchronized (_failedPeers) {
|
||||
return new HashSet<Hash>(_failedPeers);
|
||||
|
||||
@@ -197,7 +197,7 @@ public class LoadClientAppsJob extends JobImpl {
|
||||
* @param clientName can be null
|
||||
* @param args can be null
|
||||
* @param cl can be null
|
||||
* @throws just about anything, caller would be wise to catch Throwable
|
||||
* @throws Exception just about anything, caller would be wise to catch Throwable
|
||||
* @since 0.7.14
|
||||
*/
|
||||
public static void runClientInline(String className, String clientName, String args[],
|
||||
|
||||
@@ -41,8 +41,6 @@ import net.i2p.util.SystemVersion;
|
||||
* After migration, the router will run using the new directory.
|
||||
* The wrapper, however, must be stopped and restarted from the new script - until then,
|
||||
* it will continue to write to wrapper.log* in the old directory.
|
||||
*
|
||||
* @param whether to copy all data over from an existing install
|
||||
*/
|
||||
public class WorkingDir {
|
||||
|
||||
@@ -63,6 +61,8 @@ public class WorkingDir {
|
||||
* Caller should store the return value for future reference.
|
||||
*
|
||||
* This also redirects stdout and stderr to a wrapper.log file if there is no wrapper present.
|
||||
*
|
||||
* @param migrateOldConfig whether to copy all data over from an existing install
|
||||
*/
|
||||
public static String getWorkingDir(Properties envProps, boolean migrateOldConfig) {
|
||||
String dir = null;
|
||||
|
||||
@@ -51,7 +51,7 @@ import org.freenetproject.ForwardPortStatus;
|
||||
*
|
||||
* ==================
|
||||
*
|
||||
* This plugin implements UP&P support on a Freenet node.
|
||||
* This plugin implements UP&P support on a Freenet node.
|
||||
*
|
||||
* @author Florent Daignière <nextgens@freenetproject.org>
|
||||
*
|
||||
|
||||
@@ -916,6 +916,7 @@ public class TunnelDispatcher implements Service {
|
||||
}
|
||||
******/
|
||||
|
||||
/** startup */
|
||||
public synchronized void startup() {
|
||||
// Note that we only use the validator for participants and OBEPs, not IBGWs, so
|
||||
// this BW estimate will be high by about 33% assuming 2-hop tunnels average
|
||||
|
||||
@@ -25,7 +25,7 @@ import net.i2p.util.SystemVersion;
|
||||
* Here is a sample on how to use the code:
|
||||
*
|
||||
<pre>
|
||||
for(Iterator<Object> iter = new RandomIterator<Object>(myObjList); iter.hasNext();){
|
||||
for(Iterator<Object> iter = new RandomIterator<Object>(myObjList); iter.hasNext();){
|
||||
Object o = iter.next();
|
||||
if(someCondition(o) )
|
||||
return o; // iteration stopped early
|
||||
|
||||
@@ -27,7 +27,7 @@ import java.util.concurrent.LinkedBlockingQueue;
|
||||
* This class is designed to be thread-safe, but this has not been
|
||||
* exhaustively tested.
|
||||
*
|
||||
* @author < A HREF="mailto:jddixon@users.sourceforge.net">Jim Dixon</A>
|
||||
* @author <A HREF="mailto:jddixon@users.sourceforge.net">Jim Dixon</A>
|
||||
*
|
||||
* BloomSHA1.java and KeySelector.java are BSD licensed from the xlattice
|
||||
* app - http://xlattice.sourceforge.net/
|
||||
|
||||
Reference in New Issue
Block a user