Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,334 for 2055 (0.16 sec)

  1. test/fixedbugs/issue12677.dir/p.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    func Baz(f int) float64 {
        return 1 / float64(int(1)<<(uint(f)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 16 20:30:04 UTC 2015
    - 240 bytes
    - Viewed (0)
  2. test/fixedbugs/issue12677.go

    // compiledir
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 12677: Type loss during export/import of inlined function body.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 16 20:30:04 UTC 2015
    - 265 bytes
    - Viewed (0)
  3. test/fixedbugs/issue12944.go

    // errorcheck
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "unsafe"
    
    const (
    	_ = unsafe.Sizeof([0]byte{}[0]) // ERROR "out of bounds"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 15 20:56:58 UTC 2015
    - 274 bytes
    - Viewed (0)
  4. test/fixedbugs/issue11053.go

    // rundir
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 11053: Compiler does not run escape analysis on an inlined
    // generated method wrapper.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 17 02:36:45 UTC 2015
    - 285 bytes
    - Viewed (0)
  5. test/fixedbugs/issue9537.go

    // rundir
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 9537: Compiler does not run escape analysis on an inlined
    // generated method wrapper.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 22 03:25:12 UTC 2015
    - 284 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcarchive/testdata/p/p.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    import "C"
    
    //export FromPkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 237 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/cgo_unix_test.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build cgo && !windows
    
    package cgotest
    
    import "testing"
    
    func TestSigaltstack(t *testing.T) { testSigaltstack(t) }
    func TestSigprocmask(t *testing.T) { testSigprocmask(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 391 bytes
    - Viewed (0)
  8. test/fixedbugs/issue11590.go

    // errorcheck
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    var _ = int8(4) * 300         // ERROR "overflows int8"
    var _ = complex64(1) * 1e200  // ERROR "complex real part overflow|overflows complex64"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 419 bytes
    - Viewed (0)
  9. src/runtime/testdata/testprogcgo/dll_windows.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    /*
    #include <windows.h>
    
    DWORD getthread() {
    	return GetCurrentThreadId();
    }
    */
    import "C"
    import "runtime/testdata/testprogcgo/windows"
    
    func init() {
    	register("CgoDLLImportsMain", CgoDLLImportsMain)
    }
    
    func CgoDLLImportsMain() {
    	C.getthread()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 18:56:19 UTC 2019
    - 459 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testerrors/testdata/issue11097b.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    /*
    //enum test { foo, bar };
    */
    import "C"
    
    func main() {
    	p := new(C.enum_test) // ERROR HERE
    	_ = p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 278 bytes
    - Viewed (0)
Back to top