github.com/geniusesgroup/libgo@v0.0.0-20220713101832-828057a9d3d4/timer/const.go (about)

     1  /* For license and copyright information please see LEGAL file in repository */
     2  
     3  package timer
     4  
     5  // maxWhen is the maximum value for timer's when field.
     6  const maxWhen int64 = 1<<63 - 1 // math.MaxInt64
     7  
     8  // verifyTimers can be set to true to add debugging checks that the
     9  // timer heaps are valid.
    10  const verifyTimers = false