Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WEB (0.03 sec)

  1. pkg/config/validation/validation.go

    	}
    	if protocol.Parse(port.Protocol) == protocol.Unsupported {
    		errs = AppendValidation(errs, fmt.Errorf("invalid protocol %q, supported protocols are HTTP, HTTP2, GRPC, GRPC-WEB, MONGO, REDIS, MYSQL, TCP", port.Protocol))
    	}
    	if port.Number > 0 || !strings.HasPrefix(bind, UnixAddressPrefix) {
    		errs = AppendValidation(errs, agent.ValidatePort(int(port.Number)))
    	}
    	// nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // placed in the main GOPATH, never in a vendor subtree.
    //
    // See https://golang.org/s/go15vendor for details.
    //
    // # Module proxy protocol
    //
    // A Go module proxy is any web server that can respond to GET requests for
    // URLs of a specified form. The requests have no query parameters, so even
    // a site serving from a fixed file system (including a file:/// URL)
    // can be a module proxy.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    //
    // For use like:
    //
    //	$ go test -c
    //	$ ./http.test -test.run='^$' -test.bench='^BenchmarkServer$' -test.benchtime=15s -test.cpuprofile=http.prof
    //	$ go tool pprof http.test http.prof
    //	(pprof) web
    func BenchmarkServer(b *testing.B) {
    	b.ReportAllocs()
    	// Child process mode;
    	if url := os.Getenv("TEST_BENCH_SERVER_URL"); url != "" {
    		n, err := strconv.Atoi(os.Getenv("TEST_BENCH_CLIENT_N"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top