Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for accept4 (0.23 sec)

  1. 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)
  2. src/net/http/transport_test.go

    	ts := newClientServerTest(t, mode, HandlerFunc(func(rw ResponseWriter, req *Request) {
    		accept := req.Header.Get("Accept-Encoding")
    		if expect := req.FormValue("expect_accept"); accept != expect {
    			t.Errorf("in handler, test %v: Accept-Encoding = %q, want %q",
    				req.FormValue("testnum"), accept, expect)
    		}
    		if accept == "gzip" {
    			rw.Header().Set("Content-Encoding", "gzip")
    			gz := gzip.NewWriter(rw)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

      # We need to add rules to accept all TCP/UDP/ICMP/SCTP packets.
      if iptables -w -L INPUT | grep "Chain INPUT (policy DROP)" > /dev/null; then
        echo "Add rules to accept all inbound TCP/UDP/ICMP packets"
        iptables -w -A INPUT -w -p TCP -j ACCEPT
        iptables -w -A INPUT -w -p UDP -j ACCEPT
        iptables -w -A INPUT -w -p ICMP -j ACCEPT
        iptables -w -A INPUT -w -p SCTP -j ACCEPT
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    	b.ReportAllocs()
    	req := reqBytes(`GET / HTTP/1.0
    Host: golang.org
    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17
    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-US,en;q=0.8
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
    `)
    	res := []byte("Hello world!\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/go/alldocs.go

    // followed by a one-line summary of each of the first-level items "under"
    // that item (package-level declarations for a package, methods for a type,
    // etc.).
    //
    // Doc accepts zero, one, or two arguments.
    //
    // Given no arguments, that is, when run as
    //
    //	go doc
    //
    // it prints the package documentation for the package in the current directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      return %1 : tensor<1x2x!quant.uniform<i8:f32, 4.000000e+04:127>>
    }
    // CHECK-SAME: %[[ARG_0:.+]]: tensor<1x3x!quant.uniform<i8:f32, 5.000000e+05:-100>>
    // Weight tensor is transposed, as tfl.fully_connected accepts a [o, i] matrix.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  9. src/crypto/x509/verify_test.go

    		dnsName:     "notfoo.example",
    		systemSkip:  true, // does not chain to a system root
    
    		errorCallback: expectHostnameError("certificate is valid for"),
    	},
    	{
    		// An X.509 v1 certificate should not be accepted as an
    		// intermediate.
    		name:          "X509v1Intermediate",
    		leaf:          x509v1TestLeaf,
    		intermediates: []string{x509v1TestIntermediate},
    		roots:         []string{x509v1TestRoot},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procWriteProcessMemory                                   = modkernel32.NewProc("WriteProcessMemory")
    	procAcceptEx                                             = modmswsock.NewProc("AcceptEx")
    	procGetAcceptExSockaddrs                                 = modmswsock.NewProc("GetAcceptExSockaddrs")
    	procTransmitFile                                         = modmswsock.NewProc("TransmitFile")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top