Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FileLockCommunicator (0.29 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockCommunicator.java

    import static org.gradle.internal.UncheckedException.throwAsUncheckedException;
    
    public class FileLockCommunicator {
        private static final Logger LOGGER = LoggerFactory.getLogger(FileLockCommunicator.class);
        private static final String SOCKET_OPERATION_NOT_PERMITTED_ERROR_MESSAGE = "Operation not permitted";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

        @Override
        public int reservePort() {
            return getCommunicator().getPort();
        }
    
        private FileLockCommunicator getCommunicator() {
            lock.lock();
            try {
                assertNotStopped();
                if (communicator == null) {
                    communicator = new FileLockCommunicator(inetAddressProvider);
                }
                return communicator;
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/FileLockCommunicatorTest.groovy

    import static org.gradle.test.fixtures.ConcurrentTestUtil.poll
    
    class FileLockCommunicatorTest extends ConcurrentSpecification {
    
        def addressFactory = new InetAddressFactory()
        def communicator = new FileLockCommunicator(new InetAddressProvider() {
            @Override
            InetAddress getWildcardBindingAddress() {
                return addressFactory.wildcardBindingAddress
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.cache.internal.locklistener.FileLockCommunicator> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (FileLockCommunicator.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