Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for agosto (0.27 sec)

  1. doc/go1.17_spec.html

    		}
    	}
    </pre>
    
    <h3 id="Goto_statements">Goto statements</h3>
    
    <p>
    A "goto" statement transfers control to the statement with the corresponding label
    within the same function.
    </p>
    
    <pre class="ebnf">
    GotoStmt = "goto" Label .
    </pre>
    
    <pre>
    goto Error
    </pre>
    
    <p>
    Executing the "goto" statement must not cause any variables to come into
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    		}
    	}
    </pre>
    
    <h3 id="Goto_statements">Goto statements</h3>
    
    <p>
    A "goto" statement transfers control to the statement with the corresponding label
    within the same function.
    </p>
    
    <pre class="ebnf">
    GotoStmt = "goto" Label .
    </pre>
    
    <pre>
    goto Error
    </pre>
    
    <p>
    Executing the "goto" statement must not cause any variables to come into
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  3. src/bytes/bytes.go

    // form of case-insensitivity.
    func EqualFold(s, t []byte) bool {
    	// ASCII fast path
    	i := 0
    	for ; i < len(s) && i < len(t); i++ {
    		sr := s[i]
    		tr := t[i]
    		if sr|tr >= utf8.RuneSelf {
    			goto hasUnicode
    		}
    
    		// Easy case.
    		if tr == sr {
    			continue
    		}
    
    		// Make sr < tr to simplify what follows.
    		if tr < sr {
    			tr, sr = sr, tr
    		}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/parse.go

    					}
    					cond = cond + "." + str
    					continue
    				}
    				if tok == ':' {
    					// Labels.
    					p.pendingLabels = append(p.pendingLabels, word)
    					goto next
    				}
    			}
    			if tok == scanner.EOF {
    				p.errorf("unexpected EOF")
    				return "", "", nil, false
    			}
    			// Split operands on comma. Also, the old syntax on x86 for a "register pair"
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg go/token, const FALLTHROUGH Token
    pkg go/token, const FLOAT Token
    pkg go/token, const FOR Token
    pkg go/token, const FUNC Token
    pkg go/token, const GEQ Token
    pkg go/token, const GO Token
    pkg go/token, const GOTO Token
    pkg go/token, const GTR Token
    pkg go/token, const HighestPrec ideal-int
    pkg go/token, const IDENT Token
    pkg go/token, const IF Token
    pkg go/token, const ILLEGAL Token
    pkg go/token, const IMAG Token
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  6. api/go1.1.txt

    pkg go/token, const FALLTHROUGH = 69
    pkg go/token, const FLOAT = 6
    pkg go/token, const FOR = 70
    pkg go/token, const FUNC = 71
    pkg go/token, const GEQ = 46
    pkg go/token, const GO = 72
    pkg go/token, const GOTO = 73
    pkg go/token, const GTR = 41
    pkg go/token, const HighestPrec = 7
    pkg go/token, const IDENT = 4
    pkg go/token, const IF = 74
    pkg go/token, const ILLEGAL = 0
    pkg go/token, const IMAG = 7
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top