Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,840 for f012 (0.05 sec)

  1. src/go/parser/testdata/commas.src

    // Copyright 2012 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.
    
    // Test case for error messages/parser synchronization
    // after missing commas.
    
    package p
    
    var _ = []int{
    	0/* ERROR AFTER "missing ','" */
    }
    
    var _ = []int{
    	0,
    	1,
    	2,
    	3/* ERROR AFTER "missing ','" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 367 bytes
    - Viewed (0)
  2. src/net/testdata/igmp

    				010000E0     1 0:00000000		0
    4	eth2      :     1      V3
    				010000E0     1 0:00000000		0
    5	eth0.100  :     2      V3
    				FB0000E0     1 0:00000000		0
    				010000E0     1 0:00000000		0
    6	eth0.101  :     2      V3
    				FB0000E0     1 0:00000000		0
    				010000E0     1 0:00000000		0
    7	eth0.102  :     2      V3
    				FB0000E0     1 0:00000000		0
    				010000E0     1 0:00000000		0
    8	eth0.103  :     2      V3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 775 bytes
    - Viewed (0)
  3. test/fixedbugs/bug420.go

    // compile
    
    // Copyright 2012 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 1757.
    // gccgo failed to compile this.
    
    package main
    
    func main() {
         (_) = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 01:52:05 UTC 2012
    - 264 bytes
    - Viewed (0)
  4. test/fixedbugs/issue4510.dir/f2.go

    // Copyright 2012 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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 246 bytes
    - Viewed (0)
  5. test/fixedbugs/issue4517a.go

    // errorcheck
    
    // Copyright 2012 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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 245 bytes
    - Viewed (0)
  6. test/fixedbugs/issue4517b.go

    // errorcheck
    
    // Copyright 2012 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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 247 bytes
    - Viewed (0)
  7. test/fixedbugs/bug392.dir/pkg3.go

    // Copyright 2012 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.
    
    // Use the functions in pkg2.go so that the inlined
    // forms get type-checked.
    
    package pkg3
    
    import "./pkg2"
    
    var x = pkg2.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 303 bytes
    - Viewed (0)
  8. test/fixedbugs/bug454.go

    // run
    
    // Copyright 2012 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 4173
    
    package main
    
    func main() {
    	var arr *[10]int
    	s := 0
    	for i, _ := range arr {
    		// used to panic trying to access arr[i]
    		s += i
    	}
    	if s != 45 {
    		println("BUG")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 353 bytes
    - Viewed (0)
  9. test/fixedbugs/bug462.go

    // errorcheck
    
    // Copyright 2012 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 "os"
    
    var _ = os.Open // avoid imported and not used error
    
    type T struct {
    	File int
    }
    
    func main() {
    	_ = T{
    		os.File: 1, // ERROR "invalid field name os.File|unknown field"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 378 bytes
    - Viewed (0)
  10. test/fixedbugs/bug465.dir/b.go

    // Copyright 2012 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 "./a"
    
    func main() {
    	for _, f := range []func() int{
    		a.F1, a.F2, a.F3, a.F4,
    		a.F5, a.F6, a.F7, a.F8, a.F9} {
    		if f() > 1 {
    			panic("f() > 1")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 339 bytes
    - Viewed (0)
Back to top