Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 288 for unlabel (0.22 sec)

  1. src/internal/profile/encode.go

    	// repeated Label label = 3
    	func(b *buffer, m message) error {
    		s := m.(*Sample)
    		n := len(s.labelX)
    		s.labelX = append(s.labelX, Label{})
    		return decodeMessage(b, &s.labelX[n])
    	},
    }
    
    func (p Label) decoder() []decoder {
    	return labelDecoder
    }
    
    func (p Label) encode(b *buffer) {
    	encodeInt64Opt(b, 1, p.keyX)
    	encodeInt64Opt(b, 2, p.strX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    	// repeated Label label = 3
    	func(b *buffer, m message) error {
    		s := m.(*Sample)
    		n := len(s.labelX)
    		s.labelX = append(s.labelX, label{})
    		return decodeMessage(b, &s.labelX[n])
    	},
    }
    
    func (p label) decoder() []decoder {
    	return labelDecoder
    }
    
    func (p label) encode(b *buffer) {
    	encodeInt64Opt(b, 1, p.keyX)
    	encodeInt64Opt(b, 2, p.strX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    		}
    		if matchHide {
    			hm = true
    		}
    		return !matchShow || matchHide
    	}
    	for _, s := range p.Sample {
    		for lab := range s.Label {
    			if matchRemove(lab) {
    				delete(s.Label, lab)
    			}
    		}
    		for lab := range s.NumLabel {
    			if matchRemove(lab) {
    				delete(s.NumLabel, lab)
    			}
    		}
    	}
    	return
    }
    
    // matchesName returns whether the location matches the regular
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	if !exists {
    		// The old label doesn't already exist on the deployment; use the new label
    		return
    	}
    
    	// The old label exists on the deployment; use the old label
    	ti.GatewayNameLabel = constants.DeprecatedGatewayNameLabel
    }
    
    type TemplateInput struct {
    	*gateway.Gateway
    	DeploymentName            string
    	ServiceAccount            string
    	Ports                     []corev1.ServicePort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/internal/profile/profile.go

    	Location []*Location
    	Value    []int64
    	Label    map[string][]string
    	NumLabel map[string][]int64
    	NumUnit  map[string][]string
    
    	locationIDX []uint64
    	labelX      []Label
    }
    
    // Label corresponds to Profile.Label
    type Label struct {
    	keyX int64
    	// Exactly one of the two following values must be set
    	strX int64
    	numX int64 // Integer value for this label
    }
    
    // Mapping corresponds to Profile.Mapping
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. tests/integration/pilot/revisioned_upgrade_test.go

    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		// Requires installation of CPs from manifests, won't succeed
    		// if existing CPs have different root cert
    		Label(label.CustomSetup).
    		Run(func(t framework.TestContext) {
    			t.Skip("https://github.com/istio/istio/pull/46213")
    			// Kubernetes 1.22 drops support for a number of legacy resources, so we cannot install the old versions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint-no-network-label.yaml

    John Howard <******@****.***> 1717022463 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	}
    	if len(list) != 2 {
    		t.Errorf("unexpected list returned: %#v", list)
    	}
    	if indexUsed != "l:label" {
    		t.Errorf("Used index %q but expected %q", indexUsed, "l:label")
    	}
    
    	// list with spec.nodeName index.
    	matchValues = []storage.MatchValue{
    		{IndexName: "l:not-exist-label", Value: "whatever"},
    		{IndexName: "f:spec.nodeName", Value: "node2"},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    }
    
    func defaultLabelFormat(v int64, key string) string {
    	return strconv.FormatInt(v, 10)
    }
    
    func (m TagMap) findOrAddTag(label, unit string, value int64) *Tag {
    	l := m[label]
    	if l == nil {
    		l = &Tag{
    			Name:  label,
    			Unit:  unit,
    			Value: value,
    		}
    		m[label] = l
    	}
    	return l
    }
    
    // String returns a text representation of a graph, for debugging purposes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. src/image/gif/writer.go

    			transparentIndex = i
    			break
    		}
    	}
    
    	if delay > 0 || disposal != 0 || transparentIndex != -1 {
    		e.buf[0] = sExtension  // Extension Introducer.
    		e.buf[1] = gcLabel     // Graphic Control Label.
    		e.buf[2] = gcBlockSize // Block Size.
    		if transparentIndex != -1 {
    			e.buf[3] = 0x01 | disposal<<2
    		} else {
    			e.buf[3] = 0x00 | disposal<<2
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top