Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,444 for 2014 (0.15 sec)

  1. src/runtime/tls_arm.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 !windows
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // We have to resort to TLS variable to save g(R10).
    // One reason is that external code might trigger
    // SIGSEGV, and our runtime.sigtramp don't even know we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:38:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner.go

    // Copyright 2014 Google Inc. All Rights Reserved.
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. src/runtime/memclr_amd64.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 !plan9
    
    #include "go_asm.h"
    #include "textflag.h"
    #include "asm_amd64.h"
    
    // See memclrNoHeapPointers Go doc for important implementation constraints.
    
    // func memclrNoHeapPointers(ptr unsafe.Pointer, n uintptr)
    // ABIInternal for performance.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:52:34 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. src/runtime/signal_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.
    
    //go:build darwin || freebsd || linux || netbsd || openbsd
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    func dumpregs(c *sigctxt) {
    	print("r0      ", hex(c.r0()), "\n")
    	print("r1      ", hex(c.r1()), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 18:16:00 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/crypto/rand/rand_batched_test.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 unix
    
    package rand
    
    import (
    	"bytes"
    	"errors"
    	prand "math/rand"
    	"testing"
    )
    
    func TestBatched(t *testing.T) {
    	fillBatched := batched(func(p []byte) error {
    		for i := range p {
    			p[i] = byte(i)
    		}
    		return nil
    	}, 5)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. src/sync/atomic/value_test.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 atomic_test
    
    import (
    	"math/rand"
    	"runtime"
    	"strconv"
    	"sync"
    	"sync/atomic"
    	. "sync/atomic"
    	"testing"
    )
    
    func TestValue(t *testing.T) {
    	var v Value
    	if v.Load() != nil {
    		t.Fatal("initial Value is not nil")
    	}
    	v.Store(42)
    	x := v.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/http2/hpack/huffman.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 hpack
    
    import (
    	"bytes"
    	"errors"
    	"io"
    	"sync"
    )
    
    var bufPool = sync.Pool{
    	New: func() interface{} { return new(bytes.Buffer) },
    }
    
    // HuffmanDecode decodes the string in v and writes the expanded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue9400_linux.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.
    
    // Test that SIGSETXID runs on signal stack, since it's likely to
    // overflow if it runs on the Go stack.
    
    package cgotest
    
    /*
    #include <sys/types.h>
    #include <unistd.h>
    */
    import "C"
    
    import (
    	"runtime"
    	"runtime/debug"
    	"sync/atomic"
    	"testing"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/runtime/syscall_solaris.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"
    
    var (
    	libc_chdir,
    	libc_chroot,
    	libc_close,
    	libc_execve,
    	libc_fcntl,
    	libc_forkx,
    	libc_gethostname,
    	libc_getpid,
    	libc_ioctl,
    	libc_setgid,
    	libc_setgroups,
    	libc_setrlimit,
    	libc_setsid,
    	libc_setuid,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/svg.go

    // Copyright 2014 Google Inc. All Rights Reserved.
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top