Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 553 for 2014 (0.03 sec)

  1. src/crypto/md5/md5block_generic.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 (!amd64 && !386 && !arm && !ppc64le && !ppc64 && !s390x && !arm64) || purego
    
    package md5
    
    const haveAsm = false
    
    func block(dig *digest, p []byte) {
    	blockGeneric(dig, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 345 bytes
    - Viewed (0)
  2. src/syscall/flock_linux_32bit.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 && 386) || (linux && arm) || (linux && mips) || (linux && mipsle)
    
    package syscall
    
    func init() {
    	// On 32-bit Linux systems, the fcntl syscall that matches Go's
    	// Flock_t type is SYS_FCNTL64, not SYS_FCNTL.
    	fcntl64Syscall = SYS_FCNTL64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 21:35:49 UTC 2024
    - 421 bytes
    - Viewed (0)
  3. src/regexp/onepass_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 regexp
    
    import (
    	"regexp/syntax"
    	"slices"
    	"strings"
    	"testing"
    )
    
    var runeMergeTests = []struct {
    	left, right, merged []rune
    	next                []uint32
    	leftPC, rightPC     uint32
    }{
    	{
    		// empty rhs
    		[]rune{69, 69},
    		[]rune{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. 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)
  5. src/net/tcpsockopt_plan9.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.
    
    // TCP socket options for plan9
    
    package net
    
    import (
    	"internal/itoa"
    	"syscall"
    	"time"
    )
    
    func setNoDelay(_ *netFD, _ bool) error {
    	return syscall.EPLAN9
    }
    
    // Set keep alive period.
    func setKeepAliveIdle(fd *netFD, d time.Duration) error {
    	if d < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 762 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/cases/cases.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:generate go run gen.go gen_trieval.go
    
    // Package cases provides general and language-specific case mappers.
    package cases // import "golang.org/x/text/cases"
    
    import (
    	"golang.org/x/text/language"
    	"golang.org/x/text/transform"
    )
    
    // References:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/golang.org/x/text/language/coverage.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 language
    
    import (
    	"fmt"
    	"sort"
    
    	"golang.org/x/text/internal/language"
    )
    
    // The Coverage interface is used to define the level of coverage of an
    // internationalization service. Note that not all types are supported by all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.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 unsafeptr defines an Analyzer that checks for invalid
    // conversions of uintptr to unsafe.Pointer.
    package unsafeptr
    
    import (
    	_ "embed"
    	"go/ast"
    	"go/token"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. src/runtime/write_err_android.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 (
    	writeHeader = []byte{6 /* ANDROID_LOG_ERROR */, 'G', 'o', 0}
    	writePath   = []byte("/dev/log/main\x00")
    	writeLogd   = []byte("/dev/socket/logdw\x00")
    
    	// guarded by printlock/printunlock.
    	writeFD  uintptr
    	writeBuf [1024]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top