Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for dialFn (0.32 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	ServerList []string
    	// TLS credentials
    	KeyFile       string
    	CertFile      string
    	TrustedCAFile string
    	// function to determine the egress dialer. (i.e. konnectivity server dialer)
    	EgressLookup egressselector.Lookup
    	// The TracerProvider can add tracing the connection
    	TracerProvider oteltrace.TracerProvider
    }
    
    // Config is configuration for creating a storage backend.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/net/unixsock_posix.go

    	ctrlCtxFn := sd.Dialer.ControlContext
    	if ctrlCtxFn == nil && sd.Dialer.Control != nil {
    		ctrlCtxFn = func(ctx context.Context, network, address string, c syscall.RawConn) error {
    			return sd.Dialer.Control(network, address, c)
    		}
    	}
    	fd, err := unixSocket(ctx, sd.network, laddr, raddr, "dial", ctrlCtxFn)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/net/udpsock_posix.go

    	ctrlCtxFn := sd.Dialer.ControlContext
    	if ctrlCtxFn == nil && sd.Dialer.Control != nil {
    		ctrlCtxFn = func(ctx context.Context, network, address string, c syscall.RawConn) error {
    			return sd.Dialer.Control(network, address, c)
    		}
    	}
    	fd, err := internetSocket(ctx, sd.network, laddr, raddr, syscall.SOCK_DGRAM, 0, "dial", ctrlCtxFn)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/net/main_test.go

    	// If external IPv4 connectivity exists, we can try dialing
    	// non-node/interface local scope IPv4 addresses.
    	// On Windows, Lookup APIs may not return IPv4-related
    	// resource records when a node has no external IPv4
    	// connectivity.
    	testIPv4 = flag.Bool("ipv4", true, "assume external IPv4 connectivity exists")
    
    	// If external IPv6 connectivity exists, we can try dialing
    	// non-node/interface local scope IPv6 addresses.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/testprog/stacks.go

    	done1 <- true
    	<-done2
    	select {
    	case c1 <- 0:
    	case c2 <- 0:
    	}
    	mu.Unlock()
    	wg.Done()
    	cv.Signal()
    	c, err := net.Dial("tcp", ln.Addr().String())
    	if err != nil {
    		log.Fatalf("failed to dial: %v", err)
    	}
    	c.Close()
    	var data [1]byte
    	wp.Write(data[:])
    	<-pipeReadDone
    
    	oldGoMaxProcs := runtime.GOMAXPROCS(0)
    	runtime.GOMAXPROCS(oldGoMaxProcs + 1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/trace/testdata/testprog/main.go

    	go func() {
    		c, err := ln.Accept()
    		if err != nil {
    			return
    		}
    		time.Sleep(time.Millisecond)
    		var buf [1]byte
    		c.Write(buf[:])
    		c.Close()
    	}()
    	c, err := net.Dial("tcp", ln.Addr().String())
    	if err != nil {
    		log.Fatalf("dial failed: %v", err)
    	}
    	var tmp [1]byte
    	c.Read(tmp[:])
    	c.Close()
    
    	trace.Stop()
    }
    
    // blockingSyscall blocks the current goroutine for duration d in a syscall and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/testprog/stress-start-stop.go

    			c, err := ln.Accept()
    			if err != nil {
    				return
    			}
    			time.Sleep(time.Millisecond)
    			var buf [1]byte
    			c.Write(buf[:])
    			c.Close()
    		}()
    		c, err := net.Dial("tcp", ln.Addr().String())
    		if err != nil {
    			log.Fatalf("dial failed: %v", err)
    			return
    		}
    		var tmp [1]byte
    		c.Read(tmp[:])
    		c.Close()
    
    		go func() {
    			runtime.Gosched()
    			select {}
    		}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/net/resolverdialfunc_test.go

    // Test that Resolver.Dial can be a func returning an in-memory net.Conn
    // speaking DNS.
    
    package net
    
    import (
    	"bytes"
    	"context"
    	"errors"
    	"fmt"
    	"reflect"
    	"slices"
    	"testing"
    	"time"
    
    	"golang.org/x/net/dns/dnsmessage"
    )
    
    func TestResolverDialFunc(t *testing.T) {
    	r := &Resolver{
    		PreferGo: true,
    		Dial: newResolverDialFunc(&resolverDialHandler{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. pkg/kubelet/util/queue/work_queue_test.go

    	q.Enqueue(types.UID("foo4"), 1*time.Minute)
    	expected := []types.UID{types.UID("foo1"), types.UID("foo2")}
    	compareResults(t, expected, q.GetWork())
    	compareResults(t, []types.UID{}, q.GetWork())
    	// Dial the time to 1 hour ahead.
    	clock.Step(time.Hour)
    	expected = []types.UID{types.UID("foo3"), types.UID("foo4")}
    	compareResults(t, expected, q.GetWork())
    	compareResults(t, []types.UID{}, q.GetWork())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/net/ipsock.go

    	if err != nil {
    		return nil, err
    	}
    	// Issue 18806: if the machine has halfway configured
    	// IPv6 such that it can bind on "::" (IPv6unspecified)
    	// but not connect back to that same address, fall
    	// back to dialing 0.0.0.0.
    	if len(ips) == 1 && ips[0].IP.Equal(IPv6unspecified) {
    		ips = append(ips, IPAddr{IP: IPv4zero})
    	}
    
    	var filter func(IPAddr) bool
    	if net != "" && net[len(net)-1] == '4' {
    		filter = ipv4only
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top