Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 186 for goTo (0.16 sec)

  1. src/go/printer/printer.go

    		node = cnode.Node
    		comments = cnode.Comments
    	}
    
    	if comments != nil {
    		// commented node - restrict comment list to relevant range
    		n, ok := node.(ast.Node)
    		if !ok {
    			goto unsupported
    		}
    		beg := n.Pos()
    		end := n.End()
    		// if the node has associated documentation,
    		// include that commentgroup in the range
    		// (the comment list is sorted in the order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  2. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    |\B\.\d+)(?:e[-+]?\d+)?)i?/i,string:{pattern:/(["'`])(\\[\s\S]|(?!\1)[^\\])*\1/,greedy:!0}}),delete Prism.languages.go['class-name'],Prism.languages.java=Prism.languages.extend('clike',{keyword:/\b(?:abstract|continue|for|new|switch|assert|default|goto|package|synchronized|boolean|do|if|private|this|break|double|implements|protected|throw|byte|else|import|public|throws|case|enum|instanceof|return|transient|catch|extends|int|short|try|char|final|interface|static|void|class|finally|long|strictfp|v...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/genericOps.go

    // JumpTable   [integer Value]  [succ1,succ2,..]
    
    var genericBlocks = []blockData{
    	{name: "Plain"},                  // a single successor
    	{name: "If", controls: 1},        // if Controls[0] goto Succs[0] else goto Succs[1]
    	{name: "Defer", controls: 1},     // Succs[0]=defer queued, Succs[1]=defer recovered. Controls[0] is call op (of memory type)
    	{name: "Ret", controls: 1},       // no successors, Controls[0] value is memory result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Default, "default", 0, 0},
    	{_Defer, "defer", 0, 0},
    	{_Else, "else", 0, 0},
    	{_Fallthrough, "fallthrough", 0, 0},
    	{_For, "for", 0, 0},
    	{_Func, "func", 0, 0},
    	{_Go, "go", 0, 0},
    	{_Goto, "goto", 0, 0},
    	{_If, "if", 0, 0},
    	{_Import, "import", 0, 0},
    	{_Interface, "interface", 0, 0},
    	{_Map, "map", 0, 0},
    	{_Package, "package", 0, 0},
    	{_Range, "range", 0, 0},
    	{_Return, "return", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  5. src/text/template/parse/parse.go

    			if context == "range" && len(pipe.Decl) < 2 {
    				switch t.peekNonSpace().typ {
    				case itemVariable, itemRightDelim, itemRightParen:
    					// second initialized variable in a range pipeline
    					goto decls
    				default:
    					t.errorf("range can only initialize variables")
    				}
    			}
    			t.errorf("too many declarations in %s", context)
    		case tokenAfterVariable.typ == itemSpace:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. src/runtime/sema.go

    func (root *semaRoot) dequeue(addr *uint32) (found *sudog, now, tailtime int64) {
    	ps := &root.treap
    	s := *ps
    	for ; s != nil; s = *ps {
    		if s.elem == unsafe.Pointer(addr) {
    			goto Found
    		}
    		if uintptr(unsafe.Pointer(addr)) < uintptr(s.elem) {
    			ps = &s.prev
    		} else {
    			ps = &s.next
    		}
    	}
    	return nil, 0, 0
    
    Found:
    	now = int64(0)
    	if s.acquiretime != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/inline.go

    	// To enable this optimization, following cmark-gfm, we declare by fiat
    	// that more than maxBackticks backquotes is too many.
    	if n > len(b.last) || b.scanned && b.last[n-1] < i+n {
    		goto NoMatch
    	}
    
    	for end := i + n; end < len(s); {
    		if s[end] != '`' {
    			end++
    			continue
    		}
    		estart := end
    		for end < len(s) && s[end] == '`' {
    			end++
    		}
    		m := end - estart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. src/text/scanner/scanner.go

    			}
    		case '/':
    			ch = s.next()
    			if (ch == '/' || ch == '*') && s.Mode&ScanComments != 0 {
    				if s.Mode&SkipComments != 0 {
    					s.tokPos = -1 // don't collect token text
    					ch = s.scanComment(ch)
    					goto redo
    				}
    				ch = s.scanComment(ch)
    				tok = Comment
    			}
    		case '`':
    			if s.Mode&ScanRawStrings != 0 {
    				s.scanRawString()
    				tok = RawString
    			}
    			ch = s.next()
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/writebarrier.go

    		bEnd.Values = append(bEnd.Values, after...)
    		for _, w := range after {
    			w.Block = bEnd
    		}
    
    		// if we have more stores in this block, do this block again
    		if nWBops > 0 {
    			goto again
    		}
    	}
    }
    
    // computeZeroMap returns a map from an ID of a memory value to
    // a set of locations that are known to be zeroed at that memory value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  10. test/prove.go

    func oforuntil(b []int) {
    	i := 0
    	if len(b) > i {
    	top:
    		println(b[i]) // ERROR "Induction variable: limits \[0,\?\), increment 1$" "Proved IsInBounds$"
    		i++
    		if i < len(b) {
    			goto top
    		}
    	}
    }
    
    func atexit(foobar []func()) {
    	for i := len(foobar) - 1; i >= 0; i-- { // ERROR "Induction variable: limits \[0,\?\], increment 1"
    		f := foobar[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top