Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,316 for addUses (0.48 sec)

  1. guava/src/com/google/common/net/InetAddresses.java

       *
       * @param hostAddr an RFC 3986 section 3.2.2 encoded IPv4 or IPv6 address
       * @return an InetAddress representing the address in {@code hostAddr}
       * @throws IllegalArgumentException if {@code hostAddr} is not a valid IPv4 address, or IPv6
       *     address surrounded by square brackets, or if the address has a scope id that fails
       *     validation against interfaces on the machine
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. tests/testdata/bootstrap_tmpl.json

          {{ .EnvoyConfigOpt.meta_json_str }}
        }
      },
      "stats_config": {
        "use_all_default_tags": false
      },
      "admin": {
        "access_log_path": "{{.AccessLogPath}}",
        "address": {
          "socket_address": {
            "address": "0.0.0.0",
            "port_value": {{.Ports.AdminPort}}
          }
        }
      },
      "layered_runtime": {
          "layers": [
              {
                  "name": "deprecation",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 9.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteSelector.kt

        val InetSocketAddress.socketHost: String get() {
          // The InetSocketAddress was specified with a string (either a numeric IP or a host name). If
          // it is a name, all IPs for that name should be tried. If it is an IP address, only that IP
          // address should be tried.
          val address = address ?: return hostName
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InetAddresses.java

       *
       * @param hostAddr an RFC 3986 section 3.2.2 encoded IPv4 or IPv6 address
       * @return an InetAddress representing the address in {@code hostAddr}
       * @throws IllegalArgumentException if {@code hostAddr} is not a valid IPv4 address, or IPv6
       *     address surrounded by square brackets, or if the address has a scope id that fails
       *     validation against interfaces on the machine
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. pkg/bootstrap/testdata/tracing_lightstep_golden.json

                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
                      "socket_address": {"address": "lightstep-satellite", "port_value": 8080}
                    }
                  }
                }]
              }]
            }
          }
          
          
        ],
        "listeners":[
          {
            "address": {
              "socket_address": {
                "protocol": "TCP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/tracing_tls_golden.json

                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
                      "socket_address": {"address": "localhost", "port_value": 6000}
                    }
                  }
                }]
              }]
            }
          }
          
          
        ],
        "listeners":[
          {
            "address": {
              "socket_address": {
                "protocol": "TCP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/TcpConnectorTest.groovy

            when:
            outgoingConnector.connect(address)
    
            then:
            ConnectException e = thrown()
            e.message.startsWith "Could not connect to server ${address}."
            e.cause instanceof java.net.ConnectException
        }
    
        def "the exception includes last failure when cannot connect"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/graceful_termination_test.go

    	}{
    		{
    			name: "graceful delete, no connections results in deleting the real server immediatetly",
    			vs: &utilipvs.VirtualServer{
    				Address:  netutils.ParseIPSloppy("1.1.1.1"),
    				Protocol: "tcp",
    				Port:     uint16(80),
    			},
    			rs: &utilipvs.RealServer{
    				Address:      netutils.ParseIPSloppy("10.0.0.1"),
    				Port:         uint16(80),
    				Weight:       100,
    				ActiveConn:   0,
    				InactiveConn: 0,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/diagnostics/DaemonStartupInfo.java

    import org.gradle.internal.remote.Address;
    
    import javax.annotation.Nullable;
    
    public class DaemonStartupInfo {
        private final String uid;
        private final Address address;
        private final DaemonDiagnostics diagnostics;
    
        public DaemonStartupInfo(String uid, Address address, DaemonDiagnostics diagnostics) {
            this.uid = uid;
            this.address = address;
            this.diagnostics = diagnostics;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    //
    // - isUnspecified: returns true if the IP address is the unspecified address.
    // Either the IPv4 address "0.0.0.0" or the IPv6 address "::".
    //
    // - isLoopback: returns true if the IP address is the loopback address.
    // Either an IPv4 address with a value of 127.x.x.x or an IPv6 address with a value of ::1.
    //
    // - isLinkLocalMulticast: returns true if the IP address is a link-local multicast address.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top