Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Early (0.21 sec)

  1. src/cmd/cgo/doc.go

    of an error message on a given line to deduce the information it
    needs. The program is syntactically valid regardless of whether each
    name is a type or an ordinary identifier, so there will be no syntax
    errors that might stop parsing early.
    
    An error on not-declared:1 indicates that foo is undeclared.
    An error on not-type:1 indicates that foo is not a type (if declared at all, it is an identifier).
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg syscall (linux-386), const PR_MCE_KILL ideal-int
    pkg syscall (linux-386), const PR_MCE_KILL_CLEAR ideal-int
    pkg syscall (linux-386), const PR_MCE_KILL_DEFAULT ideal-int
    pkg syscall (linux-386), const PR_MCE_KILL_EARLY ideal-int
    pkg syscall (linux-386), const PR_MCE_KILL_GET ideal-int
    pkg syscall (linux-386), const PR_MCE_KILL_LATE ideal-int
    pkg syscall (linux-386), const PR_MCE_KILL_SET ideal-int
    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)
  3. src/bufio/scan.go

    // returned by a Split function to indicate that the scanning should stop
    // with no error. If the token being delivered with this error is not nil,
    // the token is the last token.
    //
    // The value is useful to stop processing early or when it is necessary to
    // deliver a final empty token (which is different from a nil token).
    // One could achieve the same behavior with a custom error value but
    // providing one here is tidier.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (linux-386), const PR_MCE_KILL = 33
    pkg syscall (linux-386), const PR_MCE_KILL_CLEAR = 0
    pkg syscall (linux-386), const PR_MCE_KILL_DEFAULT = 2
    pkg syscall (linux-386), const PR_MCE_KILL_EARLY = 1
    pkg syscall (linux-386), const PR_MCE_KILL_GET = 34
    pkg syscall (linux-386), const PR_MCE_KILL_LATE = 0
    pkg syscall (linux-386), const PR_MCE_KILL_SET = 1
    pkg syscall (linux-386), const PR_SET_DUMPABLE = 4
    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)
  5. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_CLEAR ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_DEFAULT ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_EARLY ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_GET ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_LATE ideal-int
    pkg syscall (linux-arm-cgo), const PR_MCE_KILL_SET ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  6. src/bufio/scan_test.go

    func genLine(buf *bytes.Buffer, lineNum, n int, addNewline bool) {
    	buf.Reset()
    	doCR := lineNum%5 == 0
    	if doCR {
    		n--
    	}
    	for i := 0; i < n-1; i++ { // Stop early for \n.
    		c := 'a' + byte(lineNum+i)
    		if c == '\n' || c == '\r' { // Don't confuse us.
    			c = 'N'
    		}
    		buf.WriteByte(c)
    	}
    	if addNewline {
    		if doCR {
    			buf.WriteByte('\r')
    		}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Sep 22 16:22:42 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  7. doc/go1.22.html

          Clients of <a href="/pkg/go/types"><code>go/types</code></a> are urged to adjust their code as soon as possible
          to work with <code>gotypesalias=1</code> to eliminate problems early.
        </p>
    
        <p><!-- https://go.dev/issue/62605, CL 540056 -->
          The <a href="/pkg/go/types#Info"><code>Info</code></a> struct now exports the
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top