Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,661 for reserved4 (0.09 sec)

  1. src/os/export_windows_test.go

    // Copyright 2016 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 os
    
    // Export for testing.
    
    var (
    	AddExtendedPrefix  = addExtendedPrefix
    	NewConsoleFile     = newConsoleFile
    	CommandLineToArgv  = commandLineToArgv
    	AllowReadDirFileID = &allowReadDirFileID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 14:34:38 UTC 2024
    - 363 bytes
    - Viewed (0)
  2. src/crypto/tls/notboring.go

    // Copyright 2022 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 !boringcrypto
    
    package tls
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 237 bytes
    - Viewed (0)
  3. src/os/exec_nohandle.go

    // Copyright 2024 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 && !windows
    
    package os
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 238 bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/unaligned.go

    // Copyright 2020 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 atomic
    
    func panicUnaligned() {
    	panic("unaligned 64-bit atomic operation")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 246 bytes
    - Viewed (0)
  5. src/internal/abi/abi_loong64.go

    // Copyright 2023 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 abi
    
    const (
    	// See abi_generic.go.
    
    	// R4 - R19
    	IntArgRegs = 16
    
    	// F0 - F15
    	FloatArgRegs = 16
    
    	EffectiveFloatRegSize = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 299 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/versions/toolchain_go120.go

    // Copyright 2024 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 go1.20
    // +build go1.20
    
    package versions
    
    func init() {
    	if Compare(toolchain, Go1_20) < 0 {
    		toolchain = Go1_20
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 291 bytes
    - Viewed (0)
  7. src/crypto/sha256/sha256block_decl.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.
    
    //go:build (386 || amd64 || s390x || ppc64le || ppc64) && !purego
    
    package sha256
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 291 bytes
    - Viewed (0)
  8. src/runtime/linkname_unix.go

    // Copyright 2024 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 unix
    
    package runtime
    
    import _ "unsafe"
    
    // used in internal/syscall/unix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 266 bytes
    - Viewed (0)
  9. src/internal/coverage/cfile/testdata/issue59563/repro_test.go

    // Copyright 2023 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 repro
    
    import "testing"
    
    func TestSomething(t *testing.T) {
    	small()
    	for i := 0; i < 1001; i++ {
    		large(i)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 282 bytes
    - Viewed (0)
  10. src/internal/syscall/unix/sysnum_linux_ppc64x.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 ppc64 || ppc64le
    
    package unix
    
    const (
    	getrandomTrap       uintptr = 359
    	copyFileRangeTrap   uintptr = 379
    	pidfdSendSignalTrap uintptr = 424
    	pidfdOpenTrap       uintptr = 434
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 353 bytes
    - Viewed (0)
Back to top