1. c5dff72 cmd/compile, runtime: fix placement of map bucket overflow pointer on nacl by Russ Cox · 10 years ago
  2. 7feb424 cmd/compile: fix PtrTo(t) for unnamed t with embedded fields by Russ Cox · 10 years ago
  3. 3d3a016 reflect: wait longer before declaring select test stuck by Russ Cox · 10 years ago
  4. e0e47e2 reflect: test repeats with large scalar tails by Austin Clements · 10 years ago
  5. 4b28755 reflect: test GC bits for slices by Austin Clements · 10 years ago
  6. 80ec711 runtime: use type-based write barrier for remote stack write during chansend by Russ Cox · 10 years ago
  7. d36cc02 reflect: make PtrTo(FuncOf(...)) not crash by Russ Cox · 10 years ago
  8. 512f75e runtime: replace GC programs with simpler encoding, faster decoder by Russ Cox · 10 years ago
  9. 6d8a147 runtime: use 1-bit pointer bitmaps in type representation by Russ Cox · 10 years ago
  10. 918fdae reflect: implement ArrayOf by Sebastien Binet · 10 years ago
  11. e1c1fa2 reflect: add FuncOf function by Dave Day · 10 years ago
  12. 6ea3adc reflect: for struct tags, reject control chars (including tabs) in keys, by Nigel Tao · 10 years ago
  13. 67f8a81 reflect: cache call frames by Dmitry Vyukov · 10 years ago
  14. 48d6303 reflect: set dir when creating a channel via ChanOf by Michael Fraenkel · 10 years ago
  15. 31f8310 reflect: fix func layout test for nacl build by Keith Randall · 10 years ago
  16. 108dbd0 reflect: more function layout tests by Keith Randall · 10 years ago
  17. 829b286 [dev.cc] all: merge default (8d42099cdc23) into dev.cc by Russ Cox · 10 years ago
  18. 7c1e330 reflect: Fix reflect.funcLayout. The GC bitmap has two bits per by Keith Randall · 10 years ago
  19. f0bd539 [dev.power64] all: merge default into dev.power64 by Austin Clements · 10 years ago
  20. 2bd616b build: merge the great pkg/ rename into dev.power64 by Austin Clements · 10 years ago
  21. 82a0188 reflect: fix TestAllocations now that interfaces hold only pointers by Ian Lance Taylor · 10 years ago
  22. 4e1d196 reflect: fix struct size calculation to include terminal padding by Damien Neil · 10 years ago
  23. 3cf9acc reflect: generated unrolled GC bitmask directly by Ian Lance Taylor · 10 years ago
  24. 14cd40d reflect: add direct call tests to TestMakeFuncVariadic by Michael Hudson-Doyle · 10 years ago
  25. 6920b2a reflect: add tests for variadic method calls by Ian Lance Taylor · 10 years ago
  26. 62d3202 reflect: fix IsValid vs Kind mismatch after Elem of nil interface by Russ Cox · 10 years ago
  27. dd8f29e reflect: adjust Value.String to give correct answer for methods by Russ Cox · 10 years ago
  28. a325f4f reflect: add Type.Comparable by Russ Cox · 10 years ago
  29. f0d44db runtime: look up arg stackmap for makeFuncStub/methodValueStub during traceback by Russ Cox · 11 years ago
  30. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/reflect/all_test.go]
  31. 613383c cmd/gc, runtime: treat slices and strings like pointers in garbage collection by Russ Cox · 11 years ago
  32. 1806a57 cmd/gc, runtime: refactor interface inlining decision into compiler by Russ Cox · 11 years ago
  33. b39e2a0 src, misc: applied gofmt -w -s by Robert Griesemer · 11 years ago
  34. cb6cb42 reflect: don't panic on delete from nil map. by Keith Randall · 11 years ago
  35. d54b67d reflect: test, fix access to nil maps by Russ Cox · 11 years ago
  36. 772d228 reflect: fix variadic arg for funcs created by MakeFunc. by Carl Chatfield · 11 years ago
  37. 72c5d5e reflect, runtime: fix crash in GC due to reflect.call + precise GC by Russ Cox · 11 years ago
  38. 5984732 reflect: better error for walking through nil embedded struct pointer by Russ Cox · 11 years ago
  39. 96ee10f reflect: add DeepEqual slice of slice inequality test by Shawn Smith · 11 years ago
  40. 0a6ad46 reflect: Add tests for Call with functions taking and returning structs. by Michael Hudson-Doyle · 11 years ago
  41. 742f755 reflect: test to make sure big Zero()-obtained objects are really zero. by Keith Randall · 11 years ago
  42. 85138da reflect: prevent the callXX routines from calling makeFuncStub by Keith Randall · 11 years ago
  43. ef4e12a reflect: test using a MakeFunc value in a couple of different ways by Ian Lance Taylor · 11 years ago
  44. e59db90 reflect: add a test that gccgo mishandled by Ian Lance Taylor · 11 years ago
  45. e07b5ba reflect: add example for StructTag by Kamil Kisiel · 11 years ago
  46. c757020 reflect: test method calls on pointers to pointers by Ian Lance Taylor · 11 years ago
  47. 0e73497 reflect: Fix Convert to add indir bit when the value is actually a by Todd Wang · 12 years ago
  48. f578726 all: protect alloc count tests by -testing.short by Rob Pike · 12 years ago
  49. 94179d6 reflect: avoid allocation when interface's contents are not addressable by Rob Pike · 12 years ago
  50. f791012 reflect: Get rid of the test for the error message when by Keith Randall · 12 years ago
  51. 9cd5706 runtime: reimplement reflect.call to not use stack splitting. by Keith Randall · 12 years ago
  52. 4d8aefd reflect: add Value.Slice3 and Value.SetCap methods, to match x[i:j:k] by Russ Cox · 12 years ago
  53. 5782f41 runtime: introduce cnewarray() to simplify allocation of typed arrays by Dmitriy Vyukov · 12 years ago
  54. 3660b53 reflect: add garbage collection info in ChanOf, MapOf, PtrTo, SliceOf by Russ Cox · 12 years ago
  55. 3be7036 reflect: implement method values by Russ Cox · 12 years ago
  56. 0a71a5b all: Skip AllocsPerRun tests if GOMAXPROCS>1. by Albert Strasheim · 12 years ago
  57. 9bfd3c3 testing: add AllocsPerRun by Kyle Lemons · 12 years ago
  58. 9e30b70 all: set GOMAXPROCS to 1 when counting mallocs by Shenghou Ma · 12 years ago
  59. aa38801 reflect: fix FieldByNameFunc by Robert Griesemer · 12 years ago
  60. 1120982 reflect: add ArrayOf, ChanOf, MapOf, SliceOf by Russ Cox · 12 years ago
  61. 465b9c3 gofmt: apply gofmt -w src misc by Robert Griesemer · 12 years ago
  62. 38070a7 reflect: stop thinking that MaxFloat32 overflows float32. by Rémy Oudompheng · 12 years ago
  63. 772decb reflect: make Index and Slice accept strings by Evan Shaw · 12 years ago
  64. 1065c6f go/printer: parenthesize literal function types in conversions by Robert Griesemer · 12 years ago
  65. ba4625c reflect: add MakeFunc (API CHANGE) by Russ Cox · 12 years ago
  66. 46f379c reflect: add Type.ConvertibleTo, Value.Convert (API CHANGE) by Russ Cox · 12 years ago
  67. 370ae05 reflect: add Select by Russ Cox · 12 years ago
  68. 5e3224c reflect: faster FieldByName, FieldByNameFunc by Russ Cox · 13 years ago
  69. a96c2b8 cmd/gc: fix PkgPath of byte, rune types by Russ Cox · 13 years ago
  70. 21de1ab reflect: set GOMAXPROCS=1 in the malloc test by Dmitriy Vyukov · 13 years ago
  71. 5337290 reflect: document and test TypeOf(nil) Fixes #3549. by Rob Pike · 13 years ago
  72. a72b87e reflect: make Value.Interface return immutable data by Russ Cox · 13 years ago
  73. 3a1c226 reflect.DeepEqual: don't panic comparing functions by Rob Pike · 13 years ago
  74. 842c906 runtime: delete UpdateMemStats, replace with ReadMemStats(&stats). by Rémy Oudompheng · 13 years ago
  75. ae5c4ea reflect: test that PtrTo returns types that match program types by Ian Lance Taylor · 13 years ago
  76. ee09a8c gc: don't emit pkgpath for error type. by David Symonds · 13 years ago
  77. 3dc278d reflect: fix Slice cap by Gustavo Niemeyer · 13 years ago
  78. 46deaa2 gc: disallow map/func equality via interface comparison by Russ Cox · 13 years ago
  79. 434a6c8 gc: use gofmt spacing when printing map type by Russ Cox · 13 years ago
  80. a479a45 reflect: make Value an opaque struct by Russ Cox · 13 years ago
  81. 4e65478 reflect: empty slice/map is not DeepEqual to nil by Russ Cox · 13 years ago
  82. eb69292 src/pkg/[n-z]*: gofix -r error -force=error by Russ Cox · 13 years ago
  83. 50110c9 gc: clean up printing. by Luuk van Dijk · 13 years ago
  84. 9049abb reflect: make map test independent of map iteration order. by David Symonds · 13 years ago
  85. fdc6376 reflect: fix test failure reporting. by David Symonds · 13 years ago
  86. 304cf4d reflect: disallow Interface method on Value obtained via unexported name by Russ Cox · 13 years ago
  87. 00d64c7 reflect: add Value.Bytes, Value.SetBytes methods by Russ Cox · 14 years ago
  88. ab44a81 reflect: remove references to container/vector. by Rob Pike · 14 years ago
  89. c913cb8 reflect: rename new TestVariadic to TestVariadicType. by David Symonds · 14 years ago
  90. fc1cf58 reflect: doc fixes for obsolete types. by David Symonds · 14 years ago
  91. 90564a9 go/printer: changed max. number of newlines from 3 to 2 by Robert Griesemer · 14 years ago
  92. 25733a9 reflect: support for struct tag use by multiple packages by Russ Cox · 14 years ago
  93. 22484e2 reflect: MethodByName by Rob Pike · 14 years ago
  94. 1242c76 reflect: make allocation test less fragile. by Rob Pike · 14 years ago
  95. 86e6a44 reflect: allow unexported key in Value.MapIndex by Russ Cox · 14 years ago
  96. 3e9a1d5 syslog: fix skipping of net tests by Gustavo Niemeyer · 14 years ago
  97. 6850dba reflect: Fix Copy of arrays by Gustavo Niemeyer · 14 years ago
  98. 0e2bb62 reflect: rename Typeof, NewValue -> TypeOf, ValueOf by Russ Cox · 14 years ago
  99. 5ff3336 gc: correct handling of unexported method names in embedded interfaces by Russ Cox · 14 years ago
  100. e1ee3b5 reflect: add Type.Implements, Type.AssignableTo, Value.CallSlice; make Set match Go by Russ Cox · 14 years ago