Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for counter2 (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/net/http/transport_test.go

    	conn, err := d.dialer.DialContext(ctx, network, address)
    	if err != nil {
    		return nil, err
    	}
    
    	counted := new(countedConn)
    	counted.Conn = conn
    
    	d.mu.Lock()
    	defer d.mu.Unlock()
    	d.total++
    	d.live++
    
    	runtime.SetFinalizer(counted, d.decrement)
    	return counted, nil
    }
    
    func (d *countingDialer) decrement(*countedConn) {
    	d.mu.Lock()
    	defer d.mu.Unlock()
    	d.live--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    // one of these wrappers, the rewritten receiver is almost certainly a different type
    // than the original receiver. This is not a problem on the stack, where we use the
    // program counter to determine the type information and understand that
    // during (*Outer).M the receiver is an *Outer while during (*Inner).M the receiver in the same
    // memory word is now an *Inner. But in the statically typed argument frame created
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top