An error occurred fetching the project authors.
  1. 16 Apr, 2015 1 commit
  2. 08 Sep, 2014 1 commit
  3. 31 Jan, 2013 1 commit
  4. 15 Nov, 2012 1 commit
  5. 15 Jul, 2012 1 commit
  6. 23 Mar, 2012 1 commit
  7. 12 Mar, 2012 1 commit
  8. 03 Feb, 2012 1 commit
    • Gustavo Niemeyer's avatar
      os: turn FileStat.Sys into a method on FileInfo · 20f4385a
      Gustavo Niemeyer authored
      This reduces the overhead necessary to work with OS-specific
      file details, hides the implementation of FileStat, and
      preserves the implementation-specific nature of Sys.
      
      Expressions such as:
      
        stat.(*os.FileInfo).Sys.(*syscall.Stat_t).Uid
        fi1.(*os.FileStat).SameFile(fi2.(*os.FileStat))
      
      Are now spelled as::
      
        stat.Sys().(*syscall.Stat_t).Uid
        os.SameFile(fi1, fi2)
      
      R=cw, bradfitz, rsc
      CC=golang-dev
      https://golang.org/cl/5448079
      20f4385a
  9. 19 Jan, 2012 1 commit
  10. 09 Jan, 2012 1 commit
  11. 01 Dec, 2011 1 commit
  12. 30 Nov, 2011 2 commits
  13. 07 Jul, 2011 1 commit
  14. 24 Aug, 2010 1 commit
  15. 22 Apr, 2010 1 commit
  16. 09 Apr, 2010 1 commit
  17. 15 Dec, 2009 1 commit
    • Robert Griesemer's avatar
      1) Change default gofmt default settings for · d65a5cce
      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
      
      4th set of files.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/180049
      d65a5cce
  18. 06 Nov, 2009 1 commit
  19. 07 Oct, 2009 1 commit
  20. 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
  21. 03 Jun, 2009 1 commit
  22. 15 May, 2009 1 commit
  23. 08 Mar, 2009 1 commit
    • Rob Pike's avatar
      document os · 333cdd8f
      Rob Pike authored
      R=rsc
      DELTA=143  (96 added, 0 deleted, 47 changed)
      OCL=25876
      CL=25888
      333cdd8f
  24. 11 Feb, 2009 1 commit
  25. 09 Feb, 2009 1 commit
  26. 07 Feb, 2009 1 commit
    • Rob Pike's avatar
      portable stat for os · 704bc9d5
      Rob Pike authored
      add name to os.FD
      clean up some interfaces
      
      R=rsc
      DELTA=318  (231 added, 44 deleted, 43 changed)
      OCL=24624
      CL=24627
      704bc9d5