Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,029 for addUses (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/bootstrap/testdata/tracing_tls_custom_sni_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.6K bytes
    - Viewed (0)
  5. src/net/dial.go

    	// Zero means no deadline, or dependent on the operating system
    	// as with the Timeout option.
    	Deadline time.Time
    
    	// LocalAddr is the local address to use when dialing an
    	// address. The address must be of a compatible type for the
    	// network being dialed.
    	// If nil, a local address is automatically chosen.
    	LocalAddr Addr
    
    	// DualStack previously enabled RFC 6555 Fast Fallback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. pkg/kubelet/certificate/kubelet_test.go

    				{Type: v1.NodeHostName, Address: "hostname-2"},
    				{Type: v1.NodeExternalDNS, Address: "hostname-1"},
    				{Type: v1.NodeInternalDNS, Address: "hostname-3"},
    				{Type: v1.NodeInternalIP, Address: "2.2.2.2"},
    				{Type: v1.NodeExternalIP, Address: "1.1.1.1"},
    				{Type: v1.NodeInternalIP, Address: "3.3.3.3"},
    			},
    			wantDNSNames: []string{"hostname-1", "hostname-2", "hostname-3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:40 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. pilot/pkg/xds/xds_test.go

    			Exists("{.resources[?(@.address.socketAddress.portValue==27018)]}").
    			Select("{.resources[?(@.address.socketAddress.portValue==27018)]}").
    			Equals("0.0.0.0", "{.address.socketAddress.address}").
    			// Example doing a struct comparison, note the pain with oneofs....
    			Equals(&core.SocketAddress{
    				Address: "0.0.0.0",
    				PortSpecifier: &core.SocketAddress_PortValue{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters_test.go

    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeExternalIP, Address: "55.55.55.55"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			expectedAddresses: []v1.NodeAddress{
    				{Type: v1.NodeExternalIP, Address: "55.55.55.55"},
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			shouldError: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/PersistentDaemonRegistryTest.groovy

            given:
            def address = address()
    
            when:
            registry.markState(address, Busy)
    
            then:
            registry.all.empty
        }
    
        def "mark idle ignores entry that has been removed"() {
            given:
            def address = address()
    
            when:
            registry.markState(address, Idle)
    
            then:
            registry.all.empty
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/authsds_golden.json

              "path": "/dev/null"
            }
          }
        ],
        "profile_path": "/var/lib/istio/data/envoy.prof",
        "address": {
          "socket_address": {
            "address": "127.0.0.1",
            "port_value": 15000
          }
        }
      },
      "dynamic_resources": {
        "lds_config": {
          "ads": {},
          "initial_fetch_timeout": "0s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top