1. 02 11月, 2018 1 次提交
  2. 27 10月, 2018 1 次提交
  3. 18 10月, 2018 1 次提交
  4. 12 10月, 2018 1 次提交
  5. 14 9月, 2018 1 次提交
  6. 17 7月, 2018 1 次提交
  7. 07 7月, 2018 1 次提交
  8. 30 6月, 2018 1 次提交
  9. 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
  10. 27 5月, 2018 1 次提交
  11. 26 5月, 2018 1 次提交
  12. 15 5月, 2018 1 次提交
  13. 14 5月, 2018 1 次提交
  14. 11 5月, 2018 1 次提交
  15. 08 5月, 2018 1 次提交
  16. 07 5月, 2018 1 次提交
  17. 04 5月, 2018 1 次提交
  18. 26 4月, 2018 1 次提交
  19. 23 4月, 2018 1 次提交
  20. 08 4月, 2018 1 次提交
  21. 02 4月, 2018 1 次提交
  22. 29 3月, 2018 1 次提交
  23. 16 3月, 2018 1 次提交
  24. 12 3月, 2018 1 次提交
  25. 07 3月, 2018 1 次提交
  26. 06 3月, 2018 1 次提交
  27. 05 3月, 2018 1 次提交
  28. 02 3月, 2018 1 次提交
  29. 12 2月, 2018 1 次提交
  30. 03 2月, 2018 1 次提交
  31. 26 1月, 2018 1 次提交
  32. 08 1月, 2018 1 次提交
  33. 05 1月, 2018 1 次提交
  34. 25 11月, 2017 1 次提交
  35. 16 11月, 2017 1 次提交
  36. 31 10月, 2017 1 次提交
  37. 18 10月, 2017 1 次提交
  38. 19 9月, 2017 1 次提交
  39. 13 9月, 2017 1 次提交
  40. 11 9月, 2017 1 次提交