Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 416 (0.04 sec)

  1. src/crypto/tls/handshake_messages.go

    		y = y[3+len(slice):]
    	}
    
    	return x, nil
    }
    
    func (m *certificateMsg) unmarshal(data []byte) bool {
    	if len(data) < 7 {
    		return false
    	}
    
    	certsLen := uint32(data[4])<<16 | uint32(data[5])<<8 | uint32(data[6])
    	if uint32(len(data)) != certsLen+7 {
    		return false
    	}
    
    	numCerts := 0
    	d := data[7:]
    	for certsLen > 0 {
    		if len(d) < 4 {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/net/http/fs_test.go

    	c := ts.Client()
    	res, err := c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	out, _ := io.ReadAll(res.Body)
    	res.Body.Close()
    
    	if g, e := res.StatusCode, 416; g != e {
    		t.Errorf("got status = %d; want %d", g, e)
    	}
    	if g, e := string(out), "invalid range: failed to overlap\n"; g != e {
    		t.Errorf("got body = %q; want %q", g, e)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multimaps.java

       *     }
       * };
       * Multimap<String, String> transformed =
       *     Multimaps.transformValues(multimap, square);
       *   System.out.println(transformed);
       * }</pre>
       *
       * ... prints {@code {a=[4, 16], b=[9, 9], c=[36]}}.
       *
       * <p>Changes in the underlying multimap are reflected in this view. Conversely, this view
       * supports removal operations, and these are reflected in the underlying multimap.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top