Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,994 for 2014 (0.12 sec)

  1. test/fixedbugs/issue8060.dir/a.go

    // Copyright 2014 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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 15 16:24:16 UTC 2014
    - 198 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue9400/stubs.go

    // Copyright 2014 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 linux && gc
    
    package issue9400
    
    var Baton int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 243 bytes
    - Viewed (0)
  3. test/fixedbugs/issue8155.go

    // run
    
    // Copyright 2014 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 8155.
    // Alignment of stack prologue zeroing was wrong on 64-bit Native Client
    // (because of 32-bit pointers).
    
    package main
    
    import "runtime"
    
    func bad(b bool) uintptr {
    	var p **int
    	var x1 uintptr
    	x1 = 1
    	if b {
    		var x [11]*int
    		p = &x[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 711 bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_ppc64x.c

    // Copyright 2014 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
    
    #include <pthread.h>
    #include <string.h>
    #include <signal.h>
    #include "libcgo.h"
    #include "libcgo_unix.h"
    
    static void *threadentry(void*);
    
    void (*x_cgo_inittls)(void **tlsg, void **tlsbase);
    static void (*setg_gcc)(void*);
    
    void
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 03:13:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testshared/testdata/depBase/asm.s

    // Copyright 2014 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 gc
    
    #include "textflag.h"
    
    TEXT ·ImplementedInAsm(SB),NOSPLIT,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 250 bytes
    - Viewed (0)
  6. test/fixedbugs/issue7538b.go

    // compile
    
    // Copyright 2014 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 7538: blank (_) labels handled incorrectly
    
    package p
    
    func f() {
    _:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 09 06:34:17 UTC 2014
    - 252 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/doc.go

    // Copyright 2014 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 ppc64asm implements decoding of 64-bit PowerPC machine code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 00:11:05 UTC 2016
    - 250 bytes
    - Viewed (0)
  8. src/internal/goarch/goarch_amd64.go

    // Copyright 2014 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 goarch
    
    const (
    	_ArchFamily          = AMD64
    	_DefaultPhysPageSize = 4096
    	_PCQuantum           = 1
    	_MinFrameSize        = 0
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 329 bytes
    - Viewed (0)
  9. src/internal/goarch/goarch_arm64.go

    // Copyright 2014 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 goarch
    
    const (
    	_ArchFamily          = ARM64
    	_DefaultPhysPageSize = 65536
    	_PCQuantum           = 4
    	_MinFrameSize        = 8
    	_StackAlign          = 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 325 bytes
    - Viewed (0)
  10. src/internal/goarch/goarch_ppc64le.go

    // Copyright 2014 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 goarch
    
    const (
    	_ArchFamily          = PPC64
    	_DefaultPhysPageSize = 65536
    	_PCQuantum           = 4
    	_MinFrameSize        = 32
    	_StackAlign          = 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 326 bytes
    - Viewed (0)
Back to top