Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 281 for 2014 (0.03 sec)

  1. src/internal/types/testdata/check/decls1.go

    // Copyright 2012 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.
    
    // variable declarations
    
    package decls1
    
    import (
    	"math"
    )
    
    // Global variables without initialization
    var (
    	a, b bool
    	c byte
    	d uint8
    	r rune
    	i int
    	j, k, l int
    	x, y float32
    	xx, yy float64
    	u, v complex64
    	uu, vv complex128
    	s, t string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/net/textproto/textproto.go

    // Copyright 2010 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 textproto implements generic support for text-based request/response
    // protocols in the style of HTTP, NNTP, and SMTP.
    //
    // The package provides:
    //
    // [Error], which represents a numeric error response from
    // a server.
    //
    // [Pipeline], to manage pipelined requests and responses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/crypto/des/block.go

    // Copyright 2011 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 des
    
    import (
    	"internal/byteorder"
    	"sync"
    )
    
    func cryptBlock(subkeys []uint64, dst, src []byte, decrypt bool) {
    	b := byteorder.BeUint64(src)
    	b = permuteInitialBlock(b)
    	left, right := uint32(b>>32), uint32(b)
    
    	left = (left << 1) | (left >> 31)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. src/os/user/lookup.go

    // Copyright 2011 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 user
    
    import "sync"
    
    const (
    	userFile  = "/etc/passwd"
    	groupFile = "/etc/group"
    )
    
    var colon = []byte{':'}
    
    // Current returns the current user.
    //
    // The first call will cache the current user information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/time/internal_test.go

    // Copyright 2011 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 time
    
    func init() {
    	// Force US/Pacific for time zone tests.
    	ForceUSPacificForTesting()
    }
    
    func initTestingZone() {
    	// For hermeticity, use only tzinfo source from the test's GOROOT,
    	// not the system sources and not whatever GOROOT may happen to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_riscv64.go

    // Copyright 2015 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
    
    import "unsafe"
    
    //go:noescape
    func Xadd(ptr *uint32, delta int32) uint32
    
    //go:noescape
    func Xadd64(ptr *uint64, delta int64) uint64
    
    //go:noescape
    func Xadduintptr(ptr *uintptr, delta uintptr) uintptr
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. src/go/types/resolver_test.go

    // Copyright 2011 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 types_test
    
    import (
    	"fmt"
    	"go/ast"
    	"go/importer"
    	"go/token"
    	"internal/testenv"
    	"slices"
    	"testing"
    
    	. "go/types"
    )
    
    type resolveTestImporter struct {
    	importer ImporterFrom
    	imported map[string]bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/input.go

    // Copyright 2011 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 norm
    
    import "unicode/utf8"
    
    type input struct {
    	str   string
    	bytes []byte
    }
    
    func inputBytes(str []byte) input {
    	return input{bytes: str}
    }
    
    func inputString(str string) input {
    	return input{str: str}
    }
    
    func (in *input) setBytes(str []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/internal/poll/sendfile_windows.go

    // Copyright 2011 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 poll
    
    import (
    	"io"
    	"syscall"
    )
    
    // SendFile wraps the TransmitFile call.
    func SendFile(fd *FD, src syscall.Handle, n int64) (written int64, err error) {
    	defer func() {
    		TestHookDidSendFile(fd, 0, written, err, written > 0)
    	}()
    	if fd.kind == kindPipe {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/compress/gzip/gzip.go

    // Copyright 2010 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 gzip
    
    import (
    	"compress/flate"
    	"errors"
    	"fmt"
    	"hash/crc32"
    	"io"
    	"time"
    )
    
    // These constants are copied from the flate package, so that code that imports
    // "compress/gzip" does not also have to import "compress/flate".
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top