Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 547 for _counters (1.43 sec)

  1. pkg/kubelet/metrics/metrics.go

    		[]string{"static"},
    	)
    	// StartedPodsTotal is a counter that tracks pod sandbox creation operations
    	StartedPodsTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           StartedPodsTotalKey,
    			Help:           "Cumulative number of pods started",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    	// StartedPodsErrorsTotal is a counter that tracks the number of errors creating pod sandboxes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. src/internal/coverage/cfile/emitdata_test.go

    		t.Skip("skipped due to lack of race detector support / CGO")
    	}
    
    	// This will run a program with -cover and -race where we have a
    	// goroutine still running (and updating counters) at the point where
    	// the test runtime is trying to write out counter data.
    	cmd := exec.Command(testenv.GoToolPath(t), "test", "-cover", "-race")
    	cmd.Dir = filepath.Join("testdata", "issue56006")
    	b, err := cmd.CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/metrics/metrics.go

    	}
    }
    
    func (c *totalVolumesCollector) getVolumeCount() volumeCount {
    	counter := make(volumeCount)
    	for _, mountedVolume := range c.asw.GetMountedVolumes() {
    		pluginName := volumeutil.GetFullQualifiedPluginNameForVolume(mountedVolume.PluginName, mountedVolume.VolumeSpec)
    		if pluginName == "" {
    			pluginName = pluginNameNotAvailable
    		}
    		counter.add("actual_state_of_world", pluginName)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 06 16:48:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. src/crypto/cipher/gcm_test.go

    	// Test that the last 32-bits of the counter wrap correctly.
    	tests := []struct {
    		nonce, tag string
    	}{
    		{"0fa72e25", "37e1948cdfff09fbde0c40ad99fee4a7"},   // counter: 7eb59e4d961dad0dfdd75aaffffffff0
    		{"afe05cc1", "438f3aa9fee5e54903b1927bca26bbdf"},   // counter: 75d492a7e6e6bfc979ad3a8ffffffff4
    		{"9ffecbef", "7b88ca424df9703e9e8611071ec7e16e"},   // counter: c8bb108b0ecdc71747b9d57ffffffff5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
  5. src/runtime/libfuzzer.go

    	end := unsafe.Pointer(&__stop___sancov_cntrs)
    
    	// PC tables are arrays of ptr-sized integers representing pairs [PC,PCFlags] for every instrumented block.
    	// The number of PCs and PCFlags is the same as the number of 8-bit counters. Each PC table entry has
    	// the size of two ptr-sized integers. We allocate one more byte than what we actually need so that we can
    	// get a pointer representing the end of the PC table array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 23 01:12:02 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/TaskNameComparator.java

        }
    
        private int getDepth(String taskName) {
            int counter = 0;
            for (char c : taskName.toCharArray()) {
                if (c == ':') {
                    counter++;
                }
            }
            return counter;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/PageRenderer.java

                    htmlWriter.startElement("td");
                    htmlWriter.startElement("div").attribute("class", "infoBox").attribute("id", "tests");
                    htmlWriter.startElement("div").attribute("class", "counter").characters(Integer.toString(results.getTestCount())).endElement();
                    htmlWriter.startElement("p").characters("tests").endElement();
                    htmlWriter.endElement();
                    htmlWriter.endElement();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. pkg/monitoring/monitortest/test.go

    	metrics, err := reg.Gather()
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, metric := range metrics {
    		for _, row := range metric.Metric {
    			if row.Counter == nil {
    				continue
    			}
    			key := toMetricKey(row, metric)
    			res[key] = *row.Counter.Value
    		}
    	}
    	return res
    }
    
    func toMetricKey(row *dto.Metric, metric *dto.MetricFamily) metricKey {
    	kvs := []attribute.KeyValue{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. src/crypto/aes/ctr_s390x.go

    func xorBytes(dst, a, b []byte) int
    
    // streamBufferSize is the number of bytes of encrypted counter values to cache.
    const streamBufferSize = 32 * BlockSize
    
    type aesctr struct {
    	block   *aesCipherAsm          // block cipher
    	ctr     [2]uint64              // next value of the counter (big endian)
    	buffer  []byte                 // buffer for the encrypted counter values
    	storage [streamBufferSize]byte // array backing buffer slice
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. tensorflow/c/eager/tfe_monitoring_reader_internal.h

    struct TFE_MonitoringCounterReader {
      explicit TFE_MonitoringCounterReader(const char* name) {
        counter = std::make_unique<
            ::tensorflow::monitoring::testing::CellReader<int64_t>>(name);
      }
      template <typename... LabelType>
      int64_t Read(const LabelType&... labels);
      std::unique_ptr<::tensorflow::monitoring::testing::CellReader<int64_t>>
          counter;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 20 03:14:47 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top