Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 892 for heal (0.14 sec)

  1. cmd/notification.go

    			if client == nil {
    				return errPeerNotReachable
    			}
    			return client.LoadServiceAccount(ctx, accessKey)
    		}, idx, *client.host)
    	}
    	return ng.Wait()
    }
    
    // BackgroundHealStatus - returns background heal status of all peers
    func (sys *NotificationSys) BackgroundHealStatus(ctx context.Context) ([]madmin.BgHealState, []NotificationPeerErr) {
    	ng := WithNPeers(len(sys.peerClients))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  2. src/runtime/mspanset.go

    // on the span set.
    func (b *spanSet) reset() {
    	head, tail := b.index.load().split()
    	if head < tail {
    		print("head = ", head, ", tail = ", tail, "\n")
    		throw("attempt to clear non-empty span set")
    	}
    	top := head / spanSetBlockEntries
    	if uintptr(top) < b.spineLen.Load() {
    		// If the head catches up to the tail and the set is empty,
    		// we may not clean up the block containing the head and tail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/runtime/lfstack.go

    	}
    	for {
    		old := atomic.Load64((*uint64)(head))
    		node.next = old
    		if atomic.Cas64((*uint64)(head), old, new) {
    			break
    		}
    	}
    }
    
    func (head *lfstack) pop() unsafe.Pointer {
    	for {
    		old := atomic.Load64((*uint64)(head))
    		if old == 0 {
    			return nil
    		}
    		node := lfstackUnpack(old)
    		next := atomic.Load64(&node.next)
    		if atomic.Cas64((*uint64)(head), old, next) {
    			return unsafe.Pointer(node)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. docs/en/docs/img/logo-margin/logo-teal.svg

    logo-teal.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/internal/trace/batchcursor_test.go

    	heap[len(heap)-1].ev.time = 21
    	heapUpdate(heap, len(heap)-1)
    	checkHeap(t, heap)
    	if heap[len(heap)-1].ev.time != 21 {
    		t.Fatalf("heap update failed, expected %d as heap min: %s", 21, heapDebugString(heap))
    	}
    
    	// Update the last element to be smaller.
    	heap[len(heap)-1].ev.time = 7
    	heapUpdate(heap, len(heap)-1)
    	checkHeap(t, heap)
    	if heap[len(heap)-1].ev.time == 21 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/runtime/gc_test.go

    	type X struct {
    		buf     [1]byte
    		nextbuf []byte
    		next    *X
    	}
    	var head *X
    	for i := 0; i < 10; i++ {
    		p := &X{}
    		p.buf[0] = 42
    		p.next = head
    		if head != nil {
    			p.nextbuf = head.buf[:]
    		}
    		head = p
    		runtime.GC()
    	}
    	for p := head; p != nil; p = p.next {
    		if p.buf[0] != 42 {
    			t.Fatal("corrupted heap")
    		}
    	}
    }
    
    func TestGcRescan(t *testing.T) {
    	type X struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. docs/en/docs/img/logo-margin/logo-teal.png

    logo-teal.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. docs/en/docs/img/logo-teal.svg

    logo-teal.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    	return true
    }
    
    // mProf_NextCycle publishes the next heap profile cycle and creates a
    // fresh heap profile cycle. This operation is fast and can be done
    // during STW. The caller must call mProf_Flush before calling
    // mProf_NextCycle again.
    //
    // This is called by mark termination during STW so allocations and
    // frees after the world is started again count towards a new heap
    // profiling cycle.
    func mProf_NextCycle() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. docs/en/docs/img/logo-margin/logo-teal-vector.svg

    logo-teal-vector.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top