Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tURL (0.03 sec)

  1. src/html/template/transition.go

    	stateAfterName:      tAfterName,
    	stateBeforeValue:    tBeforeValue,
    	stateHTMLCmt:        tHTMLCmt,
    	stateRCDATA:         tSpecialTagEnd,
    	stateAttr:           tAttr,
    	stateURL:            tURL,
    	stateSrcset:         tURL,
    	stateJS:             tJS,
    	stateJSDqStr:        tJSDelimited,
    	stateJSSqStr:        tJSDelimited,
    	stateJSRegexp:       tJSDelimited,
    	stateJSTmplLit:      tJSTmpl,
    	stateJSBlockCmt:     tBlockCmt,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    	for _, e := range serveMuxRegister {
    		mux.Handle(e.pattern, e.h)
    	}
    
    	for _, tt := range serveMuxTests2 {
    		tries := 1 // expect at most 1 redirection if redirOk is true.
    		turl := tt.url
    		for {
    			u, e := url.Parse(turl)
    			if e != nil {
    				t.Fatal(e)
    			}
    			r := &Request{
    				Method: tt.method,
    				Host:   tt.host,
    				URL:    u,
    			}
    			h, _ := mux.Handler(r)
    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