Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,734 for reserved4 (0.13 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/crash_go123.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.23
    // +build go1.23
    
    package crashmonitor
    
    import (
    	"os"
    	"runtime/debug"
    )
    
    func init() {
    	setCrashOutput = func(f *os.File) error { return debug.SetCrashOutput(f, debug.CrashOptions{}) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:32:04 UTC 2024
    - 367 bytes
    - Viewed (0)
  2. src/runtime/typekind.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 runtime
    
    import "internal/abi"
    
    // isDirectIface reports whether t is stored directly in an interface value.
    func isDirectIface(t *_type) bool {
    	return t.Kind_&abi.KindDirectIface != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 356 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/hashes_noasm.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.
    
    //go:build !gc || purego || !s390x
    
    package sha3
    
    func new224() *state {
    	return new224Generic()
    }
    
    func new256() *state {
    	return new256Generic()
    }
    
    func new384() *state {
    	return new384Generic()
    }
    
    func new512() *state {
    	return new512Generic()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 409 bytes
    - Viewed (0)
  4. src/testing/export_test.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 testing
    
    var PrettyPrint = prettyPrint
    
    type HighPrecisionTime = highPrecisionTime
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 300 bytes
    - Viewed (0)
  5. src/internal/runtime/syscall/defs_linux_arm64.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.
    
    package syscall
    
    const (
    	SYS_EPOLL_CREATE1 = 20
    	SYS_EPOLL_CTL     = 21
    	SYS_EPOLL_PWAIT   = 22
    	SYS_FCNTL         = 25
    	SYS_MPROTECT      = 226
    	SYS_EPOLL_PWAIT2  = 441
    	SYS_EVENTFD2      = 19
    
    	EFD_NONBLOCK = 0x800
    )
    
    type EpollEvent struct {
    	Events uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 14:54:29 UTC 2024
    - 472 bytes
    - Viewed (0)
  6. test/fixedbugs/issue66575.go

    // run
    
    // 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.
    
    package main
    
    var (
    	v0 = initv0()
    	v1 = initv1()
    )
    
    const c = "c"
    
    func initv0() string {
    	println("initv0")
    	if c != "" { // have a dependency on c
    		return ""
    	}
    	return ""
    }
    
    func initv1() string {
    	println("initv1")
    	return ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 434 bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512block_s390x.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.
    
    //go:build !purego
    
    package sha512
    
    import "internal/cpu"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 252 bytes
    - Viewed (0)
  8. src/os/exec_linux.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.
    
    package os
    
    import (
    	"syscall"
    )
    
    func (p *Process) closeHandle() {
    	syscall.Close(int(p.handle))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 261 bytes
    - Viewed (0)
  9. src/internal/syscall/unix/at_sysnum_darwin.go

    // Copyright 2018 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 unix
    
    const (
    	AT_EACCESS          = 0x10
    	AT_FDCWD            = -0x2
    	AT_REMOVEDIR        = 0x80
    	AT_SYMLINK_NOFOLLOW = 0x0020
    
    	UTIME_OMIT = -0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 15:02:38 UTC 2024
    - 318 bytes
    - Viewed (0)
  10. src/internal/syscall/unix/kernel_version_other.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 !linux && !solaris
    
    package unix
    
    func KernelVersion() (major int, minor int) {
    	return 0, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 266 bytes
    - Viewed (0)
Back to top