Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 327 for addUses (0.27 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full.yaml

          - suffix: -not-ns-suffix
          - presence: {}
    - rules:
      - matches:
        - notSourceIps:
          - address: AgIDBA==
            length: 32
          - address: BgYAAA==
            length: 16
          sourceIps:
          - address: AQIDBA==
            length: 32
          - address: BQYAAA==
            length: 16
    - rules:
      - matches:
        - destinationPorts:
          - 80
          - 90
          notDestinationPorts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 2.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/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)
  5. 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)
  6. src/net/ipsock.go

    }
    
    // ipv4only reports whether addr is an IPv4 address.
    func ipv4only(addr IPAddr) bool {
    	return addr.IP.To4() != nil
    }
    
    // ipv6only reports whether addr is an IPv6 address except IPv4-mapped IPv6 address.
    func ipv6only(addr IPAddr) bool {
    	return len(addr.IP) == IPv6len && addr.IP.To4() == nil
    }
    
    // SplitHostPort splits a network address of the form "host:port",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/net/ipsock_posix.go

    	// specify "any available address" on some operations
    	// of IP node.
    	//
    	// When the IP node supports IPv4-mapped IPv6 address,
    	// we allow a listener to listen to the wildcard
    	// address of both IP addressing spaces by specifying
    	// IPv6 wildcard address.
    	if len(ip) == 0 || ip.Equal(IPv4zero) {
    		ip = IPv6zero
    	}
    	// We accept any IPv6 address including IPv4-mapped
    	// IPv6 address.
    	ip6 := ip.To16()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/ingress/interface.go

    	// when in an environment that doesn't support LoadBalancer).
    	TCPAddresses() ([]string, []int)
    	// DiscoveryAddresses returns the external XDS (15012) address on the ingress gateway (or the NodePort address,
    	// when in an environment that doesn't support LoadBalancer).
    	DiscoveryAddresses() []netip.AddrPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/MessagingClient.java

     */
    @ServiceScope(Scope.Global.class)
    public interface MessagingClient {
        /**
         * Creates a connection to the given address. Blocks until the connection has been established.
         *
         * @param address The address to connect to.
         */
        ObjectConnection getConnection(Address address);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/ingress/status_test.go

    	address := syncer.runningAddresses()
    
    	if len(address) != 1 || address[0] != serviceIP {
    		t.Errorf("Address is not correctly set to service ip")
    	}
    }
    
    func testRunningAddressesWithHostname(t *testing.T) {
    	syncer := makeStatusSyncer(t, "istio-ingress-hostname")
    
    	address := syncer.runningAddresses()
    
    	if len(address) != 1 || address[0] != hostname {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top