Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for ACCEPT (0.13 sec)

  1. src/net/http/server.go

    		if baseCtx == nil {
    			panic("BaseContext returned a nil context")
    		}
    	}
    
    	var tempDelay time.Duration // how long to sleep on accept failure
    
    	ctx := context.WithValue(baseCtx, ServerContextKey, srv)
    	for {
    		rw, err := l.Accept()
    		if err != nil {
    			if srv.shuttingDown() {
    				return ErrServerClosed
    			}
    			if ne, ok := err.(net.Error); ok && ne.Temporary() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    		templateVars: func(src echo.Callers, dests echo.Instances) map[string]any {
    			// Test all cipher suites, including a fake one. Envoy should accept all of the ones on the "valid" list,
    			// and control plane should filter our invalid one.
    
    			params := templateParams(protocol.HTTPS, src, dests, append(sets.SortedList(security.ValidCipherSuites), "fake"), ports.HTTP.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. src/cmd/trace/testdata/go122.test

    String id=106
    	data="runtime.gcStart"
    String id=107
    	data="runtime.gcBgMarkWorker"
    String id=108
    	data="internal/poll.(*FD).Accept"
    String id=109
    	data="net.(*netFD).accept"
    String id=110
    	data="net.(*TCPListener).accept"
    String id=111
    	data="net.(*TCPListener).Accept"
    String id=112
    	data="/usr/local/google/home/mknyszek/work/go-1/src/net/tcpsock.go"
    String id=113
    	data="main.main.func2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    	// set up a listener that hangs connections
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	assert.NoError(t, err)
    	defer ln.Close()
    	go func() {
    		// accept connections and just let them hang
    		for {
    			_, err := ln.Accept()
    			if err != nil {
    				t.Log(err)
    				return
    			}
    			t.Log("accepted connection")
    			atomic.AddInt64(&attempts, 1)
    		}
    	}()
    
    	config := &rest.Config{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"ab":                                   "\U0001f18e",
    	"abacus":                               "\U0001f9ee",
    	"abc":                                  "\U0001f524",
    	"abcd":                                 "\U0001f521",
    	"accept":                               "\U0001f251",
    	"accordion":                            "\U0001fa97",
    	"adhesive_bandage":                     "\U0001fa79",
    	"adult":                                "\U0001f9d1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       */
      public interface ValueAndCloserConsumer<V extends @Nullable Object> {
    
        /** Accepts a {@link ValueAndCloser} for the last step in a {@link ClosingFuture} pipeline. */
        void accept(ValueAndCloser<V> valueAndCloser);
      }
    
      /**
       * Starts a {@link ClosingFuture} pipeline by submitting a callable block to an executor.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       */
      @FunctionalInterface
      public interface ValueAndCloserConsumer<V extends @Nullable Object> {
    
        /** Accepts a {@link ValueAndCloser} for the last step in a {@link ClosingFuture} pipeline. */
        void accept(ValueAndCloser<V> valueAndCloser);
      }
    
      /**
       * Starts a {@link ClosingFuture} pipeline by submitting a callable block to an executor.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy cluster-ips-check ip daddr { 172.30.0.0/16 } drop comment "Drop traffic to unallocated ClusterIPs"
    
    		add set ip kube-proxy nodeport-ips { type ipv4_addr ; comment "IPs that accept NodePort traffic" ; }
    		add map ip kube-proxy firewall-ips { type ipv4_addr . inet_proto . inet_service : verdict ; comment "destinations that are subject to LoadBalancerSourceRanges" ; }
    		add chain ip kube-proxy firewall-check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    // GNU binutils flagfile specifiers, sometimes called "response files").
    // To be conservative, we reject almost any arg beginning with non-alphanumeric ASCII.
    // We accept leading . _ and / as likely in file system paths.
    // There is a copy of this function in cmd/compile/internal/gc/noder.go.
    func SafeArg(name string) bool {
    	if name == "" {
    		return false
    	}
    	c := name[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //		The TOOLEXEC_IMPORTPATH environment variable will be set,
    //		matching 'go list -f {{.ImportPath}}' for the package being built.
    //
    // The -asmflags, -gccgoflags, -gcflags, and -ldflags flags accept a
    // space-separated list of arguments to pass to an underlying tool
    // during the build. To embed spaces in an element in the list, surround
    // it with either single or double quotes. The argument list may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top