Lines Matching defs:unique
88 * <li> "%u" a unique number to resolve conflicts
102 * Normally the "%u" unique field is set to 0. However, if the <tt>FileHandler</tt>
104 * another process it will increment the unique number field and try
114 * Note that the use of unique ids to avoid conflicts is only guaranteed
385 int unique = -1;
387 unique++;
388 if (unique > MAX_LOCKS) {
391 // Generate a lock file name from the "unique" int.
392 lockFileName = generate(pattern, 0, unique).toString() + ".lck";
436 files[i] = generate(pattern, i, unique);
463 private File generate(String pattern, int generation, int unique) throws IOException {
510 word = word + unique;
525 if (unique > 0 && !sawu) {
526 word = word + "." + unique;