Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 838 for 2014 (0.03 sec)

  1. src/cmd/cgo/internal/test/issue8694.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 !android && !((ppc64 || ppc64le) && internal)
    
    package cgotest
    
    /*
    #include <complex.h>
    
    complex float complexFloatSquared(complex float a) { return a*a; }
    complex double complexDoubleSquared(complex double a) { return a*a; }
    */
    import "C"
    
    import (
    	"runtime"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 15:35:35 UTC 2024
    - 984 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue9026/issue9026.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 issue9026
    
    // This file appears in its own package since the assertion tests the
    // per-package counter used to create fresh identifiers.
    
    /*
    typedef struct { int i; } git_merge_file_input;
    
    typedef struct { int j; } git_merge_file_options;
    
    void git_merge_file(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/static/README.md

    // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    
    The license for webcomponents.min.js is as follows:
    
    /**
     * @license
     * Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
     * This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
     * The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/hkdf/hkdf.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 hkdf implements the HMAC-based Extract-and-Expand Key Derivation
    // Function (HKDF) as defined in RFC 5869.
    //
    // HKDF is a cryptographic key derivation function (KDF) with the goal of
    // expanding limited input keying material into one or more cryptographically
    // strong secret keys.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. src/runtime/defs_linux_arm.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 "unsafe"
    
    // Constants
    const (
    	_EINTR  = 0x4
    	_ENOMEM = 0xc
    	_EAGAIN = 0xb
    
    	_PROT_NONE  = 0
    	_PROT_READ  = 0x1
    	_PROT_WRITE = 0x2
    	_PROT_EXEC  = 0x4
    
    	_MAP_ANON    = 0x20
    	_MAP_PRIVATE = 0x2
    	_MAP_FIXED   = 0x10
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/runtime/stubs2.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 !aix && !darwin && !js && !openbsd && !plan9 && !solaris && !wasip1 && !windows
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // read calls the read system call.
    // It returns a non-negative number of bytes written or a negative errno value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_darwin_arm64.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.
    
    #include <limits.h>
    #include <pthread.h>
    #include <signal.h>
    #include <string.h> /* for strerror */
    #include <sys/param.h>
    #include <unistd.h>
    #include <stdlib.h>
    
    #include "libcgo.h"
    #include "libcgo_unix.h"
    
    #include <TargetConditionals.h>
    
    #if TARGET_OS_IPHONE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 03:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/syscall/asm_linux_mips64x.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 linux && (mips64 || mips64le)
    
    #include "textflag.h"
    
    //
    // System calls for mips64, Linux
    //
    
    // func rawVforkSyscall(trap, a1, a2, a3 uintptr) (r1, err uintptr)
    TEXT ·rawVforkSyscall(SB),NOSPLIT|NOFRAME,$0-48
    	MOVV	a1+8(FP), R4
    	MOVV	a2+16(FP), R5
    	MOVV	a3+24(FP), R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 985 bytes
    - Viewed (0)
  9. src/runtime/signal_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 linux && (ppc64 || ppc64le)
    
    package runtime
    
    import (
    	"internal/goarch"
    	"unsafe"
    )
    
    type sigctxt struct {
    	info *siginfo
    	ctxt unsafe.Pointer
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/sha3/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 sha3 implements the SHA-3 fixed-output-length hash functions and
    // the SHAKE variable-output-length hash functions defined by FIPS-202.
    //
    // Both types of hash function use the "sponge" construction and the Keccak
    // permutation. For a detailed specification see http://keccak.noekeon.org/
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top