Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for curNum (0.21 sec)

  1. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		return "", true, true
    	}
    	curNum, err := strconv.Atoi(cur)
    	if err != nil {
    		// We cannot parse it - must be some new schema we don't know about. We should assume we do not manage it.
    		// In theory, this should never happen, unless we decide a number was a bad idea in the future.
    		return cur, false, false
    	}
    	if curNum > ControllerVersion {
    		// A newer version owns this gateway, let them handle it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm/obj5.go

    const (
    	FOLL  = 1 << 0
    	LABEL = 1 << 1
    	LEAF  = 1 << 2
    )
    
    func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	autosize := int32(0)
    
    	if cursym.Func().Text == nil || cursym.Func().Text.Link == nil {
    		return
    	}
    
    	c := ctxt5{ctxt: ctxt, cursym: cursym, newprog: newprog}
    
    	p := c.cursym.Func().Text
    	autoffset := int32(p.To.Offset)
    	if autoffset == -4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/obj7.go

    		p2.To.Sym = nil
    	} else {
    		return
    	}
    	obj.Nopout(p)
    }
    
    func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	if cursym.Func().Text == nil || cursym.Func().Text.Link == nil {
    		return
    	}
    
    	c := ctxt7{ctxt: ctxt, newprog: newprog, cursym: cursym}
    
    	p := c.cursym.Func().Text
    	textstksiz := p.To.Offset
    	if textstksiz == -8 {
    		// Historical way to mark NOFRAME.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/obj.go

    				autosize += 4
    			}
    
    			if autosize == 0 && c.cursym.Func().Text.Mark&LEAF == 0 {
    				if c.cursym.Func().Text.From.Sym.NoSplit() {
    					if ctxt.Debugvlog {
    						ctxt.Logf("save suppressed in: %s\n", c.cursym.Name)
    					}
    
    					c.cursym.Func().Text.Mark |= LEAF
    				}
    			}
    
    			p.To.Offset = int64(autosize) - ctxt.Arch.FixedFrameSize
    
    			if c.cursym.Func().Text.Mark&LEAF != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/objz.go

    		return
    	}
    	obj.Nopout(p)
    }
    
    func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	// TODO(minux): add morestack short-cuts with small fixed frame-size.
    	if cursym.Func().Text == nil || cursym.Func().Text.Link == nil {
    		return
    	}
    
    	c := ctxtz{ctxt: ctxt, cursym: cursym, newprog: newprog}
    
    	p := c.cursym.Func().Text
    	textstksiz := p.To.Offset
    	if textstksiz == -8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/mips/obj0.go

    			p.As = AADDVU
    		}
    	}
    }
    
    func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	// TODO(minux): add morestack short-cuts with small fixed frame-size.
    	c := ctxt0{ctxt: ctxt, newprog: newprog, cursym: cursym}
    
    	// a switch for enabling/disabling instruction scheduling
    	nosched := true
    
    	if c.cursym.Func().Text == nil || c.cursym.Func().Text.Link == nil {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/SourceSinkTester.java

              + "\n"
              + "Nunc quis lacus est. Sed aliquam pretium cursus. Sed eu libero eros. In hac habitasse "
              + "platea dictumst. Pellentesque molestie, nibh nec iaculis luctus, justo sem lobortis "
              + "enim, at feugiat leo magna nec libero. Mauris quis odio eget nisl rutrum cursus nec "
              + "eget augue. Sed nec arcu sem. In hac habitasse platea dictumst.";
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 27 18:57:08 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/obj6.go

    }
    
    // Prog.mark
    const (
    	markBit = 1 << 0 // used in errorCheck to avoid duplicate work
    )
    
    func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	if cursym.Func().Text == nil || cursym.Func().Text.Link == nil {
    		return
    	}
    
    	p := cursym.Func().Text
    	autoffset := int32(p.To.Offset)
    	if autoffset < 0 {
    		autoffset = 0
    	}
    
    	hasCall := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/pcln.go

    	pcln.Funcdata = make([]*LSym, nfuncdata)
    
    	pcln.Pcsp = funcpctab(ctxt, cursym, "pctospadj", pctospadj, nil)
    	pcln.Pcfile = funcpctab(ctxt, cursym, "pctofile", pctofileline, pcln)
    	pcln.Pcline = funcpctab(ctxt, cursym, "pctoline", pctofileline, nil)
    
    	// Check that all the Progs used as inline markers are still reachable.
    	// See issue #40473.
    	fn := cursym.Func()
    	inlMarkProgs := make(map[*Prog]struct{}, len(fn.InlMarks))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    				ab.Put1(byte(op))
    				ab.asmand(ctxt, cursym, p, &p.From, &p.To)
    
    			case Z_m_r:
    				ab.Put1(byte(op))
    				ab.asmand(ctxt, cursym, p, p.GetFrom3(), &p.To)
    
    			case Zm2_r:
    				ab.Put2(byte(op), o.op[z+1])
    				ab.asmand(ctxt, cursym, p, &p.From, &p.To)
    
    			case Zm_r_xm:
    				ab.mediaop(ctxt, o, op, int(yt.zoffset), z)
    				ab.asmand(ctxt, cursym, p, &p.From, &p.To)
    
    			case Zm_r_xm_nr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top