1. 27 Nov, 2011 3 commits
    • Michael T. Jones's avatar
      math/big: use recursive subdivision for significant speedup · 4c113ffe
      Michael T. Jones authored
      This change adds the second aspect to the conversion code, the
      use of large divisiors (powers of big base) to greatly speed up
      the divsion of large numbers. Speedups of 30x are common in the
      large cases. Also includes new tests and tuning code for the
      key internal parameters.
      
      R=gri
      CC=golang-dev
      https://golang.org/cl/5438058
      4c113ffe
    • Gustav Paul's avatar
      exp/ssh: messages now contain remote channel's id instead of local id · d859d7de
      Gustav Paul authored
      According to http://www.ietf.org/rfc/rfc4254.txt most channel messages contain the channel id of the recipient channel, not the sender id. This allows the recipient connection multiplexer to route the message to the correct channel.
      
      This changeset fixes several messages that incorrectly send the local channel id instead of the remote channel's id.
      
      While sessions were being created and closed in sequence channels in the channel pool were freed and reused on the server side of the connection at the same rate as was done on the client, so the channel local and remote channel ids always corresponded. As soon as I had concurrent sessions on the same clientConn the server started to complain of 'uknown channel id N' where N is the local channel id, which is actually paired with server channel id K.
      
      R=golang-dev, dave, rsc, agl
      CC=golang-dev
      https://golang.org/cl/5433063
      d859d7de
    • Andrew Balholm's avatar
      html: ignore <head> tags in <head> element · 557ba72e
      Andrew Balholm authored
      Pass tests3.dat, test 12:
      <!DOCTYPE html><HTML><META><HEAD></HEAD></HTML>
      
      | <!DOCTYPE html>
      | <html>
      |   <head>
      |     <meta>
      |   <body>
      
      Also pass tests through test 19:
      <!DOCTYPE html><html><head></head><body><ul><li><div><p><li></ul></body></html>
      
      R=nigeltao
      CC=golang-dev
      https://golang.org/cl/5436069
      557ba72e
  2. 26 Nov, 2011 2 commits
  3. 25 Nov, 2011 6 commits
  4. 24 Nov, 2011 6 commits
  5. 23 Nov, 2011 6 commits
  6. 22 Nov, 2011 10 commits
  7. 21 Nov, 2011 7 commits