Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 655 for counter2 (0.13 sec)

  1. pkg/kubelet/winstats/network_stats.go

    	if err != nil {
    		klog.ErrorS(err, "Unable to get packetsReceivedPerSecond perf counter data")
    		return nil, err
    	}
    
    	packetsSentPerSecondData, err := n.packetsSentPerSecondCounter.getDataList()
    	if err != nil {
    		klog.ErrorS(err, "Unable to get packetsSentPerSecond perf counter data")
    		return nil, err
    	}
    
    	bytesReceivedPerSecondData, err := n.bytesReceivedPerSecondCounter.getDataList()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/internal/fuzz/counters_unsupported.go

    // In theory, we shouldn't need this file at all: if the binary was built
    // without coverage, then _counters and _ecounters should have the same address.
    // However, this caused an init failure on aix/ppc64, so it's disabled here.
    
    // coverage returns a []byte containing unique 8-bit counters for each edge of
    // the instrumented source code. This coverage data will only be generated if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 17:10:57 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

      /**
       * Multiple threads using same array of counters successfully update a number of times equal to
       * total count
       */
      public void testCountingInMultipleThreads() throws InterruptedException {
        final AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
        for (int i = 0; i < SIZE; i++) {
          aa.set(i, (double) COUNTDOWN);
        }
        Counter c1 = new Counter(aa);
        Counter c2 = new Counter(aa);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. pkg/kubelet/winstats/perfcounter_nodestats.go

    		klog.ErrorS(err, "Unable to get cpu perf counter data")
    		return
    	}
    
    	memWorkingSetValue, err := memWorkingSetCounter.getData()
    	if err != nil {
    		klog.ErrorS(err, "Unable to get memWorkingSet perf counter data")
    		return
    	}
    
    	memCommittedBytesValue, err := memCommittedBytesCounter.getData()
    	if err != nil {
    		klog.ErrorS(err, "Unable to get memCommittedBytes perf counter data")
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. cmd/metrics-v3-types.go

    type MetricType int
    
    const (
    	// CounterMT - represents a counter metric.
    	CounterMT MetricType = iota
    	// GaugeMT - represents a gauge metric.
    	GaugeMT
    	// HistogramMT - represents a histogram metric.
    	HistogramMT
    	// rangeL - represents a range label.
    	rangeL = "range"
    )
    
    func (mt MetricType) String() string {
    	switch mt {
    	case CounterMT:
    		return "counter"
    	case GaugeMT:
    		return "gauge"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. testing/soak/src/integTest/groovy/org/gradle/jvm/JavaCompilationSoakTest.groovy

                            options.forkOptions.jvmArgs << "-Dcounter=" + project.property("counter")
                        }
                    }
                """
            }
        }
    
        def "can recompile many times in a row with a changing set of compiler daemons"() {
            expect:
            10.times {
                println("Run $it")
                succeeds("clean", "assemble", "-Pcounter="+it)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s

    // func xorKeyStreamVX(dst, src []byte, key *[8]uint32, nonce *[3]uint32, counter *uint32)
    TEXT ·xorKeyStreamVX(SB), NOSPLIT, $0
    	MOVD $·constants<>(SB), R1
    	MOVD dst+0(FP), R2         // R2=&dst[0]
    	LMG  src+24(FP), R3, R4    // R3=&src[0] R4=len(src)
    	MOVD key+48(FP), R5        // R5=key
    	MOVD nonce+56(FP), R6      // R6=nonce
    	MOVD counter+64(FP), R7    // R7=counter
    
    	// load BSWAP and J0
    	VLM (R1), BSWAP, J0
    
    	// setup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. pkg/volume/flexvolume/mounter-defaults.go

    limitations under the License.
    */
    
    package flexvolume
    
    import (
    	"k8s.io/klog/v2"
    
    	"k8s.io/kubernetes/pkg/volume"
    )
    
    type mounterDefaults flexVolumeMounter
    
    // SetUpAt is part of the volume.Mounter interface.
    // This implementation relies on the attacher's device mount path and does a bind mount to dir.
    func (f *mounterDefaults) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 15:56:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    	const prefix = "crash/crash"
    	return counter.EncodeStack(pcs, prefix), nil
    }
    
    // parseStackPCs parses the parent process's program counters for the
    // first running goroutine out of a GOTRACEBACK=system traceback,
    // adjusting them so that they are valid for the child process's text
    // segment.
    //
    // This function returns only program counter values, ensuring that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

      /**
       * Multiple threads using same array of counters successfully update a number of times equal to
       * total count
       */
      public void testCountingInMultipleThreads() throws InterruptedException {
        final AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
        for (int i = 0; i < SIZE; i++) {
          aa.set(i, (double) COUNTDOWN);
        }
        Counter c1 = new Counter(aa);
        Counter c2 = new Counter(aa);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top