Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,334 for 2055 (0.32 sec)

  1. src/runtime/cgo/gcc_signal_ios_nolldb.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.
    
    //go:build !lldb && ios && arm64
    
    #include <stdint.h>
    
    void darwin_arm_init_thread_exception_port() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 312 bytes
    - Viewed (0)
  2. src/runtime/atomic_riscv64.s

    // 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.
    
    #include "textflag.h"
    
    // func publicationBarrier()
    TEXT ·publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    	FENCE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 15 07:13:18 UTC 2020
    - 275 bytes
    - Viewed (0)
  3. test/fixedbugs/issue10700.dir/other.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 other
    
    type Exported interface {
    	Do()
    	secret()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 07 16:21:57 UTC 2015
    - 219 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcshared/testdata/libgo2/dup2.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 darwin || dragonfly || freebsd || (linux && !arm64 && !loong64 && !riscv64) || netbsd || openbsd
    
    package main
    
    import "syscall"
    
    func dup2(oldfd, newfd int) error {
    	return syscall.Dup2(oldfd, newfd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 374 bytes
    - Viewed (0)
  5. src/cmd/dist/vfp_default.s

    // 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 gc && !arm
    
    #include "textflag.h"
    
    TEXT ·useVFPv1(SB),NOSPLIT,$0
    	RET
    
    TEXT ·useVFPv3(SB),NOSPLIT,$0
    	RET
    
    TEXT ·useARMv6K(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 317 bytes
    - Viewed (0)
  6. src/internal/goarch/goarch_mips64.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 goarch
    
    const (
    	_ArchFamily          = MIPS64
    	_DefaultPhysPageSize = 16384
    	_PCQuantum           = 4
    	_MinFrameSize        = 8
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 331 bytes
    - Viewed (0)
  7. src/internal/goarch/goarch_mips64le.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 goarch
    
    const (
    	_ArchFamily          = MIPS64
    	_DefaultPhysPageSize = 16384
    	_PCQuantum           = 4
    	_MinFrameSize        = 8
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 331 bytes
    - Viewed (0)
  8. src/runtime/cgo/signal_ios_arm64.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 cgo
    
    import _ "unsafe"
    
    //go:cgo_export_static xx_cgo_panicmem xx_cgo_panicmem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 06 22:54:58 UTC 2020
    - 270 bytes
    - Viewed (0)
  9. test/fixedbugs/issue10654.go

    // compile
    
    // 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 10654: Failure to use generated temps
    // for function calls etc. in boolean codegen.
    
    package main
    
    var s string
    
    func main() {
    	if (s == "this") != (s == "that") {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 09 17:38:26 UTC 2015
    - 351 bytes
    - Viewed (0)
  10. src/cmd/vet/testdata/tagtest/file1.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 testtag
    // +build testtag
    
    package main
    
    import "fmt"
    
    func main() {
    	fmt.Printf("%s", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 263 bytes
    - Viewed (0)
Back to top