Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 180 for Freq (4.2 sec)

  1. src/net/http/clientserver_test.go

    	for i, tt := range tests {
    		res, err := cst.c.Do(tt.req)
    		if err != nil {
    			t.Errorf("%d. RoundTrip = %v", i, err)
    			continue
    		}
    		res.Body.Close()
    		req := <-gotc
    		if req.Method != "CONNECT" {
    			t.Errorf("method = %q; want CONNECT", req.Method)
    		}
    		if req.Host != tt.want {
    			t.Errorf("Host = %q; want %q", req.Host, tt.want)
    		}
    		if req.URL.Host != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads.go

    func (s *DiscoveryServer) processRequest(req *discovery.DiscoveryRequest, con *Connection) error {
    	stype := v3.GetShortType(req.TypeUrl)
    	log.Debugf("ADS:%s: REQ %s resources:%d nonce:%s version:%s ", stype,
    		con.ID(), len(req.ResourceNames), req.ResponseNonce, req.VersionInfo)
    	if req.TypeUrl == v3.HealthInfoType {
    		s.handleWorkloadHealthcheck(con.proxy, req)
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/net/http/readrequest_test.go

    		tt := &reqTests[i]
    		req, err := ReadRequest(bufio.NewReader(strings.NewReader(tt.Raw)))
    		if err != nil {
    			if err.Error() != tt.Error {
    				t.Errorf("#%d: error %q, want error %q", i, err.Error(), tt.Error)
    			}
    			continue
    		}
    		rbody := req.Body
    		req.Body = nil
    		testName := fmt.Sprintf("Test %d (%q)", i, tt.Raw)
    		diff(t, testName, req, tt.Req)
    		var bout strings.Builder
    		if rbody != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pilot/pkg/xds/discovery.go

    	if !req.Full {
    		req.Push = s.globalPushContext()
    		s.dropCacheForRequest(req)
    		s.AdsPushAll(req)
    		return
    	}
    	// Reset the status during the push.
    	oldPushContext := s.globalPushContext()
    	if oldPushContext != nil {
    		oldPushContext.OnConfigChange()
    		// Push the previous push Envoy metrics.
    		envoyfilter.RecordMetrics()
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds.go

    	if !edsNeedsPush(req.ConfigsUpdated) {
    		return nil, model.DefaultXdsLogDetails, nil
    	}
    	resources, logDetails := eds.buildEndpoints(proxy, req, w)
    	return resources, logDetails, nil
    }
    
    func (eds *EdsGenerator) GenerateDeltas(proxy *model.Proxy, req *model.PushRequest,
    	w *model.WatchedResource,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. internal/logger/logger.go

    			logKind = ek
    		}
    	}
    
    	req := GetReqInfo(ctx)
    	if req == nil {
    		req = &ReqInfo{
    			API:       "SYSTEM",
    			RequestID: fmt.Sprintf("%X", time.Now().UTC().UnixNano()),
    		}
    	}
    	req.RLock()
    	defer req.RUnlock()
    
    	API := "SYSTEM"
    	switch {
    	case req.API != "":
    		API = req.API
    	case subsystem != "":
    		API += "." + subsystem
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	legend := report.ProfileLabels(rpt)
    	ui.render(w, req, "plaintext", rpt, errList, legend, webArgs{
    		TextBody: out.String(),
    	})
    
    }
    
    // source generates a web page containing source code annotated with profile
    // data.
    func (ui *webInterface) source(w http.ResponseWriter, req *http.Request) {
    	args := []string{"weblist", req.URL.Query().Get("f")}
    	rpt, errList := ui.makeReport(w, req, args, nil)
    	if rpt == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy.go

    	director := func(req *http.Request) {
    		rewriteRequestURL(req, target)
    	}
    	return &ReverseProxy{Director: director}
    }
    
    func rewriteRequestURL(req *http.Request, target *url.URL) {
    	targetQuery := target.RawQuery
    	req.URL.Scheme = target.Scheme
    	req.URL.Host = target.Host
    	req.URL.Path, req.URL.RawPath = joinURLPath(target, req.URL)
    	if targetQuery == "" || req.URL.RawQuery == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. cmd/generic-handlers.go

    // like healthCheck request
    func guessIsHealthCheckReq(req *http.Request) bool {
    	if req == nil {
    		return false
    	}
    	aType := getRequestAuthType(req)
    	return aType == authTypeAnonymous && (req.Method == http.MethodGet || req.Method == http.MethodHead) &&
    		(req.URL.Path == healthCheckPathPrefix+healthCheckLivenessPath ||
    			req.URL.Path == healthCheckPathPrefix+healthCheckReadinessPath ||
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    				for i := range j.MatchExpressions {
    					req := metav1.LabelSelectorRequirement{}
    					c.Fuzz(&req)
    					req.Key = randomLabelKey(c)
    					req.Operator = validOperators[c.Rand.Intn(len(validOperators))]
    					if req.Operator == metav1.LabelSelectorOpIn || req.Operator == metav1.LabelSelectorOpNotIn {
    						if len(req.Values) == 0 {
    							// we must have some values here, so randomly choose a short length
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top