Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 315 for unlabel (0.14 sec)

  1. src/crypto/md5/gen.go

    	Table4     []uint32
    }
    
    var funcs = template.FuncMap{
    	"dup":     dup,
    	"relabel": relabel,
    	"rotate":  rotate,
    	"idx":     idx,
    	"seq":     seq,
    }
    
    func dup(count int, x []int) []int {
    	var out []int
    	for i := 0; i < count; i++ {
    		out = append(out, x...)
    	}
    	return out
    }
    
    func relabel(s string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. tests/integration/pilot/revisions/revision_tag_test.go

    					// Expect the specified revision to inject for the namespace with the
    					// given injection label
    					revTagNs := namespace.NewOrFail(t, t, namespace.Config{
    						Prefix: "revision-tag",
    					})
    					nsLabelParts := strings.Split(tc.nsLabel, "=")
    					if len(nsLabelParts) != 2 {
    						t.Fatalf("invalid namespace label %s", tc.nsLabel)
    					}
    					if err := revTagNs.SetLabel(nsLabelParts[0], nsLabelParts[1]); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/stmt.go

    	// special case for a receive where we throw away
    	// the value received.
    	case ir.ORECV:
    		n := n.(*ir.UnaryExpr)
    		return walkRecv(n)
    
    	case ir.OBREAK,
    		ir.OCONTINUE,
    		ir.OFALL,
    		ir.OGOTO,
    		ir.OLABEL,
    		ir.OJUMPTABLE,
    		ir.OINTERFACESWITCH,
    		ir.ODCL,
    		ir.OCHECKNIL:
    		return n
    
    	case ir.OBLOCK:
    		n := n.(*ir.BlockStmt)
    		walkStmtList(n.List)
    		return n
    
    	case ir.OCASE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/deploymentconfig-with-canonical-service-label.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. cmd/os-readdir_test.go

    			testResults = append(testResults, result{dir, entries})
    			t.Fatalf("Unable to create a file, %s", err)
    		}
    		// Symlink will not be added to entries.
    		if err := os.Symlink(filepath.Join(dir, name1), filepath.Join(dir, name2)); err != nil {
    			t.Fatalf("Unable to create a symlink, %s", err)
    		}
    		// Add to entries.
    		entries = append(entries, name1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. 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)
  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/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)
  9. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    			switch pType {
    			case "heap":
    				const javaHeapzSamplingRate = 524288 // 512K
    				if s.Value[0] == 0 {
    					return nil, nil, fmt.Errorf("parsing sample %s: second value must be non-zero", line)
    				}
    				s.NumLabel = map[string][]int64{"bytes": {s.Value[1] / s.Value[0]}}
    				s.Value[0], s.Value[1] = scaleHeapSample(s.Value[0], s.Value[1], javaHeapzSamplingRate)
    			case "contention":
    				if period := p.Period; period != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. 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)
Back to top