Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 62 of 62 for var2 (0.1 sec)

  1. src/go/doc/example_test.go

    func GFunc[T any]() {}
    
    type GType[T any] int
    
    func (GType[T]) M() {}
    `
    	const test = `
    package p_test
    
    func ExampleConst1() {} // invalid - no support for consts and vars
    func ExampleVar1()   {} // invalid - no support for consts and vars
    
    func Example()               {}
    func Example_()              {} // invalid - suffix must start with a lower-case letter
    func Example_suffix()        {}
    func Example_suffix_xX_X_x() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_mipsx.s

    	MOVW	n+4(FP), R5
    	MOVW	flags+8(FP), R6
    	MOVW	$SYS_madvise, R2
    	SYSCALL
    	MOVW	R2, ret+12(FP)
    	RET
    
    // int32 futex(int32 *uaddr, int32 op, int32 val, struct timespec *timeout, int32 *uaddr2, int32 val2);
    TEXT runtime·futex(SB),NOSPLIT,$20-28
    	MOVW	addr+0(FP), R4
    	MOVW	op+4(FP), R5
    	MOVW	val+8(FP), R6
    	MOVW	ts+12(FP), R7
    
    	MOVW	addr2+16(FP), R8
    	MOVW	val3+20(FP), R9
    
    	MOVW	R8, 16(R29)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
Back to top