Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 186 for goTo (0.09 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    				continue
    			}
    			// WBend appears at the start of a block, like this:
    			//    ...
    			//    if wbEnabled: goto C else D
    			// C:
    			//    ... some write barrier enabled code ...
    			//    goto B
    			// D:
    			//    ... some write barrier disabled code ...
    			//    goto B
    			// B:
    			//    m1 = Phi mem_C mem_D
    			//    m2 = store operation ... m1
    			//    m3 = store operation ... m2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/likelyadjust.go

    	if sl != l {
    		if sl == nil || sl.depth <= l.depth {
    			l.exits = append(l.exits, b)
    			return true
    		}
    		// sl is not nil, and is deeper than l
    		// it's possible for this to be a goto into an irreducible loop made from gotos.
    		for sl.depth > l.depth {
    			sl = sl.outer
    		}
    		if sl != l {
    			l.exits = append(l.exits, b)
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/parse.go

    Prefixes:
    	// Start new block inside p.stack[depth].
    	for _, fn := range news {
    		if l, ok := fn(p, s); ok {
    			s = l
    			if s.isBlank() {
    				return
    			}
    			p.lineDepth++
    			goto Prefixes
    		}
    	}
    
    	newPara(p, s)
    }
    
    func (c *rootBuilder) extend(p *parseState, s line) (line, bool) {
    	panic("root extend")
    }
    
    var news = []func(*parseState, line) (line, bool){
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/cmd/cover/cover.go

    			end = f.statementBoundary(stmt)
    			if f.endsBasicSourceBlock(stmt) {
    				// If it is a labeled statement, we need to place a counter between
    				// the label and its statement because it may be the target of a goto
    				// and thus start a basic block. That is, given
    				//	foo: stmt
    				// we need to create
    				//	foo: ; stmt
    				// and mark the label as a block-terminating statement.
    				// The result will then be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    func (cts *ctlrTestState) popHeldRequest() (plName string, hr *heldRequest, nCount int) {
    	cts.lock.Lock()
    	defer cts.lock.Unlock()
    	var hrs []heldRequest
    	for {
    		for plName, hrs = range cts.heldRequestsMap {
    			goto GotOne
    		}
    		return "", nil, 0
    	GotOne:
    		if nhr := len(hrs); nhr > 0 {
    			hrv := hrs[nhr-1]
    			hrs = hrs[:nhr-1]
    			hr = &hrv
    		}
    		if len(hrs) == 0 {
    			delete(cts.heldRequestsMap, plName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/cc_op_gen_util.cc

              "enum",
              "explicit",
              "export",
              "extern",
              "false",
              "final",
              "float",
              "for",
              "friend",
              "goto",
              "if",
              "import",
              "inline",
              "int",
              "long",
              "module",
              "mutable",
              "namespace",
              "new",
              "noexcept",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  7. src/go/ast/ast.go

    		Results []Expr    // result expressions; or nil
    	}
    
    	// A BranchStmt node represents a break, continue, goto,
    	// or fallthrough statement.
    	//
    	BranchStmt struct {
    		TokPos token.Pos   // position of Tok
    		Tok    token.Token // keyword token (BREAK, CONTINUE, GOTO, FALLTHROUGH)
    		Label  *Ident      // label name; or nil
    	}
    
    	// A BlockStmt node represents a braced statement list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  8. src/cmd/cover/cover_test.go

    		t.Fatal(err)
    	}
    
    	const htmlUContents = `
    package htmlunformatted
    
    var g int
    
    func F() {
    //line x.go:1
    	{ { F(); goto lab } }
    lab:
    }`
    
    	const htmlUTestContents = `package htmlunformatted`
    
    	if err := os.WriteFile(htmlU, []byte(htmlUContents), 0444); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. src/database/sql/convert.go

    			nvargs = nvargs[:len(nvargs)-1]
    			continue
    		case driver.ErrSkip:
    			if nextCC {
    				nextCC = false
    				checker = cc.CheckNamedValue
    			} else {
    				checker = defaultCheckNamedValue
    			}
    			goto nextCheck
    		default:
    			return nil, fmt.Errorf("sql: converting argument %s type: %w", describeNamedValue(nv), err)
    		}
    	}
    
    	// Check the length of arguments after conversion to allow for omitted
    	// arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. pkg/dns/client/dns_test.go

    					// assuming the client does not see/respect the inlined A record in the response.
    					if crec, ok := a.(*dns.CNAME); !ok {
    						errs++
    					} else {
    						cnames++
    						toResolve = crec.Target
    						goto redirect
    					}
    				} else {
    					if arec.Hdr.Rrtype != dns.RcodeSuccess {
    						nxdomain++
    					}
    				}
    			}
    		}
    	}
    
    	if errs+nrs > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top