1. 12 9月, 2018 1 次提交
  2. 06 8月, 2018 1 次提交
  3. 17 7月, 2018 1 次提交
  4. 14 6月, 2018 1 次提交
    • O
      CopySheet() using reflect instead of encoding/gob · 4a1b4064
      Olivier Mengué 提交于
      Use github.com/mohae/deepcopy to deep copy worksheets instead of the
      internal deepcopy function that was using encoding/gob serialization and
      deserialization.
      
      Rationale:
      1/ using `encoding/gob` is much slower than
         [`mohae/deepcopy`](https://github.com/mohae/deepcopy/)
      2/ When building an application this implementation of `deepcopy` drags
         the `encoding/gob` package into the binary. And this package is much
         bigger than `mohae/deepcopy` (which only depends on `time` and `reflect`).
      
      ```
      $ LC_ALL=C stat -f "%6z %N" $(go env GOPATH)/pkg/$(go env GOOS)_$(go env GOARCH)/github.com/mohae/deepcopy.a $(go env GOROOT)/pkg/$(go env GOOS)_$(go env GOARCH)/encoding/gob.a
       10508 .../pkg/darwin_amd64/github.com/mohae/deepcopy.a
      541818 .../pkg/darwin_amd64/encoding/gob.a
      ```
      4a1b4064
  5. 27 5月, 2018 1 次提交
  6. 15 5月, 2018 1 次提交
  7. 14 5月, 2018 1 次提交
  8. 07 5月, 2018 1 次提交
  9. 03 5月, 2018 1 次提交
  10. 26 4月, 2018 1 次提交
  11. 16 3月, 2018 1 次提交
  12. 06 3月, 2018 1 次提交
  13. 04 12月, 2017 1 次提交
  14. 31 10月, 2017 1 次提交
  15. 20 10月, 2017 1 次提交
  16. 30 9月, 2017 1 次提交
  17. 13 9月, 2017 2 次提交
  18. 19 8月, 2017 1 次提交
  19. 13 8月, 2017 1 次提交
  20. 01 8月, 2017 1 次提交
  21. 30 7月, 2017 2 次提交
  22. 16 7月, 2017 1 次提交
  23. 06 7月, 2017 1 次提交
  24. 27 6月, 2017 1 次提交
  25. 14 6月, 2017 1 次提交
  26. 08 6月, 2017 1 次提交
  27. 24 5月, 2017 1 次提交
  28. 13 5月, 2017 1 次提交
  29. 30 4月, 2017 1 次提交
  30. 26 4月, 2017 1 次提交
  31. 04 4月, 2017 1 次提交
  32. 01 4月, 2017 2 次提交
  33. 28 3月, 2017 1 次提交
  34. 22 3月, 2017 1 次提交
  35. 12 3月, 2017 1 次提交
  36. 24 1月, 2017 1 次提交
  37. 22 1月, 2017 1 次提交