Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isLockWasAcquired (0.16 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/FileLockOutcome.java

        };
    
        public boolean isLockWasAcquired() {
            return false;
        }
    
        public FileLock getFileLock() {
            throw new IllegalStateException("Lock was not acquired");
        }
    
        static FileLockOutcome acquired(FileLock fileLock) {
            return new FileLockOutcome() {
                @Override
                public boolean isLockWasAcquired() {
                    return true;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top