Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for defBlock (0.1 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // waiting for a signal (field value, external system, or other) produced by a
      // component responsible for a finalizer later in the list, resulting in a deadlock.
      // Without enforced ordering finalizers are free to order amongst themselves and
      // are not vulnerable to ordering changes in the list.
      // +optional
      // +patchStrategy=merge
      repeated string finalizers = 14;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // waiting for a signal (field value, external system, or other) produced by a
      // component responsible for a finalizer later in the list, resulting in a deadlock.
      // Without enforced ordering finalizers are free to order amongst themselves and
      // are not vulnerable to ordering changes in the list.
      // +optional
      // +patchStrategy=merge
      // +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	if err != nil {
    		t.Fatalf("Couldn't create cacher: %v", err)
    	}
    	defer cacher.Stop()
    
    	concurrency := 1000
    	wg := sync.WaitGroup{}
    	wg.Add(concurrency)
    
    	// Ensure that test doesn't deadlock if cacher already processed everything
    	// and get back into Pending state before some watches get called.
    	ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
    	defer cancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	// GC is not currently active.
    	assistG := deductAssistCredit(size)
    
    	// Set mp.mallocing to keep from being preempted by GC.
    	mp := acquirem()
    	if mp.mallocing != 0 {
    		throw("malloc deadlock")
    	}
    	if mp.gsignal == getg() {
    		throw("malloc during signal")
    	}
    	mp.mallocing = 1
    
    	shouldhelpgc := false
    	dataSize := userSize
    	c := getMCache(mp)
    	if c == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			labelHog(stop, gogc)
    		}()
    	}
    
    	time.Sleep(dur)
    	close(stop)
    	wg.Wait()
    }
    
    // Check that there is no deadlock when the program receives SIGPROF while in
    // 64bit atomics' critical section. Used to happen on mips{,le}. See #20146.
    func TestAtomicLoadStore64(t *testing.T) {
    	f, err := os.CreateTemp("", "profatomic")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// in which the component responsible for the first finalizer in the list is
    	// waiting for a signal (field value, external system, or other) produced by a
    	// component responsible for a finalizer later in the list, resulting in a deadlock.
    	// Without enforced ordering finalizers are free to order amongst themselves and
    	// are not vulnerable to ordering changes in the list.
    	// +optional
    	// +patchStrategy=merge
    	// +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  7. src/runtime/mheap.go

    // mheap must not be heap-allocated because it contains mSpanLists,
    // which must not be heap-allocated.
    type mheap struct {
    	_ sys.NotInHeap
    
    	// lock must only be acquired on the system stack, otherwise a g
    	// could self-deadlock if its stack grows with the lock held.
    	lock mutex
    
    	pages pageAlloc // page allocation data structure
    
    	sweepgen uint32 // sweep generation, see comment in mspan; written during STW
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	}
    
    	t.connsPerHostMu.Lock()
    	defer t.connsPerHostMu.Unlock()
    	n := t.connsPerHost[key]
    	if n == 0 {
    		// Shouldn't happen, but if it does, the counting is buggy and could
    		// easily lead to a silent deadlock, so report the problem loudly.
    		panic("net/http: internal error: connCount underflow")
    	}
    
    	// Can we hand this count to a goroutine still waiting to dial?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top