1. 18 Feb, 2017 1 commit
  2. 15 Feb, 2017 1 commit
  3. 11 Feb, 2017 1 commit
  4. 09 Feb, 2017 2 commits
  5. 06 Feb, 2017 2 commits
  6. 03 Feb, 2017 1 commit
  7. 01 Feb, 2017 2 commits
  8. 14 Jan, 2017 1 commit
  9. 13 Jan, 2017 3 commits
  10. 10 Jan, 2017 3 commits
  11. 09 Jan, 2017 6 commits
  12. 08 Jan, 2017 1 commit
    • Lucas Bremgartner's avatar
      x/net/bpf: cleanup TestAsmDisasm · da2b4fa2
      Lucas Bremgartner authored
      The "fake" jump conditions as well as the LoadExtension instructions
      are now disassembled correctly. Therefore the workaround to reassemble
      the disassembly is no longer necessary.
      
      This simplification was annonced already in golang/go#18470.
      
      Result of `go test -cover .` stays the same with this simplification.
      
      $ go test -cover golang.org/x/net/bpf
      ok  	golang.org/x/net/bpf	0.495s	coverage: 92.3% of statements
      
      Change-Id: I3f9eb46148287c76059437b773b80c4c99eb5b53
      Reviewed-on: https://go-review.googlesource.com/34951
      Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarMatt Layher <mdlayher@gmail.com>
      da2b4fa2
  13. 07 Jan, 2017 3 commits
  14. 06 Jan, 2017 3 commits
  15. 05 Jan, 2017 1 commit
  16. 02 Jan, 2017 1 commit
    • Meir Fischer's avatar
      http2: remove unnecessary TODO for trailer keys allocation · 69d4b8aa
      Meir Fischer authored
      strings.Join has two allocations:
      (1) []byte intermediate
      (2) final string conversion
      The comma-separated keys are ultimately stored in hpack.HeaderField.Value
      as a string so (2) is not wasteful. Because strings.Join is used so heavily
      I assume its implementation is optimal - (1) is necessary.
      Therefore, short of refactoring hpack.HeaderField's Value type, the status quo
      seems optimal.
      
      This TODO appears to have been copy-pasted from net/http/transfer.go
      However, the two cases are different. transfer.go has two allocations
      in addition to strings.Join: concatenation with literals and converting
      string to bytes in io.WriteString.
      
      Change-Id: I292203a6535dd2774f5bf45e7280b89aabb5d78d
      Reviewed-on: https://go-review.googlesource.com/34626Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      69d4b8aa
  17. 29 Dec, 2016 1 commit
  18. 15 Dec, 2016 7 commits