Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 547 for desc1 (0.21 sec)

  1. cmd/metrics-v3-types.go

    	for metricName, mv := range m.values {
    		desc := m.descriptors[metricName]
    		promDesc := desc.toPromDesc(namePrefix, extraLabels)
    		for _, v := range mv {
    			// labelValues is in the same order as the variable labels in the
    			// descriptor.
    			labelValues := make([]string, 0, len(v.Labels))
    			for _, k := range desc.VariableLabels {
    				labelValues = append(labelValues, v.Labels[k])
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. pkg/kubelet/metrics/collectors/volume_stats.go

    	podStats, err := collector.statsProvider.ListPodStats(ctx)
    	if err != nil {
    		return
    	}
    	addGauge := func(desc *metrics.Desc, pvcRef *stats.PVCReference, v float64, lv ...string) {
    		lv = append([]string{pvcRef.Namespace, pvcRef.Name}, lv...)
    		ch <- metrics.NewLazyConstMetric(desc, metrics.GaugeValue, v, lv...)
    	}
    	allPVCs := sets.Set[string]{}
    	for _, podStat := range podStats {
    		if podStat.VolumeStats == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. src/net/http/fcgi/fcgi_test.go

    				t.Errorf("%s: error reading record: %v", test.desc, err)
    				continue outer
    			}
    			content = append(content, rec.content()...)
    		}
    		if rec.h.Type != test.recType {
    			t.Errorf("%s: got type %d expected %d", test.desc, rec.h.Type, test.recType)
    			continue
    		}
    		if rec.h.Id != test.reqId {
    			t.Errorf("%s: got request ID %d expected %d", test.desc, rec.h.Id, test.reqId)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/schema/group_version_test.go

    func TestToAPIVersionAndKind(t *testing.T) {
    	tests := []struct {
    		desc         string
    		input        GroupVersionKind
    		GroupVersion string
    		Kind         string
    	}{
    		{
    			desc:         "gvk object is not empty",
    			input:        GroupVersionKind{Version: "V1", Kind: "pod"},
    			GroupVersion: "V1",
    			Kind:         "pod",
    		},
    		{
    			desc:         "gvk object is empty",
    			input:        GroupVersionKind{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 15 01:46:00 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics_test.go

    		"apiextensions_apiserver_validation_ratcheting_seconds",
    	}
    
    	testCases := []struct {
    		desc   string
    		obj    *unstructured.Unstructured
    		old    *unstructured.Unstructured
    		schema apiextensions.JSONSchemaProps
    		iters  int // how many times to validate the same update before checking metric
    		want   string
    	}{
    		{
    			desc: "valid noop update",
    			obj: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (1)
  6. src/cmd/fix/main.go

    	for _, f := range fixes {
    		if f.disabled {
    			fmt.Fprintf(os.Stderr, "\n%s (disabled)\n", f.name)
    		} else {
    			fmt.Fprintf(os.Stderr, "\n%s\n", f.name)
    		}
    		desc := strings.TrimSpace(f.desc)
    		desc = strings.ReplaceAll(desc, "\n", "\n\t")
    		fmt.Fprintf(os.Stderr, "\t%s\n", desc)
    	}
    	os.Exit(2)
    }
    
    func main() {
    	telemetry.Start()
    	flag.Usage = usage
    	flag.Parse()
    	telemetry.Inc("fix/invocations")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service_unix_test.go

    			wantErr:     "rpc error: code = DeadlineExceeded desc = context deadline exceeded",
    		},
    		{
    			desc:               "timeout zero but kms-plugin already up - still failure - zero timeout is an invalid value",
    			callTimeout:        0 * time.Second,
    			pluginDelay:        0 * time.Second,
    			kubeAPIServerDelay: 2 * time.Second,
    			wantErr:            "rpc error: code = DeadlineExceeded desc = context deadline exceeded",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. src/crypto/x509/boring_test.go

    		pkey = parent.key
    	} else {
    		pcert = tmpl
    		pkey = key
    	}
    
    	var pub interface{}
    	var desc string
    	switch k := key.(type) {
    	case *rsa.PrivateKey:
    		pub = &k.PublicKey
    		desc = fmt.Sprintf("RSA-%d", k.N.BitLen())
    	case *ecdsa.PrivateKey:
    		pub = &k.PublicKey
    		desc = "ECDSA-" + k.Curve.Params().Name
    	default:
    		t.Fatalf("invalid key %T", key)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 17:38:47 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. src/io/fs/stat_test.go

    func TestStat(t *testing.T) {
    	check := func(desc string, info FileInfo, err error) {
    		t.Helper()
    		if err != nil || info == nil || info.Mode() != 0456 {
    			infoStr := "<nil>"
    			if info != nil {
    				infoStr = fmt.Sprintf("FileInfo(Mode: %#o)", info.Mode())
    			}
    			t.Fatalf("Stat(%s) = %v, %v, want Mode:0456, nil", desc, infoStr, err)
    		}
    	}
    
    	// Test that Stat uses the method when present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 17:53:02 UTC 2020
    - 949 bytes
    - Viewed (0)
  10. pkg/kubelet/nodeshutdown/systemd/inhibit_linux_test.go

    func TestMonitorShutdown(t *testing.T) {
    	var tests = []struct {
    		desc           string
    		shutdownActive bool
    	}{
    		{
    			desc:           "shutdown is active",
    			shutdownActive: true,
    		},
    		{
    			desc:           "shutdown is not active",
    			shutdownActive: false,
    		},
    	}
    
    	for _, tc := range tests {
    		tc := tc
    		t.Run(tc.desc, func(t *testing.T) {
    			fakeSystemBus := &fakeSystemDBus{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 19:50:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top