Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for 2014 (0.04 sec)

  1. test/fixedbugs/bug466.dir/a.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 a
    
    const N = 2+3i
    
    func Func() []complex128 {
    	return []complex128{1, complex(2, 3), complex(4, 5)}
    }
    
    func Mul(z complex128) complex128 {
    	return z * (3 + 4i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 330 bytes
    - Viewed (0)
  2. test/fixedbugs/issue4964.dir/a.go

    // Copyright 2013 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 a
    
    var global, global2 *int
    
    type T struct {
    	Pointer *int
    }
    
    //go:noinline
    func Store(t *T) {
    	global = t.Pointer
    }
    
    //go:noinline
    func Store2(t *T) {
    	global2 = t.Pointer
    }
    
    func Get() *int {
    	return global
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 02:01:34 UTC 2015
    - 379 bytes
    - Viewed (0)
Back to top