Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 284 for proc (0.05 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    func ProfileLabels(rpt *Report) []string {
    	label := []string{}
    	prof := rpt.prof
    	o := rpt.options
    	if len(prof.Mapping) > 0 {
    		if prof.Mapping[0].File != "" {
    			label = append(label, "File: "+filepath.Base(prof.Mapping[0].File))
    		}
    		if prof.Mapping[0].BuildID != "" {
    			label = append(label, "Build ID: "+prof.Mapping[0].BuildID)
    		}
    	}
    	// Only include comments that do not start with '#'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9_gtables.go

    }
    
    // brw RA,RS
    func type_brw(c *ctxt9, p *obj.Prog, t *Optab, out *[5]uint32) {
    	o0 := GenOpcodes[p.As-AXXSETACCZ]
    	o0 |= uint32(p.To.Reg&0x1f) << 16   // RA
    	o0 |= uint32(p.From.Reg&0x1f) << 21 // RS
    	out[0] = o0
    }
    
    // hashchkp RB,offset(RA)
    func type_hashchkp(c *ctxt9, p *obj.Prog, t *Optab, out *[5]uint32) {
    	o0 := GenOpcodes[p.As-AXXSETACCZ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  3. src/math/big/ratconv_test.go

    		fdec := test.fdec
    		for i := 0; i < 2; i++ {
    			prec, ok := f.FloatPrec()
    			if prec != test.prec || ok != test.ok {
    				t.Errorf("%s: FloatPrec(%s): got prec, ok = %d, %v; want %d, %v", test.f, &f, prec, ok, test.prec, test.ok)
    			}
    			s := f.FloatString(test.prec)
    			if s != fdec {
    				t.Errorf("%s: FloatString(%s, %d): got %s; want %s", test.f, &f, prec, s, fdec)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            when:
            render conflictingAnnotationsMessage {
                type('Whatever').property('prop')
                inConflict('Input', 'Output')
                includeLink()
            }
    
            then:
            outputEquals """
    Type 'Whatever' property 'prop' has conflicting type annotations declared: @Input, @Output.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  5. src/syscall/exec_plan9.go

    // running process to exit.
    func WaitProcess(pid int, w *Waitmsg) (err error) {
    	procs.Lock()
    	ch := procs.waits[pid]
    	procs.Unlock()
    
    	var wmsg *waitErr
    	if ch != nil {
    		wmsg = <-ch
    		procs.Lock()
    		if procs.waits[pid] == ch {
    			delete(procs.waits, pid)
    		}
    		procs.Unlock()
    	}
    	if wmsg == nil {
    		// ch was missing or ch is closed
    		return NewError("process not found")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. istioctl/pkg/tag/tag.go

    injection labels.`,
    		Example: `  # Create a revision tag from the "1-8-0" revision
      istioctl tag set prod --revision 1-8-0
    
      # Point namespace "test-ns" at the revision pointed to by the "prod" revision tag
      kubectl label ns test-ns istio.io/rev=prod
    
      # Change the revision tag to reference the "1-8-1" revision
      istioctl tag set prod --revision 1-8-1 --overwrite
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. src/cmd/pack/pack_test.go

    	testenv.MustHaveGoBuild(t)
    	testenv.MustInternalLink(t, false)
    
    	dir := t.TempDir()
    	hello := filepath.Join(dir, "hello.go")
    	prog := `
    		package main
    		func main() {
    			println("hello world")
    		}
    	`
    	err := os.WriteFile(hello, []byte(prog), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	run := func(args ...string) string {
    		return doRun(t, dir, args...)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. src/runtime/chan_test.go

    				<-myc
    			}
    		}
    	})
    }
    
    func benchmarkChanSync(b *testing.B, work int) {
    	const CallsPerSched = 1000
    	procs := 2
    	N := int32(b.N / CallsPerSched / procs * procs)
    	c := make(chan bool, procs)
    	myc := make(chan int)
    	for p := 0; p < procs; p++ {
    		go func() {
    			for {
    				i := atomic.AddInt32(&N, -1)
    				if i < 0 {
    					break
    				}
    				for g := 0; g < CallsPerSched; g++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  9. tests/integration/helm/upgrade/util.go

    		//    -s templates/revision-tags.yaml --set revision=latest --set revisionTags={prod}
    		helmtest.SetRevisionTag(t, h, "", latestRevisionTag, prodTag, helmtest.ManifestsChartPath, "")
    
    		// change the old namespace that was pointing to the old prod (1-15-0) to point to the
    		// 'latest' revision by setting the `istio.io/rev=prod` label on the namespace
    		err := oldNs.SetLabel(label.IoIstioRev.Name, prodTag)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/objz.go

    	}
    }
    
    // stacksplitPre generates the function stack check prologue following
    // Prog p (which should be the TEXT Prog). It returns one or two
    // branch Progs that must be patched to jump to the morestack epilogue,
    // and the Prog that starts the morestack check.
    func (c *ctxtz) stacksplitPre(p *obj.Prog, framesize int32) (pPre, pPreempt, pCheck *obj.Prog) {
    	if c.ctxt.Flag_maymorestack != "" {
    		// Save LR and REGCTXT
    		const frameSize = 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
Back to top