Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,128 for continues (0.13 sec)

  1. src/cmd/compile/internal/syntax/branches.go

    package syntax
    
    import "fmt"
    
    // checkBranches checks correct use of labels and branch
    // statements (break, continue, fallthrough, goto) in a function body.
    // It catches:
    //   - misplaced breaks, continues, and fallthroughs
    //   - bad labeled breaks and continues
    //   - invalid, unused, duplicate, and missing labels
    //   - gotos jumping over variable declarations and into blocks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  2. src/go/doc/testdata/a.0.golden

    	bug0
    
    	bug1
    
    
    BUGS
    BUG(uid)	bug0
    
    BUG(uid)	bug1
    
    
    NOTES
    NOTE(uid)	
    
    NOTE(foo)	1 of 4 - this is the first line of note 1
    	- note 1 continues on this 2nd line
    	- note 1 continues on this 3rd line
    
    NOTE(foo)	2 of 4
    
    NOTE(bar)	3 of 4
    
    NOTE(bar)	4 of 4
    	- this is the last line of note 4
    
    NOTE(bam)	This note which contains a (parenthesized) subphrase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 688 bytes
    - Viewed (0)
  3. src/go/doc/testdata/a.2.golden

    	bug0
    
    	bug1
    
    
    BUGS
    BUG(uid)	bug0
    
    BUG(uid)	bug1
    
    
    NOTES
    NOTE(uid)	
    
    NOTE(foo)	1 of 4 - this is the first line of note 1
    	- note 1 continues on this 2nd line
    	- note 1 continues on this 3rd line
    
    NOTE(foo)	2 of 4
    
    NOTE(bar)	3 of 4
    
    NOTE(bar)	4 of 4
    	- this is the last line of note 4
    
    NOTE(bam)	This note which contains a (parenthesized) subphrase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 688 bytes
    - Viewed (0)
  4. src/go/doc/testdata/a0.go

    // comment group as long as they start at the beginning of an
    // individual comment.
    //
    // NOTE(foo): 1 of 4 - this is the first line of note 1
    // - note 1 continues on this 2nd line
    // - note 1 continues on this 3rd line
    // NOTE(foo): 2 of 4
    // NOTE(bar): 3 of 4
    /* NOTE(bar): 4 of 4 */
    // - this is the last line of note 4
    //
    //
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  5. src/go/doc/testdata/a.1.golden

    	bug0
    
    	bug1
    
    
    BUGS
    BUG(uid)	bug0
    
    BUG(uid)	bug1
    
    
    NOTES
    NOTE(uid)	
    
    NOTE(foo)	1 of 4 - this is the first line of note 1
    	- note 1 continues on this 2nd line
    	- note 1 continues on this 3rd line
    
    NOTE(foo)	2 of 4
    
    NOTE(bar)	3 of 4
    
    NOTE(bar)	4 of 4
    	- this is the last line of note 4
    
    NOTE(bam)	This note which contains a (parenthesized) subphrase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 688 bytes
    - Viewed (0)
  6. test/fixedbugs/issue22344.go

    			_ = unsafe.Sizeof([Two]int{} == x)      // assert types are equal
    		)
    		var z [iota]int                  // [2]int
    		_ = unsafe.Sizeof([2]int{} == z) // assert types are equal
    	})
    	three = iota // the sequence continues
    )
    
    var _ [three]int = [3]int{} // assert 'three' has correct value
    
    func main() {
    
    	const (
    		_ = iota
    		_ = len([iota]byte{})
    		_ = unsafe.Sizeof(iota)
    		_ = unsafe.Sizeof(func() { _ = iota })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 12 06:46:57 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  7. src/go/doc/testdata/testing.2.golden

    	func (c *B) Error(args ...any)
    
    	// Errorf is equivalent to Logf() followed by Fail(). 
    	func (c *B) Errorf(format string, args ...any)
    
    	// Fail marks the function as having failed but continues ...
    	func (c *B) Fail()
    
    	// FailNow marks the function as having failed and stops its ...
    	func (c *B) FailNow()
    
    	// Failed reports whether the function has failed. 
    	func (c *B) Failed() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  8. src/go/doc/testdata/testing.0.golden

    	func (c *B) Error(args ...any)
    
    	// Errorf is equivalent to Logf() followed by Fail(). 
    	func (c *B) Errorf(format string, args ...any)
    
    	// Fail marks the function as having failed but continues ...
    	func (c *B) Fail()
    
    	// FailNow marks the function as having failed and stops its ...
    	func (c *B) FailNow()
    
    	// Failed reports whether the function has failed. 
    	func (c *B) Failed() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  9. src/syscall/syscall_openbsd_libc.go

    	// packages make use of syscall.Syscall with SYS_IOCTL since it is
    	// not well supported by golang.org/x/sys/unix. Reroute this system
    	// call number to the respective libc stub so that it continues to
    	// work for the time being. See #63900 for further details.
    	if trap == SYS_IOCTL {
    		return syscallX(abi.FuncPCABI0(libc_ioctl_trampoline), a1, a2, a3)
    	}
    	return 0, 0, ENOSYS
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/386enc.s

    	MOVL 2147483648(AX), AX  // 8b8000000080
    	MOVL -2147483648(AX), AX // 8b8000000080
    	ADDL 2147483648(AX), AX  // 038000000080
    	ADDL -2147483648(AX), AX // 038000000080
    	// Make sure MOV CR/DR continues to work after changing its movtabs.
    	MOVL CR0, AX // 0f20c0
    	MOVL CR0, DX // 0f20c2
    	MOVL CR4, DI // 0f20e7
    	MOVL AX, CR0 // 0f22c0
    	MOVL DX, CR0 // 0f22c2
    	MOVL DI, CR4 // 0f22e7
    	MOVL DR0, AX // 0f21c0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top