Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for orust (0.08 sec)

  1. src/cmd/compile/internal/ssa/loopbce.go

    				knn, k := findKNN(limit)
    				if knn == nil || k < 0 {
    					return false
    				}
    				// limit == (something nonnegative) - k. That subtraction can't underflow, so
    				// we can trust it.
    				if inclusive {
    					// ind <= knn - k cannot overflow if step is at most k
    					return step <= k
    				}
    				// ind < knn - k cannot overflow if step is at most k+1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. doc/go_mem.html

    This property is called DRF-SC.
    </p>
    
    <p>
    The intent of the formal definition is to match
    the DRF-SC guarantee provided to race-free programs
    by other languages, including C, C++, Java, JavaScript, Rust, and Swift.
    </p>
    
    <p>
    Certain Go language operations such as goroutine creation and memory allocation
    act as synchronization operations.
    The effect of these operations on the synchronized-before partial order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top