Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,932 for statx (0.07 sec)

  1. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

            stdout.stdOut.contains("- main build node (state=SHOULD_RUN")
            stdout.stdOut.contains("- :task (state=SHOULD_RUN")
            stdout.stdOut.contains("- Ordinal groups: group 0 entry nodes: [:task (SHOULD_RUN)]")
            stdout.stdOut.contains("- Build ':child':")
            stdout.stdOut.contains("- child build node (state=SHOULD_RUN")
            stdout.stdOut.contains("- :child:task (state=SHOULD_RUN")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. pkg/kubelet/winstats/network_stats.go

    	}
    
    	return adapters
    }
    
    func (n *networkCounter) listInterfaceStats() []cadvisorapi.InterfaceStats {
    	stats := make([]cadvisorapi.InterfaceStats, 0, len(n.adapterStats))
    	for _, stat := range n.adapterStats {
    		stats = append(stats, stat)
    	}
    	return stats
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/time/sleep_test.go

    			j := j
    			expectedWakeup := Now().Add(delay)
    			AfterFunc(delay, func() {
    				late := Since(expectedWakeup)
    				if late < 0 {
    					late = 0
    				}
    				stats[j].count++
    				stats[j].sum += float64(late.Nanoseconds())
    				if late > stats[j].max {
    					stats[j].max = late
    				}
    				atomic.AddInt32(&count, 1)
    				for atomic.LoadInt32(&count) < int32(timerCount) {
    					// spin until all timers fired
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager.go

    	// nodeRef is a reference to the node
    	nodeRef *v1.ObjectReference
    	// used to record events about the node
    	recorder record.EventRecorder
    	// used to measure usage stats on system
    	summaryProvider stats.SummaryProvider
    	// records when a threshold was first observed
    	thresholdsFirstObservedAt thresholdsObservedAt
    	// records the set of thresholds that have been met (including graceperiod) but not yet resolved
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider.go

    		}
    	} else {
    		result.Memory.Time = metav1.NewTime(time.Unix(0, time.Now().UnixNano()))
    		result.Memory.WorkingSetBytes = uint64Ptr(0)
    	}
    	if stats.Swap != nil {
    		result.Swap.Time = metav1.NewTime(time.Unix(0, stats.Swap.Timestamp))
    		if stats.Swap.SwapUsageBytes != nil {
    			result.Swap.SwapUsageBytes = &stats.Swap.SwapUsageBytes.Value
    		}
    		if stats.Swap.SwapAvailableBytes != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. src/runtime/mcache.go

    	if s == nil {
    		throw("out of memory")
    	}
    
    	// Count the alloc in consistent, external stats.
    	stats := memstats.heapStats.acquire()
    	atomic.Xadd64(&stats.largeAlloc, int64(npages*pageSize))
    	atomic.Xadd64(&stats.largeAllocCount, 1)
    	memstats.heapStats.release()
    
    	// Count the alloc in inconsistent, internal stats.
    	gcController.totalAlloc.Add(int64(npages * pageSize))
    
    	// Update heapLive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/runtime/arena.go

    	// Update consistent stats to match.
    	//
    	// We're non-preemptible, so it's safe to update consistent stats (our P
    	// won't change out from under us).
    	stats := memstats.heapStats.acquire()
    	atomic.Xaddint64(&stats.committed, -int64(s.npages*pageSize))
    	atomic.Xaddint64(&stats.inHeap, -int64(s.npages*pageSize))
    	atomic.Xadd64(&stats.largeFreeCount, 1)
    	atomic.Xadd64(&stats.largeFree, int64(s.elemsize))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			pl, state.reqsGaugePair, state.execSeatsObs,
    			metrics.NewUnionGauge(state.seatDemandIntegrator, state.seatDemandRatioedGauge))
    		if err != nil {
    			klog.Warningf("Ignoring PriorityLevelConfiguration object %s because its spec (%s) is broken: %s", pl.Name, fcfmt.Fmt(pl.Spec), err)
    			continue
    		}
    		meal.newPLStates[pl.Name] = state
    		state.pl = pl
    		state.qsCompleter = qsCompleter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  9. cmd/data-usage-cache.go

    			for arn, stat := range flat.ReplicationStats.Targets {
    				bui.ReplicationInfo[arn] = BucketTargetUsageInfo{
    					ReplicationPendingSize:  stat.PendingSize,
    					ReplicatedSize:          stat.ReplicatedSize,
    					ReplicationFailedSize:   stat.FailedSize,
    					ReplicationPendingCount: stat.PendingCount,
    					ReplicationFailedCount:  stat.FailedCount,
    					ReplicatedCount:         stat.ReplicatedCount,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

          // check too.
          op.emitError() << "Input tensor [" << input_index
                         << "] is a state tensor, but has more than one use.";
          return failure();
        }
        auto stats = mlir::dyn_cast<DenseFPElementsAttr>(stats_op.getLayerStats());
        if (!stats || stats.getNumElements() != 2) {
          stats_op.emitError("Stats should have 2 values.");
          return failure();
        }
        quant::QuantizedType quant_type;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top