Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 505 for goTo (0.07 sec)

  1. src/runtime/map_faststr.go

    			// change those to emptyRest states.
    			if i == abi.MapBucketCount-1 {
    				if b.overflow(t) != nil && b.overflow(t).tophash[0] != emptyRest {
    					goto notLast
    				}
    			} else {
    				if b.tophash[i+1] != emptyRest {
    					goto notLast
    				}
    			}
    			for {
    				b.tophash[i] = emptyRest
    				if i == 0 {
    					if b == bOrig {
    						break // beginning of initial bucket, we're done.
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/cse_test.go

    			Valu("r5", OpAdd64, c.config.Types.Int64, 0, nil, "r2", "r3"),
    			Valu("r10", OpAdd64, c.config.Types.Int64, 0, nil, "r6", "r9"),
    			Valu("rstore", OpStore, types.TypeMem, 0, c.config.Types.Int64, "raddr", "r10", "raddrdef"),
    			Goto("exit")),
    		Bloc("exit",
    			Exit("rstore")))
    
    	CheckFunc(fun.f)
    	cse(fun.f)
    	deadcode(fun.f)
    	CheckFunc(fun.f)
    
    	s1Cnt := 2
    	// r1 == r2 == r3, needs to remove two of this set
    	s2Cnt := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. src/strconv/atof.go

    	if d.nd == 0 {
    		mant = 0
    		exp = flt.bias
    		goto out
    	}
    
    	// Obvious overflow/underflow.
    	// These bounds are for 64-bit floats.
    	// Will have to change if we want to support 80-bit floats in the future.
    	if d.dp > 310 {
    		goto overflow
    	}
    	if d.dp < -330 {
    		// zero
    		mant = 0
    		exp = flt.bias
    		goto out
    	}
    
    	// Scale by powers of two until in range [0.5, 1.0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  4. test/fixedbugs/issue14006.go

    // Literals that happen to resolve to named constants
    // may be used as label names (see issue 13684). Make
    // sure that other literals don't crash the compiler.
    
    package main
    
    const labelname = 1
    
    func main() {
    	goto labelname
    labelname:
    }
    
    func f() {
    	var x int
    	switch x {
    	case 1:
    		2:	// ERROR "unexpected :|expected .*;.* or .*}.* or newline|value computed is not used"
    	case 2:
    	}
    
    	switch x {
    	case 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 18:34:40 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. cluster/images/etcd-version-monitor/README.md

      kubelet on the master machine.
    
    *Note*: This tool has to run on the same machine as etcd, as communication
    with etcd is over localhost.
    
    **VERIFYING THE TOOL**
    
    - Goto [http://localhost:9101/metrics](http://localhost:9101/metrics) in order to view the exported metrics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 22 04:03:37 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/rangefunc/rewrite.go

    	var next int
    	var ret *syntax.ReturnStmt
    	if x.Tok == syntax.Goto || i < 0 {
    		// goto Label
    		// or break/continue of labeled non-range-over-func loop (x.Label != nil).
    		// We may be able to leave it alone, or we may have to break
    		// out of one or more nested loops and then use #next to signal
    		// to complete the break/continue/goto.
    		// Figure out which range-over-func loop contains the label.
    		r.computeBranchNext()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/typecheck.go

    	n2 := len(nl)
    	if !hasddd(params) {
    		if isddd {
    			goto invalidddd
    		}
    		if n2 > n1 {
    			goto toomany
    		}
    		if n2 < n1 {
    			goto notenough
    		}
    	} else {
    		if !isddd {
    			if n2 < n1-1 {
    				goto notenough
    			}
    		} else {
    			if n2 > n1 {
    				goto toomany
    			}
    			if n2 < n1 {
    				goto notenough
    			}
    		}
    	}
    
    	i = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. src/runtime/mcentral.go

    	// allocation if the budget runs low.
    	spanBudget := 100
    
    	var s *mspan
    	var sl sweepLocker
    
    	// Try partial swept spans first.
    	sg := mheap_.sweepgen
    	if s = c.partialSwept(sg).pop(); s != nil {
    		goto havespan
    	}
    
    	sl = sweep.active.begin()
    	if sl.valid {
    		// Now try partial unswept spans.
    		for ; spanBudget >= 0; spanBudget-- {
    			s = c.partialUnswept(sg).pop()
    			if s == nil {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/internal/bytealg/compare_generic.go

    package bytealg
    
    import _ "unsafe" // for go:linkname
    
    func Compare(a, b []byte) int {
    	l := len(a)
    	if len(b) < l {
    		l = len(b)
    	}
    	if l == 0 || &a[0] == &b[0] {
    		goto samebytes
    	}
    	for i := 0; i < l; i++ {
    		c1, c2 := a[i], b[i]
    		if c1 < c2 {
    			return -1
    		}
    		if c1 > c2 {
    			return +1
    		}
    	}
    samebytes:
    	if len(a) < len(b) {
    		return -1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/internal/xcoff/file.go

    			if !ok {
    				goto skip
    			}
    		}
    		if sym.StorageClass != C_EXT && sym.StorageClass != C_WEAKEXT && sym.StorageClass != C_HIDEXT {
    			goto skip
    		}
    		// Must have at least one csect auxiliary entry.
    		if numaux < 1 || i+numaux >= int(nsyms) {
    			goto skip
    		}
    
    		if sym.SectionNumber > int(nscns) {
    			goto skip
    		}
    		if sym.SectionNumber == 0 {
    			sym.Value = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top