Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Lbl (1.73 sec)

  1. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    	for _, m := range mf.Metric {
    		for _, lbl := range m.Label {
    			if alias, ok := nameMapping[*lbl.Name]; ok {
    				lbl.Name = &alias
    			}
    		}
    	}
    }
    
    func filterMetricsByLabels(mf *dto.MetricFamily, labelValues map[string]string) {
    	buf := mf.Metric[:0]
    	for _, m := range mf.Metric {
    		shouldRemove := false
    		for _, lbl := range m.Label {
    			if val, ok := labelValues[*lbl.Name]; ok && val != *lbl.Value {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. cmd/bucket-replication-metrics.go

    	histBytes  metrics.Histogram
    }
    
    func newInQueueStats(r metrics.Registry, lbl string) InQueueStats {
    	histCounts := metrics.NewHistogram(metrics.NewUniformSample(100))
    	histBytes := metrics.NewHistogram(metrics.NewUniformSample(100))
    
    	r.Register("replication.queue.counts."+lbl, histCounts)
    	r.Register("replication.queue.bytes."+lbl, histBytes)
    
    	return InQueueStats{
    		histCounts: histCounts,
    		histBytes:  histBytes,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. istioctl/pkg/injector/injector-list.go

    }
    
    func injectionDisabled(pod *corev1.Pod) bool {
    	inject := pod.ObjectMeta.GetAnnotations()[annotation.SidecarInject.Name]
    	if lbl, labelPresent := pod.ObjectMeta.GetLabels()[label.SidecarInject.Name]; labelPresent {
    		inject = lbl
    	}
    	return strings.EqualFold(inject, "false")
    }
    
    func renderCounts(injectedRevision string, counts revisionCount) string {
    	if counts.pods == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 03:08:06 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. cni/pkg/plugin/plugin.go

    		return nil
    	}
    
    	val := pi.Annotations[injectAnnotationKey]
    	if lbl, labelPresent := pi.Labels[label.SidecarInject.Name]; labelPresent {
    		// The label is the new API; if both are present we prefer the label
    		val = lbl
    	}
    	if val != "" {
    		log.Debugf("contains inject annotation: %s", val)
    		if injectEnabled, err := strconv.ParseBool(val); err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. pkg/kube/inject/inject.go

    	var useDefault bool
    	var inject bool
    
    	objectSelector := annos[annotation.SidecarInject.Name]
    	if lbl, labelPresent := metadata.GetLabels()[label.SidecarInject.Name]; labelPresent {
    		// The label is the new API; if both are present we prefer the label
    		objectSelector = lbl
    	}
    	switch strings.ToLower(objectSelector) {
    	// http://yaml.org/type/bool.html
    	case "y", "yes", "true", "on":
    		inject = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. src/go/parser/resolver.go

    			}
    		}
    
    	case *ast.InterfaceType:
    		r.openScope(n.Pos())
    		defer r.closeScope()
    		r.walkFieldList(n.Methods, ast.Fun)
    
    	// Statements
    	case *ast.LabeledStmt:
    		r.declare(n, nil, r.labelScope, ast.Lbl, n.Label)
    		ast.Walk(r, n.Stmt)
    
    	case *ast.AssignStmt:
    		r.walkExprs(n.Rhs)
    		if n.Tok == token.DEFINE {
    			r.shortVarDecl(n)
    		} else {
    			r.walkExprs(n.Lhs)
    		}
    
    	case *ast.BranchStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/bugreport/bugreport.go

    Proxy logs can be filtered using:
      --include|--exclude ns1,ns2.../dep1,dep2.../pod1,pod2.../lbl1=val1,lbl2=val2.../ann1=val1,ann2=val2.../cntr1,cntr...
    where ns=namespace, dep=deployment, lbl=label, ann=annotation, cntr=container
    
    The filter spec is interpreted as 'must be in (ns1 OR ns2) AND (dep1 OR dep2) AND (cntr1 OR cntr2)...'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. src/go/parser/parser_test.go

    		"p":   ast.Bad, // not in a scope
    		"fmt": ast.Bad, // not resolved yet
    		"pi":  ast.Con,
    		"T":   ast.Typ,
    		"x":   ast.Var,
    		"int": ast.Bad, // not resolved yet
    		"f":   ast.Fun,
    		"L":   ast.Lbl,
    	}
    
    	ast.Inspect(f, func(n ast.Node) bool {
    		if ident, ok := n.(*ast.Ident); ok {
    			obj := ident.Obj
    			if obj == nil {
    				if objects[ident.Name] != ast.Bad {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top