Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for copylocks (0.09 sec)

  1. cmd/admin-handlers.go

    	peerLocks := globalNotificationSys.GetLocks(ctx, r)
    
    	topLocks := topLockEntries(peerLocks, stale)
    
    	// Marshal API response upto requested count.
    	if len(topLocks) > count && count > 0 {
    		topLocks = topLocks[:count]
    	}
    
    	jsonBytes, err := json.Marshal(topLocks)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/policy_static_test.go

    	if len(mb1) != len(mb2) {
    		return false
    	}
    
    	copyMemoryBlocks := make([]state.Block, len(mb2))
    	copy(copyMemoryBlocks, mb2)
    	for _, block := range mb1 {
    		for i, copyBlock := range copyMemoryBlocks {
    			if reflect.DeepEqual(block, copyBlock) {
    				// move the element that equals to the block to the end of the slice
    				copyMemoryBlocks[i] = copyMemoryBlocks[len(copyMemoryBlocks)-1]
    
    				// remove the last element from our slice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
Back to top