Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Munlockall (0.07 sec)

  1. internal/dsync/drwmutex.go

    	RefreshCall time.Duration
    
    	// UnlockCall - timeout for the unlock call
    	UnlockCall time.Duration
    
    	// ForceUnlockCall - timeout for the force unlock call
    	ForceUnlockCall time.Duration
    }
    
    // DefaultTimeouts contains default timeouts.
    var DefaultTimeouts = Timeouts{
    	Acquire:         drwMutexAcquireTimeout,
    	RefreshCall:     drwMutexRefreshCallTimeout,
    	UnlockCall:      drwMutexUnlockCallTimeout,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 09 15:49:49 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), func Mprotect([]uint8, int) error
    pkg syscall (darwin-arm64), func Munlock([]uint8) error
    pkg syscall (darwin-arm64), func Munlockall() error
    pkg syscall (darwin-arm64), func Munmap([]uint8) error
    pkg syscall (darwin-arm64), func Open(string, int, uint32) (int, error)
    pkg syscall (darwin-arm64), func ParseDirent([]uint8, int, []string) (int, int, []string)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  3. internal/dsync/dsync_test.go

    	ds = &Dsync{
    		GetLockers: func() ([]NetLocker, string) { return clnts, uuid.New().String() },
    		Timeouts: Timeouts{
    			Acquire:         testDrwMutexAcquireTimeout,
    			RefreshCall:     testDrwMutexRefreshCallTimeout,
    			UnlockCall:      testDrwMutexUnlockCallTimeout,
    			ForceUnlockCall: testDrwMutexForceUnlockCallTimeout,
    		},
    	}
    
    	code := m.Run()
    	stopLockServers()
    	os.Exit(code)
    }
    
    func TestSimpleLock(t *testing.T) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jun 19 14:35:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top