Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for accept4 (0.15 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. okhttp/src/test/java/okhttp3/CacheTest.kt

            .body("A")
            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .body("B")
            .build(),
        )
        val url = server.url("/")
        val request =
          Request.Builder()
            .url(url)
            .header("Accept-Language", "fr-CA")
            .header("Accept-Charset", "UTF-8")
            .header("Accept-Encoding", "identity")
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  3. 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)
  4. okhttp/src/test/java/okhttp3/CallTest.kt

          .assertHeader("Donut", "a")
          .assertHeader("ETag", "v1")
          .assertRequestUrl(server.url("/"))
          .assertRequestHeader("Accept-Language") // No Vary on Accept-Language.
          .assertRequestHeader("Accept-Charset", "UTF-8") // Because of Vary on Accept-Charset.
          .assertRequestHeader("If-None-Match") // This wasn't present in the original request.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/proxy/ipvs/proxier_test.go

    			{JumpChain: string(kubeMarkMasqChain), MatchSet: kubeExternalIPSet},
    			{JumpChain: "ACCEPT", MatchSet: kubeExternalIPSet}, // With externalTrafficOnlyArgs
    			{JumpChain: "ACCEPT", MatchSet: kubeExternalIPSet}, // With dstLocalOnlyArgs
    			{JumpChain: string(kubeNodePortChain), MatchSet: ""},
    			{JumpChain: "ACCEPT", MatchSet: kubeClusterIPSet},
    			{JumpChain: "ACCEPT", MatchSet: kubeLoadBalancerSet},
    		},
    	}
    	checkIptables(t, ipt, epIpt)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  9. 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)
  10. pkg/apis/admissionregistration/validation/validation_test.go

    					Path:      strPtr("foo/"),
    					Port:      443,
    				},
    			},
    		},
    		}, true),
    		expectedError: `clientConfig.service.path: Invalid value: "foo/": must start with a '/'`,
    	}, {
    		name: "path accepts slash",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name: "webhook.k8s.io",
    			ClientConfig: admissionregistration.WebhookClientConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
Back to top