Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 7,702 for p$ (0.03 sec)

  1. pilot/pkg/xds/pushqueue_test.go

    		p.Enqueue(proxies[1], &model.PushRequest{})
    		p.Enqueue(proxies[0], &model.PushRequest{})
    
    		ExpectDequeue(t, p, proxies[0])
    		ExpectDequeue(t, p, proxies[1])
    		ExpectTimeout(t, p)
    	})
    
    	t.Run("add and remove and markdone", func(t *testing.T) {
    		t.Parallel()
    		p := NewPushQueue()
    		defer p.ShutDown()
    
    		p.Enqueue(proxies[0], &model.PushRequest{})
    		ExpectDequeue(t, p, proxies[0])
    		p.MarkDone(proxies[0])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. test/escape5.go

    	"runtime"
    	"unsafe"
    )
    
    func noleak(p *int) int { // ERROR "p does not escape"
    	return *p
    }
    
    func leaktoret(p *int) *int { // ERROR "leaking param: p to result"
    	return p
    }
    
    func leaktoret2(p *int) (*int, *int) { // ERROR "leaking param: p to result ~r0" "leaking param: p to result ~r1"
    	return p, p
    }
    
    func leaktoret22(p, q *int) (*int, *int) { // ERROR "leaking param: p to result ~r0" "leaking param: q to result ~r1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. src/go/printer/gobuild.go

    		// Skip leading space at beginning of line.
    		blank := true
    		for pos < len(p.output) && (p.output[pos] == ' ' || p.output[pos] == '\t') {
    			pos++
    		}
    		// Skip over // comment if any.
    		if pos+3 < len(p.output) && p.output[pos] == tabwriter.Escape && p.output[pos+1] == '/' && p.output[pos+2] == '/' {
    			blank = false
    			for pos < len(p.output) && !isNL(p.output[pos]) {
    				pos++
    			}
    		}
    		// Skip over \n at end of line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    			}
    		}
    		s.locationIDX = nil
    	}
    
    	p.DropFrames, err = getString(p.stringTable, &p.dropFramesX, err)
    	p.KeepFrames, err = getString(p.stringTable, &p.keepFramesX, err)
    
    	if pt := p.PeriodType; pt == nil {
    		p.PeriodType = &ValueType{}
    	}
    
    	if pt := p.PeriodType; pt != nil {
    		pt.Type, err = getString(p.stringTable, &pt.typeX, err)
    		pt.Unit, err = getString(p.stringTable, &pt.unitX, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm/obj5.go

    				p.As = ABNE
    				p.To.Type = obj.TYPE_BRANCH
    				p.To.SetTarget(end)
    
    				// ADD $4, R13, R4
    				p = obj.Appendp(p, newprog)
    				p.As = AADD
    				p.From.Type = obj.TYPE_CONST
    				p.From.Offset = 4
    				p.Reg = REG_R13
    				p.To.Type = obj.TYPE_REG
    				p.To.Reg = REG_R4
    
    				// MOVW R4, panic_argp(R1)
    				p = obj.Appendp(p, newprog)
    				p.As = AMOVW
    				p.From.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  6. src/go/printer/printer.go

    			return true
    		}
    	}
    	_ = line
    	return false
    }
    
    func (p *printer) nextComment() {
    	for p.cindex < len(p.comments) {
    		c := p.comments[p.cindex]
    		p.cindex++
    		if list := c.List; len(list) > 0 {
    			p.comment = c
    			p.commentOffset = p.posFor(list[0].Pos()).Offset
    			p.commentNewline = p.commentsHaveNewline(list)
    			return
    		}
    		// we should not reach here (correct ASTs don't have empty
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/dumper.go

    	case reflect.Slice:
    		if x.IsNil() {
    			p.printf("nil")
    			return
    		}
    		p.printf("%s (%d entries) {", x.Type(), x.Len())
    		if x.Len() > 0 {
    			p.indent++
    			p.printf("\n")
    			for i, n := 0, x.Len(); i < n; i++ {
    				p.printf("%d: ", i)
    				p.dump(x.Index(i), nil)
    				p.printf("\n")
    			}
    			p.indent--
    		}
    		p.printf("}")
    
    	case reflect.Struct:
    		typ := x.Type()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 17:32:14 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  8. src/go/types/hilbert_test.go

    		}
    		g.p("\n")
    	}
    	g.p(")\n\n")
    }
    
    func (g *gen) product(n int) {
    	g.p(`// Product matrix
    const (
    `)
    	for i := 0; i < n; i++ {
    		for j := 0; j < n; j++ {
    			g.p("\tp%d_%d = ", i, j)
    			for k := 0; k < n; k++ {
    				if k > 0 {
    					g.p(" + ")
    				}
    				g.p("h%d_%d*i%d_%d", i, k, k, j)
    			}
    			g.p("\n")
    		}
    		g.p("\n")
    	}
    	g.p(")\n\n")
    }
    
    func (g *gen) verify(n int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    //	------------------------------------
    //	P*[]int     T/F      P       *[]int
    //	P*E         T        P       *E
    //	P*E         F        nil     P*E
    //	P([]int)    T/F      P       []int
    //	P(E)        T        P       E
    //	P(E)        F        nil     P(E)
    //	P*E|F|~G    T/F      P       *E|F|~G
    //	P*E|F|G     T        P       *E|F|G
    //	P*E|F|G     F        nil     P*E|F|G
    func extractName(x Expr, force bool) (*Name, Expr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue48136.go

    package p
    
    func f1[P interface{ *P }]() {}
    func f2[P interface{ func(P) }]() {}
    func f3[P, Q interface{ func(Q) P }]() {}
    func f4[P interface{ *Q }, Q interface{ func(P) }]() {}
    func f5[P interface{ func(P) }]() {}
    func f6[P interface { *Tree[P] }, Q any ]() {}
    
    func _() {
            f1 /* ERROR "cannot infer P" */ ()
            f2 /* ERROR "cannot infer P" */ ()
            f3 /* ERROR "cannot infer P" */ ()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 926 bytes
    - Viewed (0)
Back to top