Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ServeMux (0.29 sec)

  1. doc/next/6-stdlib/99-minor/net/http/64910.md

    The patterns used by [ServeMux] allow multiple spaces matching
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 80 bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/healthServer.go

    	router := http.NewServeMux()
    	installReady, watchReady = initRouter(router)
    
    	go func() {
    		_ = http.ListenAndServe(":"+constants.ReadinessPort, router)
    	}()
    
    	return
    }
    
    func initRouter(router *http.ServeMux) (installReady *atomic.Value, watchReady *atomic.Value) {
    	installReady = &atomic.Value{}
    	watchReady = &atomic.Value{}
    	installReady.Store(false)
    	watchReady.Store(false)
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 15 01:29:35 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  3. doc/godebug.md

    This behavior is controlled by the `httplaxcontentlength` setting.
    
    Go 1.22 changed the behavior of ServeMux to accept extended
    patterns and unescape both patterns and request paths by segment.
    This behavior can be controlled by the
    [`httpmuxgo121` setting](/pkg/net/http/#ServeMux).
    
    Go 1.22 added the [Alias type](/pkg/go/types#Alias) to [go/types](/pkg/go/types)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  4. doc/go1.22.html

    <h3 id="enhanced_routing_patterns">Enhanced routing patterns</h3>
    
    <p><!-- https://go.dev/issue/61410 -->
      HTTP routing in the standard library is now more expressive.
      The patterns used by <a href="/pkg/net/http#ServeMux"><code>net/http.ServeMux</code></a> have been enhanced to accept methods and wildcards.
    </p>
    
    <p>
      Registering a handler with a method, like <code>"POST /items/create"</code>, restricts
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.6.md

    * genericapiserver: extract CA cert from server cert and SNI cert chains ([#39022](https://github.com/kubernetes/kubernetes/pull/39022), [@sttts](https://github.com/sttts))
    * genericapiserver: turn APIContainer.SecretRoutes into a real ServeMux ([#38826](https://github.com/kubernetes/kubernetes/pull/38826), [@sttts](https://github.com/sttts))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 304K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg net/http, method (*Response) ProtoAtLeast(int, int) bool
    pkg net/http, method (*Response) Write(io.Writer) error
    pkg net/http, method (*ServeMux) Handle(string, Handler)
    pkg net/http, method (*ServeMux) HandleFunc(string, func(ResponseWriter, *Request))
    pkg net/http, method (*ServeMux) ServeHTTP(ResponseWriter, *Request)
    pkg net/http, method (*Server) ListenAndServe() error
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. api/go1.1.txt

    pkg net/http, const TimeFormat = "Mon, 02 Jan 2006 15:04:05 GMT"
    pkg net/http, func ParseTime(string) (time.Time, error)
    pkg net/http, method (*Request) PostFormValue(string) string
    pkg net/http, method (*ServeMux) Handler(*Request) (Handler, string)
    pkg net/http, method (*Transport) CancelRequest(*Request)
    pkg net/http, type CloseNotifier interface { CloseNotify }
    pkg net/http, type CloseNotifier interface, CloseNotify() <-chan bool
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top