Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for a10 (0.19 sec)

  1. test/initialize.go

    	a, b interface{}
    }
    
    var same = []Same{
    	{a1, b1},
    	{a2, b2},
    	{a3, b3},
    	{a4, b4},
    	{a5, b5},
    	{a6, b6},
    	{a7[0] == a7[1], true},
    	{m8(a8) == "ghi", true},
    	{m8(a9) == "ghi", true},
    	{a10[0] == a10[1], true},
    	{a11[0] == a11[1], true},
    	{&a12[0][0] == &a12[1][0], true},
    	{&a13[0][0] == &a13[1][0], true},
    	{&a14[0][0] == &a14[1][0], true},
    	{&a15[0][0] == &a15[1][0], true},
    	{&a16[0][0] == &a16[1][0], true},
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 04:04:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_patchcycle.txt

    module example
    
    go 1.16
    
    require example.net/a v0.1.0
    
    replace (
    	example.net/a v0.1.0 => ./a10
    	example.net/a v0.1.1 => ./a11
    	example.net/a v0.2.0 => ./a20
    	example.net/b v0.1.0 => ./b10
    )
    -- example.go --
    package example
    
    import _ "example.net/a"
    
    -- a10/go.mod --
    module example.net/a
    
    go 1.16
    -- a10/a.go --
    package a
    
    -- a11/go.mod --
    module example.net/a
    
    go 1.16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_wild.txt

    replace (
    	example.net/a v0.1.0 => ./a10
    	example.net/a v0.1.1 => ./a11
    	example.net/a v0.2.0 => ./a20
    	example.net/a v0.2.1 => ./a20
    	example.net/b v0.1.0 => ./b1
    	example.net/b v0.1.1 => ./b1
    	example.net/b v0.2.0 => ./b2
    )
    -- example.go --
    package example
    
    import _ "example.net/a"
    
    -- a10/go.mod --
    module example.net/a
    
    go 1.16
    -- a10/a.go --
    package a
    
    -- a11/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  4. src/syscall/syscall_openbsd_libc.go

    func syscall6X(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    func syscall10(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10 uintptr) (r1, r2 uintptr, err Errno)
    func syscall10X(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10 uintptr) (r1, r2 uintptr, err Errno)
    func rawSyscall(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    func rawSyscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd3.go

    func syscall_syscall10(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10 uintptr) (r1, r2, err uintptr) {
    	entersyscall()
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(syscall10)), unsafe.Pointer(&fn))
    	exitsyscall()
    	return
    }
    func syscall10()
    
    //go:linkname syscall_syscall10X syscall.syscall10X
    //go:nosplit
    //go:cgo_unsafe_args
    func syscall_syscall10X(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10 uintptr) (r1, r2, err uintptr) {
    	entersyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_patch.txt

    	example.net/b v0.3.1 => ./b
    )
    -- example.go --
    package example
    
    import _ "example.net/a"
    
    -- a10/go.mod --
    module example.net/a
    
    go 1.16
    
    require example.net/b v0.1.0
    -- a10/a.go --
    package a
    
    import _ "example.net/b"
    
    -- a11/go.mod --
    module example.net/a
    
    go 1.16
    
    require example.net/b v0.2.0  // upgraded
    -- a11/a.go --
    package a
    
    import _ "example.net/b"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  7. test/escape_array.go

    	b[0] = y
    }
    
    type a10 struct {
    	s *string
    	i [10]int32
    }
    
    type a65537 struct {
    	s *string
    	i [65537]int32
    }
    
    // BAD: x need not leak.
    func doesNew2(x *string, y *string) { // ERROR "leaking param: x" "leaking param: y"
    	a := new(a10) // ERROR "new\(a10\) does not escape"
    	a.s = x
    	b := new(a65537) // ERROR "new\(a65537\) escapes to heap"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  8. src/go/internal/gccgoimporter/testdata/aliases.go

    	T1 []byte
    	T2 struct {
    		x int
    	}
    	T3 interface {
    		m() T2
    	}
    	T4 func(int, T0) chan T2
    )
    
    // basic aliases
    type (
    	Ai = int
    	A0 = T0
    	A1 = T1
    	A2 = T2
    	A3 = T3
    	A4 = T4
    
    	A10 = [10]int
    	A11 = []byte
    	A12 = struct {
    		x int
    	}
    	A13 = interface {
    		m() A2
    	}
    	A14 = func(int, A0) chan A2
    )
    
    // alias receiver types
    func (T0) m1() {}
    func (A0) m2() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 27 02:52:03 UTC 2018
    - 624 bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/decls4.go

    	T0 [10]int
    	T1 []byte
    	T2 struct {
    		x int
    	}
    	T3 interface{
    		m() T2
    	}
    	T4 func(int, T0) chan T2
    )
    
    type (
    	Ai = int
    	A0 = T0
    	A1 = T1
    	A2 = T2
    	A3 = T3
    	A4 = T4
    
    	A10 = [10]int
    	A11 = []byte
    	A12 = struct {
    		x int
    	}
    	A13 = interface{
    		m() A2
    	}
    	A14 = func(int, A0) chan A2
    )
    
    // check assignment compatibility due to equality of types
    var (
    	xi_ int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/runtime/syscall_windows.go

    //go:nosplit
    func syscall_Syscall12(fn, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12 uintptr) (r1, r2, err uintptr) {
    	args := [...]uintptr{a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12}
    	return syscall_SyscallN(fn, args[:nargs]...)
    }
    
    //go:linkname syscall_Syscall15 syscall.Syscall15
    //go:nosplit
    func syscall_Syscall15(fn, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15 uintptr) (r1, r2, err uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top