Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 361 for resps (0.16 sec)

  1. src/net/http/doc.go

    [Get], [Head], [Post], and [PostForm] make HTTP (or HTTPS) requests:
    
    	resp, err := http.Get("http://example.com/")
    	...
    	resp, err := http.Post("http://example.com/upload", "image/jpeg", &buf)
    	...
    	resp, err := http.PostForm("http://example.com/form",
    		url.Values{"key": {"Value"}, "id": {"123"}})
    
    The caller must close the response body when finished with it:
    
    	resp, err := http.Get("http://example.com/")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. samples/jwt-server/src/main_test.go

    	if err != nil {
    		t.Fatalf(err.Error())
    	}
    	resp, err := httpClient.Do(httpReq)
    	if err != nil {
    		t.Fatalf(err.Error())
    	}
    	defer resp.Body.Close()
    	if resp.StatusCode != http.StatusOK {
    		t.Fatalf("Expected to get %d, got %d", http.StatusOK, resp.StatusCode)
    	}
    }
    
    func TestJwtHTTPSServer(t *testing.T) {
    	var (
    		serverKey  = "../testdata/server.key"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 23 16:58:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/helper_test.go

    			FieldSelector: "xyz=zyx",
    		},
    	}
    
    	resp := &http.Response{
    		StatusCode: http.StatusOK,
    		Header:     header(),
    		Body: objBody(&corev1.PodList{
    			Items: []corev1.Pod{{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    			},
    			},
    		}),
    	}
    	client := &fake.RESTClient{
    		NegotiatedSerializer: scheme.Codecs,
    		Resp:                 resp,
    		Err:                  nil,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  4. src/net/rpc/jsonrpc/all_test.go

    		var resp ArithAddResp
    		err := dec.Decode(&resp)
    		if err != nil {
    			t.Fatalf("Decode: %s", err)
    		}
    		if resp.Error != nil {
    			t.Fatalf("resp.Error: %s", resp.Error)
    		}
    		if resp.Id.(string) != string(rune(i)) {
    			t.Fatalf("resp: bad id %q want %q", resp.Id.(string), string(rune(i)))
    		}
    		if resp.Result.C != 2*i+1 {
    			t.Fatalf("resp: bad result: %d+%d=%d", i, i+1, resp.Result.C)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:09:53 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. internal/rest/client.go

    	// For errors we make sure to dump response body as well.
    	if resp.StatusCode != http.StatusOK &&
    		resp.StatusCode != http.StatusPartialContent &&
    		resp.StatusCode != http.StatusNoContent {
    		respTrace, err = httputil.DumpResponse(resp, true)
    		if err != nil {
    			return
    		}
    	} else {
    		respTrace, err = httputil.DumpResponse(resp, false)
    		if err != nil {
    			return
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/authenticator/audagnostic_test.go

    						ctx := context.Background()
    						ctx = WithAudiences(ctx, taudcfg.auds)
    						resp, ok, err := authenticate(ctx, taudcfg.implicitAuds, func() (*Response, bool, error) {
    							if treq.resp != nil {
    								resp := *treq.resp
    								return &resp, treq.authenticated, treq.err
    							}
    							return nil, treq.authenticated, treq.err
    						})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/net/http/response.go

    	}
    	if resp.ProtoMajor, resp.ProtoMinor, ok = ParseHTTPVersion(resp.Proto); !ok {
    		return nil, badStringError("malformed HTTP version", resp.Proto)
    	}
    
    	// Parse the response headers.
    	mimeHeader, err := tp.ReadMIMEHeader()
    	if err != nil {
    		if err == io.EOF {
    			err = io.ErrUnexpectedEOF
    		}
    		return nil, err
    	}
    	resp.Header = Header(mimeHeader)
    
    	fixPragmaCacheControl(resp.Header)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/graceful_shutdown_test.go

    			wg.Done()
    		}()
    
    		// act
    		resp, err := client.Get(fmt.Sprintf("https://127.0.0.1:%d", backendServer.Listener.Addr().(*net.TCPAddr).Port))
    		if err != nil {
    			t.Errorf("%v", err)
    			return
    		}
    
    		// validate
    		defer resp.Body.Close()
    		_, err = io.ReadAll(resp.Body)
    		if err != nil {
    			t.Errorf("%v", err)
    		}
    		if resp.StatusCode != 200 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java

      int length;
    
      private String originalString;
    
      @BeforeExperiment
      void setUp() {
        originalString = Strings.repeat("x", length);
      }
    
      @Benchmark
      void oldRepeat(long reps) {
        for (int i = 0; i < reps; i++) {
          String x = oldRepeat(originalString, count);
          if (x.length() != (originalString.length() * count)) {
            throw new RuntimeException("Wrong length: " + x);
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 17 20:24:24 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  10. src/net/http/client.go

    		// here to ensure that it is non-nil.
    		if resp.ContentLength > 0 && req.Method != "HEAD" {
    			return nil, didTimeout, fmt.Errorf("http: RoundTripper implementation (%T) returned a *Response with content length %d but a nil Body", rt, resp.ContentLength)
    		}
    		resp.Body = io.NopCloser(strings.NewReader(""))
    	}
    	if !deadline.IsZero() {
    		resp.Body = &cancelTimerBody{
    			stop:          stopTimer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top