Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 609 for spent (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Add apiserver.latency.k8s.io/apf-queue-wait annotation to the audit log to record the time spent waiting in apf queue ([#123919](https://github.com/kubernetes/kubernetes/pull/123919), [@hakuna-matatah](https://github.com/hakuna-matatah)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    func getMinIOProcessCPUTime() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: processSubsystem,
    		Name:      cpu,
    		Help:      "Total user and system CPU time spent in seconds",
    		Type:      counterMetric,
    	}
    }
    
    func getMinioProcMetrics() *MetricsGroupV2 {
    	mg := &MetricsGroupV2{
    		cacheInterval: 10 * time.Second,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    		for _, s := range p.Sample {
    			total += s.Value[i]
    		}
    		// Want d to be at least N*D, but give some wiggle-room to avoid
    		// a test flaking. Set an upper-bound proportional to the total
    		// wall time spent in blockMutexN. Generally speaking, the total
    		// contention time could be arbitrarily high when considering
    		// OS scheduler delays, or any other delays from the environment:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    	Push *PushContext
    
    	// Start represents the time a push was started. This represents the time of adding to the PushQueue.
    	// Note that this does not include time spent debouncing.
    	Start time.Time
    
    	// Reason represents the reason for requesting a push. This should only be a fixed set of values,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top