معرفی شرکت ها


golang-github-hashicorp-go-cleanhttp-dev_0.5.1-1_all.deb


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Functions for accessing "clean" Go http.Client values
ویژگی مقدار
سیستم عامل Linux
توزیع Ubuntu Focal-20.04
مخزن Ubuntu universe all
نام بسته golang-github-hashicorp-go-cleanhttp-dev
نام فایل بسته golang-github-hashicorp-go-cleanhttp-dev_0.5.1-1_all.deb
نسخه بسته 0.5.1
انتشار بسته 1
معماری بسته all
نگهدارنده Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
تاریخ ساخت -
هاست سازنده -
نوع بسته .deb
آدرس صفحه اصلی https://github.com/hashicorp/go-cleanhttp
مجوز -
حجم دانلود 10432
حجم نصب 39
The Go standard library contains a default http.Client called http.DefaultClient. It is a common idiom in Go code to start with http.DefaultClient and tweak it as necessary, and in fact, this is encouraged; from the http package documentation: . The Client's Transport typically has internal state (cached TCP connections), so Clients should be reused instead of created as needed. Clients are safe for concurrent use by multiple goroutines. . Unfortunately, this is a shared value, and it is not uncommon for libraries to assume that they are free to modify it at will. With enough dependencies, it can be very easy to encounter strange problems and race conditions due to manipulation of this shared value across libraries and goroutines (clients are safe for concurrent use, but writing values to the client struct itself is not protected). . Making things worse is the fact that a bare http.Client will use a default http.Transport called http.DefaultTransport, which is another global value that behaves the same way. So it is not simply enough to replace http.DefaultClient with &http.Client{}. . This repository provides some simple functions to get a "clean" http.Client -- one that uses the same default values as the Go standard library, but returns a client that does not share any state with other clients. . This package contains the source.


نیازمندی

مقدار نام
-


نحوه نصب


نصب پکیج deb golang-github-hashicorp-go-cleanhttp-dev:

    sudo apt-get install golang-github-hashicorp-go-cleanhttp-dev_0.5.1-1_all.deb


فایل ها

مسیرها
./usr/share/doc/golang-github-hashicorp-go-cleanhttp-dev/README.md
./usr/share/doc/golang-github-hashicorp-go-cleanhttp-dev/changelog.Debian.gz
./usr/share/doc/golang-github-hashicorp-go-cleanhttp-dev/copyright
./usr/share/gocode/src/github.com/hashicorp/go-cleanhttp/cleanhttp.go
./usr/share/gocode/src/github.com/hashicorp/go-cleanhttp/doc.go
./usr/share/gocode/src/github.com/hashicorp/go-cleanhttp/go.mod
./usr/share/gocode/src/github.com/hashicorp/go-cleanhttp/handlers.go
./usr/share/gocode/src/github.com/hashicorp/go-cleanhttp/handlers_test.go