Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LockInfo (0.12 sec)

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

        public void writeLockInfo(RandomAccessFile lockFileAccess, LockInfo lockInfo) throws IOException {
            lockFileAccess.seek(infoRegionPos);
    
            DataOutputStream outstr = new DataOutputStream(new BufferedOutputStream(new RandomAccessFileOutputStream(lockFileAccess)));
            outstr.writeByte(lockInfoSerializer.getVersion());
            lockInfoSerializer.write(outstr, lockInfo);
            outstr.flush();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

                            LockInfo lockInfo = readInformationRegion(backoff);
                            if (lockInfo.port != -1) {
                                if (lockInfo.port != lastLockHolderPort) {
                                    backoff.restartTimer();
                                    lastLockHolderPort = lockInfo.port;
                                    lastPingTime = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.cache.internal.filelock.LockInfo> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (LockInfo.java:0)
    Class <org.gradle.cache.internal.filelock.LockInfoAccess> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (LockInfoAccess.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top