Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,594 for InNetwork (0.13 sec)

  1. pkg/hbone/dialer.go

    func (d *dialer) DialContext(ctx context.Context, network, address string) (net.Conn, error) {
    	if network != "tcp" {
    		return net.Dial(network, address)
    	}
    	// TODO: use context
    	c, s := net.Pipe()
    	err := d.proxyTo(s, d.cfg, address)
    	if err != nil {
    		return nil, err
    	}
    	return c, nil
    }
    
    func (d dialer) Dial(network, address string) (c net.Conn, err error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:41 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. src/net/tcpsock.go

    //
    // See func [Dial] for a description of the network and address
    // parameters.
    func ResolveTCPAddr(network, address string) (*TCPAddr, error) {
    	switch network {
    	case "tcp", "tcp4", "tcp6":
    	case "": // a hint wildcard for Go 1.0 undocumented behavior
    		network = "tcp"
    	default:
    		return nil, UnknownNetworkError(network)
    	}
    	addrs, err := DefaultResolver.internetAddrList(context.Background(), network, address)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/net/listen_test.go

    		}
    	default:
    		return UnknownNetworkError(network)
    	}
    	return nil
    }
    
    func checkSecondListener(network, address string, err error) error {
    	switch network {
    	case "tcp", "tcp4", "tcp6":
    		if err == nil {
    			return fmt.Errorf("%s should fail", network+" "+address)
    		}
    	case "udp", "udp4", "udp6":
    		if err == nil {
    			return fmt.Errorf("%s should fail", network+" "+address)
    		}
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  4. tests/testdata/bootstrap_tmpl.json

          }
        },
        "filter_chains": [
          {
            "filters": [
              {
                "name": "envoy.filters.network.http_connection_manager",
                "typed_config": {
                  "@type": "type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager",
                  "stat_prefix": "http",
                  "route_config": {
                      "name": "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 9.5K bytes
    - Viewed (0)
  5. src/net/iprawsock_test.go

    			t.Fatal("should not fail")
    		}
    	}
    }
    
    func TestIPConnRemoteName(t *testing.T) {
    	network := "ip:tcp"
    	if !testableNetwork(network) {
    		t.Skipf("skipping %s test", network)
    	}
    
    	raddr := &IPAddr{IP: IPv4(127, 0, 0, 1).To4()}
    	c, err := DialIP(network, &IPAddr{IP: IPv4(127, 0, 0, 1)}, raddr)
    	if testenv.SyscallIsNotSupported(err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. src/encoding/gob/example_test.go

    	// Initialize the encoder and decoder. Normally enc and dec would be
    	// bound to network connections and the encoder and decoder would
    	// run in different processes.
    	var network bytes.Buffer        // Stand-in for a network connection
    	enc := gob.NewEncoder(&network) // Will write to network.
    	dec := gob.NewDecoder(&network) // Will read from network.
    
    	// Encode (send) some values.
    	err := enc.Encode(P{3, 4, 5, "Pythagoras"})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  7. releasenotes/notes/27049.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    releaseNotes:
    - |
      **Improved** multi-network configuration so that labeling a service with `topology.istio.io/network=network-name` can
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 09 20:36:11 UTC 2020
    - 360 bytes
    - Viewed (0)
  8. container-tests/src/test/java/okhttp3/containers/SocksProxyTest.kt

    import org.testcontainers.containers.MockServerContainer
    import org.testcontainers.containers.Network
    import org.testcontainers.junit.jupiter.Container
    import org.testcontainers.junit.jupiter.Testcontainers
    import org.testcontainers.utility.DockerImageName
    
    @Testcontainers
    class SocksProxyTest {
      val network: Network = Network.newNetwork()
    
      @Container
      val mockServer: MockServerContainer =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/registry/core/rangeallocation/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-network-approvers
    reviewers:
      - sig-network-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 01:20:16 UTC 2023
    - 149 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/envoyfilter/envoyfilter.go

    		}
    
    		// check each operation type
    		if patch.Patch.Operation == network.EnvoyFilter_Patch_ADD {
    			// the ADD operation is an absolute operation but provide a warning
    			// indicating that the operation will be ignored when applyTo is set to ROUTE_CONFIGURATION,
    			// or HTTP_ROUTE
    			if patch.ApplyTo == network.EnvoyFilter_ROUTE_CONFIGURATION || patch.ApplyTo == network.EnvoyFilter_HTTP_ROUTE {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top