Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for CompareAndSwapInt32 (0.1 seconds)

  1. internal/rest/client.go

    	}
    }
    
    func (c *Client) runHealthCheck() bool {
    	// Start goroutine that will attempt to reconnect.
    	// If server is already trying to reconnect this will have no effect.
    	if c.HealthCheckFn != nil && atomic.CompareAndSwapInt32(&c.connected, online, offline) {
    		go func() {
    			backOff := exponentialBackoffWait(
    				rand.New(rand.NewSource(time.Now().UnixNano())),
    				200*time.Millisecond,
    				30*time.Second,
    			)
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 14.7K bytes
    - Click Count (0)
  2. api/go1.txt

    pkg sync/atomic, func AddUint32(*uint32, uint32) uint32
    pkg sync/atomic, func AddUint64(*uint64, uint64) uint64
    pkg sync/atomic, func AddUintptr(*uintptr, uintptr) uintptr
    pkg sync/atomic, func CompareAndSwapInt32(*int32, int32, int32) bool
    pkg sync/atomic, func CompareAndSwapInt64(*int64, int64, int64) bool
    pkg sync/atomic, func CompareAndSwapPointer(*unsafe.Pointer, unsafe.Pointer, unsafe.Pointer) bool
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Click Count (0)
Back to Top