An error occurred fetching the project authors.
  1. 29 Mar, 2011 1 commit
    • Russ Cox's avatar
      net: drop laddr from Dial, cname from LookupHost; new functions · 41f93a43
      Russ Cox authored
      Drop laddr argument from Dial.
      
      Drop cname return from LookupHost.
      
      Add LookupIP, LookupCNAME, ParseCIDR, IP.Equal.
      Export SplitHostPort, JoinHostPort.
      Add AAAA (IPv6) support to host lookups.
      
      Preparations for implementing some of the
      lookups using cgo.
      
      ParseCIDR and IP.Equal are logically new in this CL
      but accidentally snuck into an earlier CL about unused
      labels that was in the same client.
      
      In crypto/tls, drop laddr from Dial to match net.
      
      R=golang-dev, dsymonds, adg, rh
      CC=golang-dev
      https://golang.org/cl/4244055
      41f93a43
  2. 19 Jan, 2011 1 commit
  3. 05 Aug, 2010 1 commit
  4. 15 Dec, 2009 1 commit
    • Robert Griesemer's avatar
      1) Change default gofmt default settings for · a3d1045f
      Robert Griesemer authored
         parsing and printing to new syntax.
      
         Use -oldparser to parse the old syntax,
         use -oldprinter to print the old syntax.
      
      2) Change default gofmt formatting settings
         to use tabs for indentation only and to use
         spaces for alignment. This will make the code
         alignment insensitive to an editor's tabwidth.
      
         Use -spaces=false to use tabs for alignment.
      
      3) Manually changed src/exp/parser/parser_test.go
         so that it doesn't try to parse the parser's
         source files using the old syntax (they have
         new syntax now).
      
      4) gofmt -w src misc test/bench
      
      3rd set of files.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/180048
      a3d1045f
  5. 20 Nov, 2009 1 commit
  6. 10 Nov, 2009 1 commit
  7. 09 Nov, 2009 1 commit
  8. 05 Nov, 2009 1 commit
  9. 17 Sep, 2009 1 commit
  10. 12 Aug, 2009 1 commit
  11. 26 Jun, 2009 1 commit
    • Russ Cox's avatar
      Change os.Error convention: · a0bcaf4c
      Russ Cox authored
      echo back context of call in error if likely to be useful.
      
      For example, if os.Open("/etc/passwd", os.O_RDONLY)
      fails with syscall.EPERM, it returns as the os.Error
      
      	&PathError{
      		Op: "open",
      		Path: "/etc/passwd"
      		Error: os.EPERM
      	}
      
      which formats as
      
      	open /etc/passwd: permission denied
      
      Not converted:
      
      	datafmt
      	go/...
      	google/...
      	regexp
      	tabwriter
      	template
      
      R=r
      DELTA=1153  (561 added, 156 deleted, 436 changed)
      OCL=30738
      CL=30781
      a0bcaf4c
  12. 09 Jun, 2009 1 commit
    • Rob Pike's avatar
      mv src/lib to src/pkg · d90e7cba
      Rob Pike authored
      tests: all.bash passes, gobuild still works, godoc still works.
      
      R=rsc
      OCL=30096
      CL=30102
      d90e7cba
  13. 08 May, 2009 1 commit
    • Russ Cox's avatar
      throw away os._Error. · 1b301bac
      Russ Cox authored
      make some error types in a few packages
      
      R=r
      DELTA=110  (25 added, 46 deleted, 39 changed)
      OCL=28382
      CL=28561
      1b301bac
  14. 17 Apr, 2009 1 commit
  15. 05 Mar, 2009 1 commit
  16. 15 Feb, 2009 1 commit
    • Russ Cox's avatar
      cleanups: · d8921c52
      Russ Cox authored
      	get rid of _ on private names in net.
      	fix os_test file name list.
      	newline not needed on Errorf.
      
      R=r
      DELTA=305  (34 added, 2 deleted, 269 changed)
      OCL=25047
      CL=25047
      d8921c52
  17. 30 Jan, 2009 1 commit
  18. 20 Jan, 2009 1 commit
  19. 16 Jan, 2009 1 commit
    • Russ Cox's avatar
      casify DNS · c840657f
      Russ Cox authored
      R=r
      DELTA=221  (0 added, 0 deleted, 221 changed)
      OCL=22946
      CL=22948
      c840657f
  20. 06 Jan, 2009 1 commit
  21. 19 Dec, 2008 1 commit
  22. 18 Dec, 2008 1 commit