Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 125 for unlabel (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/asm/internal/asm/asm.go

    		}
    	}
    	if p.firstProg == nil {
    		p.firstProg = prog
    	} else {
    		p.lastProg.Link = prog
    	}
    	p.lastProg = prog
    	if doLabel {
    		p.pc++
    		for _, label := range p.pendingLabels {
    			if p.labels[label] != nil {
    				p.errorf("label %q multiply defined", label)
    				return
    			}
    			p.labels[label] = prog
    		}
    		p.pendingLabels = p.pendingLabels[0:0]
    	}
    	prog.Pc = p.pc
    	if *flags.Debug {
    		fmt.Println(p.lineNum, prog)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. src/runtime/pprof/proto.go

    	b.pb.uint64s(tagSample_Location, locs)
    	if labels != nil {
    		labels()
    	}
    	b.pb.endMessage(tagProfile_Sample, start)
    	b.flush()
    }
    
    // pbLabel encodes a Label message to b.pb.
    func (b *profileBuilder) pbLabel(tag int, key, str string, num int64) {
    	start := b.pb.startMessage()
    	b.pb.int64Opt(tagLabel_Key, b.stringIndex(key))
    	b.pb.int64Opt(tagLabel_Str, b.stringIndex(str))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  7. pkg/kubelet/certificate/bootstrap/bootstrap.go

    		if err != nil {
    			return nil, nil, fmt.Errorf("unable to load kubeconfig: %v", err)
    		}
    		klog.V(2).InfoS("No bootstrapping requested, will use kubeconfig")
    		return clientConfig, restclient.CopyConfig(clientConfig), nil
    	}
    
    	store, err := certificate.NewFileStore("kubelet-client", certDir, certDir, "", "")
    	if err != nil {
    		return nil, nil, fmt.Errorf("unable to build bootstrap cert store")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  8. src/internal/profile/merge.go

    		Value:    make([]int64, len(src.Value)),
    		Label:    make(map[string][]string, len(src.Label)),
    		NumLabel: make(map[string][]int64, len(src.NumLabel)),
    		NumUnit:  make(map[string][]string, len(src.NumLabel)),
    	}
    	for i, l := range src.Location {
    		s.Location[i] = pm.mapLocation(l)
    	}
    	for k, v := range src.Label {
    		vv := make([]string, len(v))
    		copy(vv, v)
    		s.Label[k] = vv
    	}
    	for k, v := range src.NumLabel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  9. cmd/server-main.go

    	v, _, _, err := env.LookupEnv(config.EnvArgs)
    	if err != nil {
    		logger.FatalIf(err, "Unable to validate passed arguments in %s:%s",
    			config.EnvArgs, os.Getenv(config.EnvArgs))
    	}
    	if v == "" {
    		v, _, _, err = env.LookupEnv(config.EnvVolumes)
    		if err != nil {
    			logger.FatalIf(err, "Unable to validate passed arguments in %s:%s",
    				config.EnvVolumes, os.Getenv(config.EnvVolumes))
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  10. pkg/test/kube/dump.go

    				if err != nil {
    					scopes.Framework.Warnf("Unable to get core dumps %v for cluster/pod: %s/%s/%s: %v",
    						cd, c.Name(), pod.Namespace, pod.Name, err)
    					continue
    				}
    				fname := podOutputPath(workDir, c, pod, filepath.Base(cd))
    				if err = os.WriteFile(fname, []byte(stdout), os.ModePerm); err != nil {
    					scopes.Framework.Warnf("Unable to write envoy core dump log for cluster/pod: %s/%s/%s: %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top