Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getLoopbackAddress (0.4 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddressFactory.java

                localBindingAddress = wildcardBindingAddress;
            } else {
                localBindingAddress = InetAddress.getLoopbackAddress();
            }
        }
    
        private void handleOpenshift() {
            InetAddress openshiftBindAddress = findOpenshiftAddresses();
            if (openshiftBindAddress != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.7K 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)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

        assertThat(client.connectionPool.idleConnectionCount()).isEqualTo(1)
      }
    
      @Test
      fun httpsWithIpAddress() {
        platform.assumeNotBouncyCastle()
    
        val localIpAddress = InetAddress.getLoopbackAddress().hostAddress
    
        // Create a certificate with an IP address in the subject alt name.
        val heldCertificate =
          HeldCertificate.Builder()
            .commonName("example.com")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
Back to top