Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,594 for InNetwork (0.23 sec)

  1. src/net/external_test.go

    	}
    
    	for _, network := range []string{"tcp", "tcp4", "tcp6"} {
    		addr, err := ResolveTCPAddr(network, "www.google.com:http")
    		if err != nil {
    			t.Error(err)
    			continue
    		}
    		switch {
    		case network == "tcp" && addr.IP.To4() == nil:
    			fallthrough
    		case network == "tcp4" && addr.IP.To4() == nil:
    			t.Errorf("got %v; want an IPv4 address on %s", addr, network)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/net/http/socks_bundle.go

    	if err := d.validateTarget(network, address); err != nil {
    		proxy, dst, _ := d.pathAddrs(address)
    		return nil, &net.OpError{Op: d.cmd.String(), Net: network, Source: proxy, Addr: dst, Err: err}
    	}
    	if ctx == nil {
    		proxy, dst, _ := d.pathAddrs(address)
    		return nil, &net.OpError{Op: d.cmd.String(), Net: network, Source: proxy, Addr: dst, Err: errors.New("nil context")}
    	}
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. samples/multicluster/gen-eastwest-gateway.sh

          - name: istio-eastwestgateway
            label:
              istio: eastwestgateway
              app: istio-eastwestgateway
    EOF
    )
    
    # mark this as a multi-network gateway
    if [[ "${SINGLE_CLUSTER}" -eq 0 ]]; then
      IOP=$(cat <<EOF
    $IOP
              topology.istio.io/network: $NETWORK
    EOF
    )
    fi
    
    # env
    IOP=$(cat <<EOF
    $IOP
            enabled: true
            k8s:
    EOF
    )
    if [[ "${SINGLE_CLUSTER}" -eq 0 ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 04 02:52:25 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. prow/config/topology/external-istiod-multicluster.json

        "podSubnet": "10.20.0.0/16",
        "svcSubnet": "10.255.20.0/24",
        "network": "network-1",
        "primaryClusterName": "external",
        "configClusterName": "config"
      },
      {
        "kind": "Kubernetes",
        "clusterName": "remote",
        "podSubnet": "10.30.0.0/16",
        "svcSubnet": "10.255.30.0/24",
        "network": "network-2",
        "primaryClusterName": "external",
        "configClusterName": "config",
        "meta": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 25 15:28:47 UTC 2021
    - 787 bytes
    - Viewed (0)
  5. prow/config/topology/external-istiod.json

        "podSubnet": "10.20.0.0/16",
        "svcSubnet": "10.255.20.0/24",
        "network": "network-1",
        "primaryClusterName": "external",
        "configClusterName": "config"
      },
      {
        "kind": "Kubernetes",
        "clusterName": "external",
        "podSubnet": "10.10.0.0/16",
        "svcSubnet": "10.255.10.0/24",
        "network": "network-1",
        "primaryClusterName": "external",
        "configClusterName": "config",
        "meta": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 25 15:28:47 UTC 2021
    - 512 bytes
    - Viewed (0)
  6. okhttp-android/src/test/kotlin/okhttp3/android/ShadowDnsResolver.kt

      var responder: (Request) -> Unit = {
        it.callback.onAnswer(listOf(), 0)
      }
    
      data class Request(
        val network: Network?,
        val domain: String,
        val nsType: Int,
        val flags: Int,
        val callback: DnsResolver.Callback<List<InetAddress>>,
      )
    
      @Implementation
      fun query(
        network: Network?,
        domain: String,
        nsType: Int,
        flags: Int,
        executor: Executor,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 22 20:07:09 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/net/error_test.go

    	for _, network := range []string{"tcp", "udp", "ip:4294967296", "unix", "unixpacket", "unixgram"} {
    		var err error
    		switch network {
    		case "tcp":
    			_, err = ListenTCP(network, &TCPAddr{Port: 1 << 16})
    		case "udp":
    			_, err = ListenUDP(network, &UDPAddr{Port: 1 << 16})
    		case "ip:4294967296":
    			_, err = ListenIP(network, nil)
    		case "unix", "unixpacket":
    			_, err = ListenUnix(network, &UnixAddr{Name: "//"})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  8. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/matcher/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/router/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/generic_proxy/v3"
    	_ "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/filters/network/golang/v3alpha"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/MutableNetwork.java

       *
       * @return {@code true} if the network was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean removeNode(N node);
    
      /**
       * Removes {@code edge} from this network, if it is present.
       *
       * @return {@code true} if the network was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean removeEdge(E edge);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http/RealInterceptorChain.kt

    /**
     * A concrete interceptor chain that carries the entire interceptor chain: all application
     * interceptors, the OkHttp core, all network interceptors, and finally the network caller.
     *
     * If the chain is for an application interceptor then [exchange] must be null. Otherwise it is for
     * a network interceptor and [exchange] must be non-null.
     */
    class RealInterceptorChain(
      internal val call: RealCall,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top