Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for x_name (0.11 sec)

  1. manifests/addons/dashboards/pilot-dashboard.gen.json

                         "id": "byName",
                         "options": "lds"
                      },
                      "properties": [
                         {
                            "id": "displayName",
                            "value": "Listeners"
                         }
                      ]
                   },
                   {
                      "matcher": {
                         "id": "byName",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/minio-dashboard.json

            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "target": {
              "limit": 100,
              "matchAny": false,
              "tags": [],
              "type": "dashboard"
            },
            "type": "dashboard"
          }
        ]
      },
      "__inputs": [
        {
          "name": "DS_PROMETHEUS",
          "label": "Prometheus",
          "description": "", 
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                parallelizationMethod,
                subprojects.map { it.name }
            )
    
        override fun getName(testCoverage: TestCoverage) = truncateName("${testCoverage.asName()} (${subprojects.joinToString(",") { it.name }})")
    
        override fun getDescription(testCoverage: TestCoverage) = "${testCoverage.asName()} for ${subprojects.joinToString(", ") { it.name }}"
    
        fun toJsonBucket(): FunctionalTestBucket {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 05:14:09 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/output/v1alpha3/types.go

    	// ExternallyManaged defines if the certificate is externally managed.
    	ExternallyManaged bool `json:"externallyManaged"`
    
    	// CAName represents the name of the CA that signed the certificate.
    	// This field is empty for self-signed, root CA certificates.
    	CAName string `json:"caName,omitempty"`
    
    	// Missing represents if the certificate is missing.
    	Missing bool `json:"missing"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    		exist: false,
    	}
    	tests := []struct {
    		name    string
    		cas     map[string]*CAExpirationHandler
    		caName  string
    		want    bool
    		wantErr bool
    	}{
    		{
    			name:    "caName does not exist in cas list",
    			cas:     map[string]*CAExpirationHandler{},
    			caName:  "foo",
    			want:    false,
    			wantErr: true,
    		},
    		{
    			name: "ca exists",
    			cas: map[string]*CAExpirationHandler{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/Os.kt

     */
    
    package common
    
    enum class Arch(val suffix: String, val nameOnLinuxWindows: String, val nameOnMac: String) {
        AMD64("64bit", "amd64", "x86_64"),
        AARCH64("aarch64", "aarch64", "aarch64");
    
        fun asName() = name.lowercase().toCapitalized()
    }
    
    enum class Os(
        val agentRequirement: String,
        val androidHome: String,
        val jprofilerHome: String,
        val perfTestWorkingDir: String = "%teamcity.build.checkoutDir%",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	f := new(Field)
    	f.pos = pos
    
    	if p.tok == _Name || name != nil {
    		// name
    		if name == nil {
    			name = p.name()
    		}
    
    		if p.tok == _Lbrack {
    			// name "[" ...
    			f.Type = p.arrayOrTArgs()
    			if typ, ok := f.Type.(*IndexExpr); ok {
    				// name "[" ... "]"
    				typ.X = name
    			} else {
    				// name "[" n "]" E
    				f.Name = name
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    		t.Fatalf("Couldn't close tmpfile: %v", err)
    	}
    
    	tests := []struct {
    		name     string
    		filename string
    		want     bool
    	}{
    		{
    			name:     "file exist",
    			filename: tmpfile.Name(),
    			want:     true,
    		},
    		{
    			name:     "file does not exist",
    			filename: "foo",
    			want:     false,
    		},
    		{
    			name:     "file path is a dir",
    			filename: tmpdir,
    			want:     false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/lib/panels.libsonnet

    local g = import 'g.libsonnet';
    
    
    local overrideSeries = function(series, override)
      g.panel.timeSeries.fieldOverride.byName.new(series)
      + g.panel.timeSeries.fieldOverride.byName.withProperty(
        'displayName',
        override
      );
    
    {
      timeSeries: {
        local timeSeries = g.panel.timeSeries,
        local fieldOverride = g.panel.timeSeries.fieldOverride,
        local custom = timeSeries.fieldConfig.defaults.custom,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/configmap.go

    		return sharedCfgMapName, nil
    	}
    
    	cmName := "istio"
    	if rev := mc.revisions.Default(); rev != "default" && rev != "" {
    		cmName += "-" + rev
    	}
    	return cmName, nil
    }
    
    func (cm *configMap) getConfigMap(c cluster.Cluster, name string) (*corev1.ConfigMap, error) {
    	return c.Kube().CoreV1().ConfigMaps(cm.namespace).Get(context.TODO(), name, metav1.GetOptions{})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top