Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 416 (0.02 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. hack/tools/go.sum

    github.com/tenntenn/text/transform v0.0.0-20200319021203-7eef512accb3/go.mod h1:ON8b8w4BN/kE1EOhwT0o+d62W65a6aPw1nouo9LMgyY=
    github.com/tetafro/godot v1.4.16 h1:4ChfhveiNLk4NveAZ9Pu2AN8QZ2nkUGFuadM9lrr5D0=
    github.com/tetafro/godot v1.4.16/go.mod h1:2oVxTBSftRTh4+MVfUaUXR6bn2GDXCaMcOG4Dk3rfio=
    github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966 h1:quvGphlmUVU+nhpFa4gg4yJyTRJ13reZMDHrKwYw53M=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top