Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: scgolang/osc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.11.1
Choose a base ref
...
head repository: scgolang/osc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 3 commits
  • 9 files changed
  • 2 contributors

Commits on Aug 12, 2023

  1. Configuration menu
    Copy the full SHA
    d734a31 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2023

  1. Configuration menu
    Copy the full SHA
    051701f View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2023

  1. Timetag fix test (#22)

    * Add Go modules to allow compiling
    
    * Fix compilation issues
    
    * Fix the timetag type
    
    The lower 32-bits are fractions of a second. That is, each increment
    increases the time by 1/(2^32) seconds, or 1e9/(2^32) ns ~ 0.233ns.
    Previously, each increment was counted as a full nanosecond. That could
    lead to errors of up to (2^32-1) ns - (2^32-1)*1e9/(2^32) ns ~= 3.3s!
    
    Also, if only the first bit is set, the value should be interpreted in a
    particular way. The choice made is to turn it into the zero time:
    time.Time{}. It makes it easy to identify using time.Time.IsZero().
    
    * add a TimeTag test
    
    ---------
    
    Co-authored-by: tleb <tleb@tutanota.com>
    briansorahan and tleb authored Sep 11, 2023
    Configuration menu
    Copy the full SHA
    9ee78cf View commit details
    Browse the repository at this point in the history
Loading