Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTimeMillis (0.13 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)
  2. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    static final String LOCK_FILE_SUFFIX = .lck; private final int timeoutMs; private final int pollIntervalMs; public void ExclusiveFileAccessM(int, int); public Object access(java.io.File, java.util.concurrent.Callable) throws Exception; private long getTimeMillis(); private static void maybeCloseQuietly(java.io.Closeable); } org/gradle/wrapper/GradleUserHomeLookup.class package org.gradle.wrapper; public synchronized class GradleUserHomeLookup { public static final String DEFAULT_GRADLE_USER_HOME; public...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
Back to top