1. 06 Apr, 2011 6 commits
    • Russ Cox's avatar
      src/pkg/Makefile: trim per-directory make output except on failure · 0ea7bf48
      Russ Cox authored
      Not committed to this but it sure makes
      the output easier to skim.  With this CL:
      
      $ make
      install runtime
      install sync/atomic
      install sync
      install unicode
      install utf16
      install syscall
      install os
      ...
      install ../cmd/govet
      install ../cmd/goyacc
      install ../cmd/hgpatch
      $ make test
      test archive/tar
      test archive/zip
      test asn1
      test big
      test bufio
      ...
      test path
      test path/filepath
      TEST FAIL reflect
      gotest
      rm -f _test/reflect.a
      6g -o _gotest_.6 deepequal.go type.go value.go
      rm -f _test/reflect.a
      gopack grc _test/reflect.a _gotest_.6
      all_test.go:210: invalid type assertion: reflect.NewValue(tt.i).(*StructValue) (non-interface type reflect.Value on left)
      all_test.go:217: cannot type switch on non-interface value v (type reflect.Value)
      all_test.go:218: undefined: IntValue
      all_test.go:221: cannot use 132 (type int) as type reflect.Value in function argument
      all_test.go:223: cannot use 8 (type int) as type reflect.Value in function argument
      all_test.go:225: cannot use 16 (type int) as type reflect.Value in function argument
      all_test.go:227: cannot use 32 (type int) as type reflect.Value in function argument
      all_test.go:229: cannot use 64 (type int) as type reflect.Value in function argument
      all_test.go:231: undefined: UintValue
      all_test.go:234: cannot use 132 (type int) as type reflect.Value in function argument
      all_test.go:234: too many errors
      gotest: "/Users/rsc/g/go/bin/6g -I _test -o _xtest_.6 all_test.go tostring_test.go" failed: exit status 1
      make[1]: *** [test] Error 2
      make: *** [reflect.test] Error 1
      
      R=r, r2
      CC=golang-dev
      https://golang.org/cl/4343046
      0ea7bf48
    • Rob Pike's avatar
      log: generalize getting and setting flags and prefix. · 5ee13c0d
      Rob Pike authored
      - used to be only for standard log, not for user-built.
      - there were no getters.
      Also rearrange the code a little so we can avoid allocating
      a buffer on every call.  Logging is expensive but we should
      avoid unnecessary cost.
      
      This should have no effect on existing code.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/4363045
      5ee13c0d
    • Adam Langley's avatar
      crypto/rsa: add 3-prime support. · 41971434
      Adam Langley authored
      R=golang-dev, rsc1
      CC=golang-dev
      https://golang.org/cl/4365041
      41971434
    • Adam Langley's avatar
      crypto/rsa: flip the CRT code over so that it matches PKCS#1 · 057bdfe3
      Adam Langley authored
      The CRT is symmetrical in the case of two variables and I picked a
      different form from PKCS#1.
      
      R=golang-dev, rsc1
      CC=golang-dev
      https://golang.org/cl/4381041
      057bdfe3
    • Alex Brainman's avatar
      pkg/path: enable tests on Windows · 7f7371e9
      Alex Brainman authored
      Fixes #1107.
      
      R=golang-dev, dsymonds
      CC=golang-dev
      https://golang.org/cl/4374041
      7f7371e9
    • Andrew Gerrand's avatar
      http: allow override of Content-Type for ServeFile · b44dbff8
      Andrew Gerrand authored
      R=bradfitz, bradfitzwork
      CC=golang-dev
      https://golang.org/cl/4368041
      b44dbff8
  2. 05 Apr, 2011 20 commits
  3. 04 Apr, 2011 13 commits
  4. 03 Apr, 2011 1 commit