Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,470 for statx (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/runtime/mgc.go

    	memstats.pause_total_ns += uint64(work.pauseNS)
    
    	// Accumulate CPU stats.
    	//
    	// Use maxprocs instead of stwprocs for GC pause time because the total time
    	// computed in the CPU stats is based on maxprocs, and we want them to be
    	// comparable.
    	//
    	// Pass gcMarkPhase=true to accumulate so we can get all the latest GC CPU stats
    	// in there too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. pkg/kubelet/runonce_test.go

    		kb.mounter,
    		kb.hostutil,
    		kb.getPodsDir(),
    		kb.recorder,
    		volumetest.NewBlockVolumePathHandler())
    
    	// TODO: Factor out "stats.Provider" from Kubelet so we don't have a cyclic dependency
    	volumeStatsAggPeriod := time.Second * 10
    	kb.resourceAnalyzer = stats.NewResourceAnalyzer(kb, volumeStatsAggPeriod, kb.recorder)
    	nodeRef := &v1.ObjectReference{
    		Kind:      "Node",
    		Name:      string(kb.nodeName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/gofmt/gofmt.go

    	prev  <-chan *reporterState
    	state *reporterState
    }
    
    // reporterState carries the state of a reporter instance.
    //
    // Only one reporter at a time may have access to a reporterState.
    type reporterState struct {
    	out, err io.Writer
    	exitCode int
    }
    
    // getState blocks until any prior reporters are finished with the reporter
    // state, then returns the state for manipulation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. cmd/consolelogger.go

    }
    
    // String - stringer function for interface compatibility
    func (sys *HTTPConsoleLoggerSys) String() string {
    	return logger.ConsoleLoggerTgt
    }
    
    // Stats returns the target statistics.
    func (sys *HTTPConsoleLoggerSys) Stats() types.TargetStats {
    	return types.TargetStats{
    		TotalMessages:  atomic.LoadInt64(&sys.totalMessages),
    		FailedMessages: atomic.LoadInt64(&sys.failedMessages),
    		QueueLength:    0,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/internal/trace/summary_test.go

    	}
    }
    
    func basicGoroutineExecStatsChecks(t *testing.T, stats *trace.GoroutineExecStats) {
    	if stats.ExecTime < 0 {
    		t.Error("found negative ExecTime")
    	}
    	if stats.SchedWaitTime < 0 {
    		t.Error("found negative SchedWaitTime")
    	}
    	if stats.SyscallTime < 0 {
    		t.Error("found negative SyscallTime")
    	}
    	if stats.SyscallBlockTime < 0 {
    		t.Error("found negative SyscallBlockTime")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/os/os_windows_test.go

    	linkInfo, err := linkFile.Stat()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !linkInfo.IsDir() {
    		t.Errorf("Open(%#q).Stat().IsDir() = false; want true", absLink)
    	}
    
    	absInfo, err := os.Stat(absDir)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if !os.SameFile(absInfo, linkInfo) {
    		t.Errorf("SameFile(Stat(%#q), Open(%#q).Stat()) = false; want true", absDir, absLink)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top