Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 190 for hung (0.04 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered_test.go

    	t.Log("Max batch size encountered.")
    	backend.ProcessEvents(newEvents(batchSize + 1)...)
    	batch := backend.collectEvents(nil, nil)
    	assert.Len(t, batch, batchSize, "Expected full batch")
    
    	t.Log("Partial batch should hang until timer expires.")
    	backend.ProcessEvents(newEvents(1)...)
    	tc := make(chan time.Time)
    	wg := sync.WaitGroup{}
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		batch = backend.collectEvents(tc, nil)
    	}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 14 17:20:35 UTC 2018
    - 5.9K bytes
    - Viewed (0)
  2. docs/ru/docs/index.md

    ---
    
    "_Честно говоря, то, что вы создали, выглядит очень солидно и отполировано. Во многих смыслах я хотел, чтобы **Hug** был именно таким — это действительно вдохновляет, когда кто-то создаёт такое._"
    
    <div style="text-align: right; margin-right: 10%;">Timothy Crosley - <strong><a href="https://www.hug.rest/" target="_blank">Hug</a> creator</strong> <a href="https://news.ycombinator.com/item?id=19455465" target="_blank"><small>(ref)</small></a></div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/runtime/race/testdata/atomic_test.go

    	var a uint64
    	go func() {
    		atomic.AddUint64(&a, 1)
    		c <- true
    	}()
    	a = 42
    	<-c
    }
    
    // A nil pointer in an atomic operation should not deadlock
    // the rest of the program. Used to hang indefinitely.
    func TestNoRaceAtomicCrash(t *testing.T) {
    	var mutex sync.Mutex
    	var nilptr *int32
    	panics := 0
    	defer func() {
    		if x := recover(); x != nil {
    			mutex.Lock()
    			panics++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 16 17:26:46 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/balanced_allocation.go

    	// Detail: score = (1 - std) * MaxNodeScore, where std is calculated by the root square of Σ((fraction(i)-mean)^2)/len(resources)
    	// The algorithm is partly inspired by:
    	// "Wei Huang et al. An Energy Efficient Virtual Machine Placement Algorithm with Balanced Resource Utilization"
    	return ba.score(ctx, pod, nodeInfo, s.podRequests)
    }
    
    // ScoreExtensions of the Score plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. src/net/splice_linux_test.go

    func (tc spliceTestCase) test(t *testing.T) {
    	hook := hookSplice(t)
    
    	// We need to use the actual size for startTestSocketPeer when testing with LimitedReader,
    	// otherwise the child process created in startTestSocketPeer will hang infinitely because of
    	// the mismatch of data size to transfer.
    	size := tc.totalSize
    	if tc.limitReadSize > 0 {
    		if tc.limitReadSize < size {
    			size = tc.limitReadSize
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. docs/az/docs/index.md

    ---
    
    "_Düzünü desəm, sizin qurduğunuz şey həqiqətən möhkəm və peşəkar görünür. Bir çox cəhətdən **Hug**-un olmasını istədiyim kimdir - kiminsə belə bir şey qurduğunu görmək həqiqətən ruhlandırıcıdır._"
    
    <div style="text-align: right; margin-right: 10%;">Timothy Crosley - <strong><a href="https://www.hug.rest/" target="_blank">Hug</a> creator</strong> <a href="https://news.ycombinator.com/item?id=19455465" target="_blank"><small>(ref)</small></a></div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprog/lockosthread.go

    	// (achieved via ReadMemStats) racing with two LockOSThread calls.
    	//
    	// While this test attempts to line up the timing, it is only expected
    	// to fail (and thus hang) around 2% of the time if the race is
    	// present.
    
    	// Ensure enough Ps to actually run everything in parallel. Though on
    	// <4 core machines, we are still at the whim of the kernel scheduler.
    	runtime.GOMAXPROCS(4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/ingress.go

    		addrs, completed, err = getRemoteServiceAddresses(c.env.Settings(), c.cluster, c.service.Namespace, c.labelSelector, c.service.Name, port)
    		if err != nil && attempts > 1 {
    			// Log if we fail more than once to avoid test appearing to hang
    			// LB provision be slow, so timeout here needs to be long we should give context
    			scopes.Framework.Warnf("failed to get address for port %v: %v", port, err)
    		}
    		return
    	}, getAddressTimeout, getAddressDelay)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    	var healthCheckError error
    
    	if kmsPluginCloseGracePeriod < minKMSPluginCloseGracePeriod {
    		kmsPluginCloseGracePeriod = minKMSPluginCloseGracePeriod
    	}
    
    	// really make sure that the immediate check does not hang
    	var cancel context.CancelFunc
    	ctx, cancel = context.WithTimeout(ctx, kmsPluginCloseGracePeriod)
    	defer cancel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.24.md

    - Fix incorrect calculation for ResourceQuota with PriorityClass as its scope. ([#117891](https://github.com/kubernetes/kubernetes/pull/117891), [@Huang-Wei](https://github.com/Huang-Wei)) [SIG API Machinery]
    - Fix: the volume is not detached after the pod and PVC objects are deleted ([#117358](https://github.com/kubernetes/kubernetes/pull/117358), [@cvvz](https://github.com/cvvz)) [SIG Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top