Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 129 for dialFn (0.13 sec)

  1. src/main/resources/fess_indices/fess/id/stopwords.txt

    buat
    bukan
    bukankah
    bukanlah
    bukannya
    cuma
    percuma
    dahulu
    dalam
    dan
    dapat
    dari
    daripada
    dekat
    demi
    demikian
    demikianlah
    sedemikian
    dengan
    depan
    di
    dia
    dialah
    dini
    diri
    dirinya
    terdiri
    dong
    dulu
    enggak
    enggaknya
    entah
    entahlah
    terhadap
    terhadapnya
    hal
    hampir
    hanya
    hanyalah
    harus
    haruslah
    harusnya
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/security_windows.go

    }
    
    const SE_GROUP_INTEGRITY = 0x00000020
    
    type TokenType uint32
    
    const (
    	TokenPrimary       TokenType = 1
    	TokenImpersonation TokenType = 2
    )
    
    //sys	GetProfilesDirectory(dir *uint16, dirLen *uint32) (err error) = userenv.GetProfilesDirectoryW
    
    const (
    	LG_INCLUDE_INDIRECT  = 0x1
    	MAX_PREFERRED_LENGTH = 0xFFFFFFFF
    )
    
    type LocalGroupUserInfo0 struct {
    	Name *uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. docs/id/docs/tutorial/index.md

    Ini juga dibangun untuk digunakan sebagai referensi yang akan datang.
    
    Sehingga kamu dapat kembali lagi dan mencari apa yang kamu butuhkan dengan tepat.
    
    ## Jalankan kode
    
    Semua blok-blok kode dapat disalin dan digunakan langsung (Mereka semua sebenarnya adalah file python yang sudah teruji).
    
    Untuk menjalankan setiap contoh, salin kode ke file `main.py`, dan jalankan `uvicorn` dengan:
    
    <div class="termy">
    
    ```console
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pkg/kube/portforwarder.go

    	if err != nil {
    		return nil, fmt.Errorf("failure creating roundtripper: %v", err)
    	}
    
    	dialer := spdy.NewDialer(upgrader, &http.Client{Transport: roundTripper}, http.MethodPost, serverURL)
    
    	fw, err := portforward.NewOnAddresses(dialer,
    		[]string{f.localAddress},
    		[]string{fmt.Sprintf("%d:%d", f.localPort, f.podPort)},
    		f.stopCh,
    		readyCh,
    		io.Discard,
    		os.Stderr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 02:12:37 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. src/net/http/httptrace/trace.go

    	// ConnectStart is called when a new connection's Dial begins.
    	// If net.Dialer.DualStack (IPv6 "Happy Eyeballs") support is
    	// enabled, this may be called multiple times.
    	ConnectStart func(network, addr string)
    
    	// ConnectDone is called when a new connection's Dial
    	// completes. The provided err indicates whether the
    	// connection completed successfully.
    	// If net.Dialer.DualStack ("Happy Eyeballs") support is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/net/http/httputil/dump.go

    	// custom dialer that returns a fake net.Conn that waits
    	// for the full input (and recording it), and then responds
    	// with a dummy response.
    	var buf bytes.Buffer // records the output
    	pr, pw := io.Pipe()
    	defer pr.Close()
    	defer pw.Close()
    	dr := &delegateReader{c: make(chan io.Reader)}
    
    	t := &http.Transport{
    		Dial: func(net, addr string) (net.Conn, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. pkg/hbone/dialer_test.go

    	timeout := 500 * time.Millisecond
    	d := NewDialer(Config{
    		ProxyAddress: "127.0.0.10:1", // Random address that should fail to dial
    		Headers: map[string][]string{
    			"some-addition-metadata": {"test-value"},
    		},
    		TLS:     nil, // No TLS for simplification
    		Timeout: &timeout,
    	})
    
    	_, err := d.Dial("tcp", "fake")
    	if err == nil {
    		t.Fatal("expected error, got none.")
    	}
    }
    
    func TestDialer(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 26 23:44:52 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. src/net/textproto/textproto.go

    	}
    }
    
    // Close closes the connection.
    func (c *Conn) Close() error {
    	return c.conn.Close()
    }
    
    // Dial connects to the given address on the given network using [net.Dial]
    // and then returns a new [Conn] for the connection.
    func Dial(network, addr string) (*Conn, error) {
    	c, err := net.Dial(network, addr)
    	if err != nil {
    		return nil, err
    	}
    	return NewConn(c), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/plugin/v1beta1/client.go

    }
    
    func (c *client) API() api.DevicePluginClient {
    	return c.client
    }
    
    func (c *client) SocketPath() string {
    	return c.socket
    }
    
    // dial establishes the gRPC communication with the registered device plugin. https://godoc.org/google.golang.org/grpc#Dial
    func dial(unixSocketPath string) (api.DevicePluginClient, *grpc.ClientConn, error) {
    	ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
    	defer cancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:35:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. test/stress/runstress.go

    	if *v {
    		log.Println(a...)
    	}
    }
    
    func dialStress(a net.Addr) {
    	for {
    		d := net.Dialer{Timeout: time.Duration(rand.Intn(1e9))}
    		c, err := d.Dial("tcp", a.String())
    		if err == nil {
    			Println("did dial")
    			go func() {
    				time.Sleep(time.Duration(rand.Intn(500)) * time.Millisecond)
    				c.Close()
    				Println("closed dial")
    			}()
    		}
    		// Don't run out of ephemeral ports too quickly:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top