Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getLoopbackAddress (0.14 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

            def nonDaemonProcess = new ServerSocket()
            ConcurrentTestUtil.poll {
                def listeningAddress = new InetSocketAddress(InetAddress.getLoopbackAddress(), daemons.daemon.port)
                println("Listening with non-daemon process on ${listeningAddress}")
                nonDaemonProcess.bind(listeningAddress)
            }
            def latch = new CyclicBarrier(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

                }
            }
            String hostname;
            try {
                hostname = InetAddress.getLocalHost().getHostName();
            } catch (UnknownHostException e) {
                hostname = InetAddress.getLoopbackAddress().getHostAddress();
            }
            return new FixedHostname(hostname);
        }
    
        @Provides
        protected FileMetadataAccessor createFileMetadataAccessor(OperatingSystem operatingSystem) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top