Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 211 for dataSource (0.14 sec)

  1. docs/metrics/prometheus/grafana/minio-dashboard.json

    {
      "annotations": {
        "list": [
          {
            "builtIn": 1,
            "datasource": {
              "type": "datasource",
              "uid": "grafana"
            },
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "target": {
              "limit": 100,
              "matchAny": false,
              "tags": [],
              "type": "dashboard"
            },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/istio-mesh-dashboard.json

          },
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "refId": "A"
            }
          ],
          "transparent": true,
          "type": "text"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/node/minio-node.json

    {
      "annotations": {
        "list": [
          {
            "builtIn": 1,
            "datasource": {
              "type": "datasource",
              "uid": "grafana"
            },
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "type": "dashboard"
          }
        ]
      },
      "__inputs": [
        {
          "name": "DS_PROMETHEUS",
          "label": "Prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 13:24:37 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

    {
      "annotations": {
        "list": [
          {
            "builtIn": 1,
            "datasource": {
              "type": "datasource",
              "uid": "grafana"
            },
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "type": "dashboard"
          }
        ]
      },
     "__inputs": [
        { 
          "name": "DS_PROMETHEUS",
          "label": "Prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

    {
      "annotations": {
        "list": [
          {
            "builtIn": 1,
            "datasource": {
              "type": "datasource",
              "uid": "grafana"
            },
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "type": "dashboard"
          }
        ]
      },
     "__inputs": [
        { 
          "name": "DS_PROMETHEUS",
          "label": "Prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceDatabase.java

                config.setMaxLifetime(MAX_LIFETIME_MS);
                dataSource = new HikariDataSource(config);
    
                executeInitializers(dataSource);
            }
            return dataSource.getConnection();
        }
    
        private void executeInitializers(DataSource dataSource) throws SQLException {
            try (Connection connection = dataSource.getConnection()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. pkg/api/persistentvolumeclaim/util.go

    		return false
    	}
    	if oldPVCSpec.DataSource != nil || oldPVCSpec.DataSourceRef != nil {
    		return true
    	}
    	return false
    }
    
    func dataSourceIsPvcOrSnapshot(dataSource *core.TypedLocalObjectReference) bool {
    	if dataSource != nil {
    		apiGroup := ""
    		if dataSource.APIGroup != nil {
    			apiGroup = *dataSource.APIGroup
    		}
    		if dataSource.Kind == pvc &&
    			apiGroup == "" {
    			return true
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. pkg/registry/core/persistentvolumeclaim/storage/storage_test.go

    			pvc := new(api.PersistentVolumeClaim)
    			if test.dataSource {
    				pvc.Spec.DataSource = dataSource.DeepCopy()
    			}
    			if test.dataSourceRef {
    				pvc.Spec.DataSourceRef = dataSourceRef.DeepCopy()
    			}
    			var expectDataSource *api.TypedLocalObjectReference
    			if test.want {
    				expectDataSource = &dataSource
    			}
    			var expectDataSourceRef *api.TypedObjectReference
    			if test.wantRef {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. pkg/api/persistentvolumeclaim/util_test.go

    			spec: validSpec,
    			want: validSpec.DataSource,
    		},
    		"enabled with valid spec but nil APIGroup": {
    			spec: validSpecNilAPIGroup,
    			want: validSpecNilAPIGroup.DataSource,
    		},
    	}
    
    	for testName, test := range tests {
    		t.Run(testName, func(t *testing.T) {
    			EnforceDataSourceBackwardsCompatibility(&test.spec, nil)
    			if test.spec.DataSource != test.want {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. pkg/registry/core/persistentvolumeclaim/strategy_test.go

    				Spec: api.PersistentVolumeClaimSpec{
    					DataSource:    test.dataSource,
    					DataSourceRef: test.dataSourceRef,
    				},
    			}
    
    			// Method under test
    			Strategy.PrepareForCreate(ctx, &pvc)
    
    			if !reflect.DeepEqual(pvc.Spec.DataSource, test.want) {
    				t.Errorf("data source does not match, test: %s, anyEnabled: %v, dataSource: %v, expected: %v",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top