Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getTimeMillis (0.21 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/locking/ExclusiveFileAccessManager.java

            }
            RandomAccessFile randomAccessFile = null;
            FileChannel channel = null;
            try {
    
                long expiry = getTimeMillis() + timeoutMs;
                FileLock lock = null;
    
                while (lock == null && getTimeMillis() < expiry) {
                    randomAccessFile = new RandomAccessFile(lockFile, "rw");
                    channel = randomAccessFile.getChannel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:53 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top