Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 105 for Spent (0.06 sec)

  1. docs/en/docs/async.md

    You just eat them, and you are done. ⏹
    
    <img src="/img/async/parallel-burgers/parallel-burgers-06.png" class="illustration">
    
    There was not much talk or flirting as most of the time was spent waiting 🕙 in front of the counter. 😞
    
    !!! info
        Beautiful illustrations by <a href="https://www.instagram.com/ketrinadrawsalot" class="external-link" target="_blank">Ketrina Thompson</a>. 🎨
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    		want            string
    	}{
    		{
    			desc:            "resourceVersion is non-zero",
    			resourceVersion: 5,
    			want: `
    		# HELP apiserver_watch_cache_read_wait_seconds [ALPHA] Histogram of time spent waiting for a watch cache to become fresh.
        # TYPE apiserver_watch_cache_read_wait_seconds histogram
          apiserver_watch_cache_read_wait_seconds_bucket{resource="pods",le="0.005"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                .charAt(0);
        if (overWaitNanosFirstDigit < '4') {
          overWaitNanosFirstDigit = '9';
        }
        String nanosRegex = "[4-" + overWaitNanosFirstDigit + "][0-9]+";
        assertWithMessage(
                "Spent " + thread.timeSpentBlocked + " ns blocked; slept for " + toWaitMillis + " ms")
            .that(thread.exception)
            .hasMessageThat()
            .matches(
                "Waited 2 seconds \\(plus "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  4. pkg/kubelet/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"reason"},
    	)
    
    	// ImagePullDuration is a Histogram that tracks the duration (in seconds) it takes for an image to be pulled,
    	// including the time spent in the waiting queue of image puller.
    	// The metric is broken down by bucketed image size.
    	ImagePullDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      KubeletSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                .charAt(0);
        if (overWaitNanosFirstDigit < '4') {
          overWaitNanosFirstDigit = '9';
        }
        String nanosRegex = "[4-" + overWaitNanosFirstDigit + "][0-9]+";
        assertWithMessage(
                "Spent " + thread.timeSpentBlocked + " ns blocked; slept for " + toWaitMillis + " ms")
            .that(thread.exception)
            .hasMessageThat()
            .matches(
                "Waited 2 seconds \\(plus "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  6. pkg/kube/client.go

    // library. However, that library will poll with 100ms fixed interval. Often the cache syncs in a few
    // ms, but we are delayed a full 100ms. This is especially apparent in tests, which previously spent
    // most of their time just in the 100ms wait interval.
    //
    // To optimize this, this function performs exponential backoff. This is generally safe because
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    		return
    	}
    
    	// Handle various kinds of tracking.
    	//
    	// Currently:
    	// - Time spent in runnable.
    	// - Time spent blocked on a sync.Mutex or sync.RWMutex.
    	switch oldval {
    	case _Grunnable:
    		// We transitioned out of runnable, so measure how much
    		// time we spent in this state and add it to
    		// runnableTime.
    		now := nanotime()
    		gp.runnableTime += now - gp.trackingStamp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    //
    // reclaim implements the page-reclaimer half of the sweeper.
    //
    // h.lock must NOT be held.
    func (h *mheap) reclaim(npage uintptr) {
    	// TODO(austin): Half of the time spent freeing spans is in
    	// locking/unlocking the heap (even with low contention). We
    	// could make the slow path here several times faster by
    	// batching heap frees.
    
    	// Bail early if there's no more reclaim work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// can take a while if we're processing each node serially as well. So we
    	// process them with bounded concurrency instead, since most of the time is
    	// spent waiting on io.
    	workqueue.ParallelizeUntil(ctx, nc.nodeUpdateWorkerSize, len(nodes), updateNodeFunc)
    
    	nc.handleDisruption(ctx, zoneToNodeConditions, nodes)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. src/os/exec/exec.go

    	// support shutdown signals but are expected to always finish quickly.
    	//
    	// Cancel will not be called if Start returns a non-nil error.
    	Cancel func() error
    
    	// If WaitDelay is non-zero, it bounds the time spent waiting on two sources
    	// of unexpected delay in Wait: a child process that fails to exit after the
    	// associated Context is canceled, and a child process that exits but leaves
    	// its I/O pipes unclosed.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top