Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 723 for InNetwork (0.13 sec)

  1. src/net/platform_test.go

    // testableListenArgs reports whether arguments are testable on the
    // current platform configuration.
    func testableListenArgs(network, address, client string) bool {
    	if !testableNetwork(network) || !testableAddress(network, address) {
    		return false
    	}
    
    	var err error
    	var addr Addr
    	switch net, _, _ := strings.Cut(network, ":"); net {
    	case "tcp", "tcp4", "tcp6":
    		addr, err = ResolveTCPAddr("tcp", address)
    	case "udp", "udp4", "udp6":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. releasenotes/notes/47574.yaml

    - |
      **Added** support for automatically set default network to Ambient workloads if they are added to the Ambient before the network topology is set.
      Before, when you set `topology.istio.io/network` on your Istio root namespace, you need to manually rollout the Ambient workloads to make the network change take effect. 
      Now, the network of Ambient workloads will be automatically updated even if they do not have a network label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 22 06:59:24 UTC 2023
    - 733 bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpoint_builder_test.go

    			},
    		},
    		{
    			name: "network only ",
    			ctl: testController{
    				network: "mynetwork",
    			},
    			podLabels: labels.Instance{
    				"k1": "v1",
    			},
    			expected: labels.Instance{
    				"k1":                       "v1",
    				label.TopologyNetwork.Name: "mynetwork",
    			},
    		},
    		{
    			name: "network priority",
    			ctl: testController{
    				network: "ns-network",
    			},
    			podLabels: labels.Instance{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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