Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,334 for 2055 (0.15 sec)

  1. test/fixedbugs/issue10700.go

    // errorcheckdir
    
    // 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 07 16:21:57 UTC 2015
    - 194 bytes
    - Viewed (0)
  2. test/fixedbugs/issue18419.go

    // errorcheckdir
    
    // 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 09 16:13:52 UTC 2017
    - 194 bytes
    - Viewed (0)
  3. src/net/main_plan9_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.
    
    package net
    
    func installTestHooks() {}
    
    func uninstallTestHooks() {}
    
    // forceCloseSockets must be called only from TestMain.
    func forceCloseSockets() {}
    
    func enableSocketConnect() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 30 03:30:14 UTC 2016
    - 392 bytes
    - Viewed (0)
  4. test/fixedbugs/issue9738.go

    // run
    
    // 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
    
    func F() (x int) {
    	defer func() {
    		if x != 42 {
    			println("BUG: x =", x)
    		}
    	}()
    	return 42
    }
    
    func main() {
    	F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 02 14:14:21 UTC 2015
    - 302 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/gcc68255/c.c

    // 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.
    
    static void f(void) {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 206 bytes
    - Viewed (0)
  6. src/runtime/sys_nonppc64x.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 !ppc64 && !ppc64le
    
    package runtime
    
    func prepGoExitFrame(sp uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 245 bytes
    - Viewed (0)
  7. test/fixedbugs/issue12677.dir/q.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 q
    import "./p"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 16 20:30:04 UTC 2015
    - 214 bytes
    - Viewed (0)
  8. src/cmd/vet/testdata/unused/unused.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.
    
    // This file contains tests for the unusedresult checker.
    
    package unused
    
    import "fmt"
    
    func _() {
    	fmt.Errorf("") // ERROR "result of fmt.Errorf call not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:42 UTC 2019
    - 324 bytes
    - Viewed (0)
  9. test/fixedbugs/issue13684.go

    // run
    
    // 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.
    
    // Verify that a label name matching a constant name
    // is permitted.
    
    package main
    
    const labelname = 1
    
    func main() {
    	goto labelname
    labelname:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 317 bytes
    - Viewed (0)
  10. src/cmd/dist/util_gccgo.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 gccgo
    
    package main
    
    func useVFPv1() {}
    
    func useVFPv3() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 252 bytes
    - Viewed (0)
Back to top