Searched refs:syncInterval (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/macosx/classes/java/util/prefs/
H A DMacOSXPreferencesFile.java56 The sync timer period is controlled by the java.util.prefs.syncInterval
59 syncInterval property is set. The minimum interval is 5 seconds.
108 private static long syncInterval = -1; // (min 5, default negative == off) field in class:MacOSXPreferencesFile
304 // syncInterval: -1 is uninitialized, other negative is off,
307 if (syncInterval == -1) {
309 syncInterval = Integer.parseInt(System.getProperty("java.util.prefs.syncInterval", "-2"));
310 if (syncInterval >= 0) {
312 syncInterval = Math.max(5, syncInterval);
[all...]

Completed in 168 milliseconds