Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for httpClient (0.34 sec)

  1. samples/bookinfo/src/productpage/productpage.py

    # You will see the REQUEST, including HEADERS and DATA, and RESPONSE with HEADERS but without DATA.
    # The only thing missing will be the response.body which is not logged.
    import http.client as http_client
    http_client.HTTPConnection.debuglevel = 0
    
    app = Flask(__name__)
    FlaskInstrumentor().instrument_app(app)
    logging.basicConfig(stream=sys.stdout, level=logging.INFO)
    requests_log = logging.getLogger("requests.packages.urllib3")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    	return t.DialTLS != nil || t.DialTLSContext != nil
    }
    
    var http2client = godebug.New("http2client")
    
    // onceSetNextProtoDefaults initializes TLSNextProto.
    // It must be called via t.nextProtoOnce.Do.
    func (t *Transport) onceSetNextProtoDefaults() {
    	t.tlsNextProtoWasNil = (t.TLSNextProto == nil)
    	if http2client.Value() == "0" {
    		http2client.IncNonDefault()
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top