Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for withFts (0.17 sec)

  1. docs/en/data/external_links.yml

    flying Software Circus: Intro to FastAPI' - author: Sebastián Ramírez (tiangolo) author_link: https://twitter.com/tiangolo link: https://www.youtube.com/watch?v=z9K5pwb0rt8 title: 'PyConBY 2020: Serve ML models easily with FastAPI' - author: Chris Withers author_link: https://twitter.com/chriswithers13 link: https://www.youtube.com/watch?v=3DLwPcrE5mA title: 'PyCon UK 2019: FastAPI from the ground up'...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/config.go

    		handler = genericfilters.WithProbabilisticGoaway(handler, c.GoawayChance)
    	}
    	handler = genericapifilters.WithCacheControl(handler)
    	handler = genericfilters.WithHSTS(handler, c.HSTSDirectives)
    	if c.ShutdownSendRetryAfter {
    		handler = genericfilters.WithRetryAfter(handler, c.lifecycleSignals.NotAcceptingNewRequest.Signaled())
    	}
    	handler = genericfilters.WithHTTPLogging(handler)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  3. src/net/http/client_test.go

    	body := issue18239Body{&readCallsAtomic, &closeCallsAtomic, someErr}
    
    	req, err := NewRequest("POST", ts.URL, body)
    	if err != nil {
    		t.Fatal(err)
    	}
    	req = req.WithT(t)
    	_, err = tr.RoundTrip(req)
    	if err != someErr {
    		t.Errorf("Got error: %v; want Request.Body read error: %v", err, someErr)
    	}
    
    	// And verify that our Body wasn't used multiple times, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    			default:
    			}
    			pc.cancelRequest(context.Cause(req.ctx))
    		}
    	}
    }
    
    // tLogKey is a context WithValue key for test debugging contexts containing
    // a t.Logf func. See export_test.go's Request.WithT method.
    type tLogKey struct{}
    
    func (tr *transportRequest) logf(format string, args ...any) {
    	if logf, ok := tr.Request.Context().Value(tLogKey{}).(func(string, ...any)); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    		}{
    			{path: "/fast"},
    			{path: "/slow", wantTimeout: true},
    			{path: "/fast"},
    		}
    		for i, tt := range tests {
    			req, _ := NewRequest("GET", ts.URL+tt.path, nil)
    			req = req.WithT(t)
    			res, err := c.Do(req)
    			<-inHandler
    			if err != nil {
    				uerr, ok := err.(*url.Error)
    				if !ok {
    					t.Errorf("error is not a url.Error; got: %#v", err)
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top