Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 756 for layers (0.11 sec)

  1. tests/integration/pilot/testdata/gateway-api-crd.yaml

                        description: |-
                          Labels that SHOULD be applied to any resources created in response to this Gateway.
    
    
                          For implementations creating other Kubernetes objects, this should be the `metadata.labels` field on resources.
                          For other implementations, this refers to any relevant (implementation specific) "labels" concepts.
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  2. cmd/metrics-v3-bucket-replication.go

    					m.Set(bucketReplLastMinFailedCount, float64(stat.Failed.LastMinute.Count), labels...)
    					m.Set(bucketReplProxiedDeleteTaggingRequestsTotal, float64(s.ProxyStats.RmvTagTotal), labels...)
    					m.Set(bucketReplProxiedGetRequestsFailures, float64(s.ProxyStats.GetFailedTotal), labels...)
    					m.Set(bucketReplProxiedGetRequestsTotal, float64(s.ProxyStats.GetTotal), labels...)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/bookinfo-dualstack.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: details
      labels:
        app: details
        service: details
    spec:
      ipFamilyPolicy: RequireDualStack
      ipFamilies: [IPv6, IPv4]
      ports:
      - port: 9080
        name: http
      selector:
        app: details
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: bookinfo-details
      labels:
        account: details
    ---
    apiVersion: apps/v1
    kind: Deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	}
    
    	// in case pod is not found when init EndpointBuilder.
    	networkID := network.ID(b.labels[label.TopologyNetwork.Name])
    	if networkID == "" {
    		networkID = b.endpointNetwork(endpointAddress)
    		b.labels[label.TopologyNetwork.Name] = string(networkID)
    	}
    
    	return &model.IstioEndpoint{
    		Labels:                b.labels,
    		ServiceAccount:        b.serviceAccount,
    		Locality:              b.locality,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/runtime/pprof/label.go

    	value string
    }
    
    // LabelSet is a set of labels.
    type LabelSet struct {
    	list []label
    }
    
    // labelContextKey is the type of contextKeys used for profiler labels.
    type labelContextKey struct{}
    
    func labelValue(ctx context.Context) labelMap {
    	labels, _ := ctx.Value(labelContextKey{}).(*labelMap)
    	if labels == nil {
    		return labelMap(nil)
    	}
    	return *labels
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/runtime/proflabel.go

    	// is important because profBuf.read will observe different
    	// labels set by different setProfLabel operations on
    	// different goroutines, so it needs to synchronize with all
    	// of them (this wouldn't be an issue if we could synchronize
    	// on &getg().labels since we would synchronize with each
    	// most-recent labels write separately.)
    	//
    	// racereleasemerge is like a full read-modify-write on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    		},
    	}
    
    	if external && features.CanonicalServiceForMeshExternalServiceEntry {
    		if svc.Attributes.Labels == nil {
    			svc.Attributes.Labels = make(map[string]string)
    		}
    		svc.Attributes.Labels["service.istio.io/canonical-name"] = configNamespace
    		svc.Attributes.Labels["service.istio.io/canonical-revision"] = "latest"
    	}
    
    	svcPorts := make(model.PortList, 0, len(ports))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. samples/bookinfo/platform/kube/bookinfo-psa.yaml

    kind: Service
    metadata:
      name: details
      labels:
        app: details
        service: details
    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: details
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: bookinfo-details
      labels:
        account: details
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: details-v1
      labels:
        app: details
        version: v1
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/bookinfo.yaml

    kind: Service
    metadata:
      name: details
      labels:
        app: details
        service: details
    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: details
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: bookinfo-details
      labels:
        account: details
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: details-v1
      labels:
        app: details
        version: v1
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. pkg/kube/krt/filter.go

    		}
    		return false
    	}
    	if f.labels != nil && !labels.Instance(f.labels).SubsetOf(getLabels(object)) {
    		if log.DebugEnabled() {
    			log.Debugf("no match labels: %q vs %q", f.labels, getLabels(object))
    		}
    		return false
    	}
    	if f.generic != nil && !f.generic(object) {
    		if log.DebugEnabled() {
    			log.Debugf("no match generic")
    		}
    		return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top