Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for counter1 (0.21 sec)

  1. cluster/gce/gci/configure-helper.sh

        local -r custom_km_config="${KUBE_HOME}/node-problem-detector/config/kernel-monitor-counter.json"
        local -r custom_sm_config="${KUBE_HOME}/node-problem-detector/config/systemd-monitor-counter.json"
    
        flags="${NPD_TEST_LOG_LEVEL:-"--v=2"} ${NPD_TEST_ARGS:-}"
        flags+=" --logtostderr"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      auto scope_exit = [&]() {
        std::function<void()> cleanup = []() {};
        if (!disable_crash_analysis) {
          static std::atomic<uint32> counter(0);
          uint32 current_file_prefix = counter++;
          const auto* graph_crash_handle = crash_analysis::ReportProtoDataOnCrash(
              absl::StrCat(current_file_prefix, "_mlir_import_graph.pbtxt"),
              *graph_def);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    			labels1[*lp.Name] = *lp.Value
    		}
    		labels1["le"] = fmt.Sprintf("%.3f", math.Inf(+1))
    		metrics = append(metrics, MetricV2{
    			Description:    desc,
    			VariableLabels: labels1,
    			Value:          dtoMetric.Counter.GetValue(),
    		})
    	}
    	return metrics
    }
    
    func getBucketTTFBMetric() *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)
  4. pkg/kubelet/kubelet_pods.go

    		mountEtcHostsFile = mountEtcHostsFile && (mount.MountPath != etcHostsPath)
    		vol, ok := podVolumes[mount.Name]
    		if !ok || vol.Mounter == nil {
    			klog.ErrorS(nil, "Mount cannot be satisfied for the container, because the volume is missing or the volume mounter (vol.Mounter) is nil",
    				"containerName", container.Name, "ok", ok, "volumeMounter", mount)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	op_KMC     uint32 = 0xB92F // FORMAT_RRE        CIPHER MESSAGE WITH CHAINING
    	op_KMA     uint32 = 0xB929 // FORMAT_RRF2       CIPHER MESSAGE WITH AUTHENTICATION
    	op_KMCTR   uint32 = 0xB92D // FORMAT_RRF2       CIPHER MESSAGE WITH COUNTER
    	op_KMF     uint32 = 0xB92A // FORMAT_RRE        CIPHER MESSAGE WITH CFB
    	op_KMO     uint32 = 0xB92B // FORMAT_RRE        CIPHER MESSAGE WITH OFB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	// internal/runtime/atomic. If SIGPROF arrives while the program is inside
    	// the critical section, it creates a deadlock (when writing the sample).
    	// As a workaround, create a counter of SIGPROFs while in critical section
    	// to store the count, and pass it to sigprof.add() later when SIGPROF is
    	// received from somewhere else (with _LostSIGPROFDuringAtomic64 as pc).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue_test.go

    )
    
    const queueMetricMetadata = `
    		# HELP scheduler_queue_incoming_pods_total [STABLE] Number of pods added to scheduling queues by event and queue type.
    		# TYPE scheduler_queue_incoming_pods_total counter
    	`
    
    var (
    	NodeAllEvent = framework.ClusterEvent{Resource: framework.Node, ActionType: framework.All}
    
    	lowPriority, midPriority, highPriority = int32(0), int32(100), int32(1000)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    // (e.g. GOEXPERIMENT=coverageredesign is off).
    func DeclareCoverVars(p *Package, files ...string) map[string]*CoverVar {
    	coverVars := make(map[string]*CoverVar)
    	coverIndex := 0
    	// We create the cover counters as new top-level variables in the package.
    	// We need to avoid collisions with user variables (GoCover_0 is unlikely but still)
    	// and more importantly with dot imports of other covered packages,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    		controllerTime       *time.Time
    
    		// pod setup
    
    		// If a podControllerError is set, finalizers are not able to be removed.
    		// This means that there is no status update so the counters for
    		// failedPods and succeededPods cannot be incremented.
    		podControllerError        error
    		pendingPods               int
    		activePods                int
    		readyPods                 int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    func (ab *AsmBuf) Put(b []byte) {
    	copy(ab.buf[ab.off:], b)
    	ab.off += len(b)
    }
    
    // PutOpBytesLit writes zero terminated sequence of bytes from op,
    // starting at specified offset (e.g. z counter value).
    // Trailing 0 is not written.
    //
    // Intended to be used for literal Z cases.
    // Literal Z cases usually have "Zlit" in their name (Zlit, Zlitr_m, Zlitm_r).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top