Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 268 for 2014 (0.07 sec)

  1. src/cmd/compile/internal/types2/return.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.
    
    // This file implements isTerminating.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    )
    
    // isTerminating reports if s is a terminating statement.
    // If s is labeled, label is the label name; otherwise s
    // is "".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/net/iprawsock_posix.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.
    
    //go:build unix || js || wasip1 || windows
    
    package net
    
    import (
    	"context"
    	"syscall"
    )
    
    func sockaddrToIP(sa syscall.Sockaddr) Addr {
    	switch sa := sa.(type) {
    	case *syscall.SockaddrInet4:
    		return &IPAddr{IP: sa.Addr[0:]}
    	case *syscall.SockaddrInet6:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/make.rc

    #!/bin/rc -e
    # 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.
    
    # See golang.org/s/go15bootstrap for an overview of the build process.
    
    # Environment variables that control make.rc:
    #
    # GOHOSTARCH: The architecture for host tools (compilers and
    # binaries).  Binaries of this type must be executable on the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/runtime/lock_sema.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.
    
    //go:build aix || darwin || netbsd || openbsd || plan9 || solaris || windows
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // This implementation depends on OS-specific implementations of
    //
    //	func semacreate(mp *m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unusedresult/unusedresult.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 unusedresult defines an analyzer that checks for unused
    // results of calls to certain functions.
    package unusedresult
    
    // It is tempting to make this analysis inductive: for each function
    // that tail-calls one of the functions that we check, check those
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/runtime/netpoll_epoll.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.
    
    //go:build linux
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"internal/runtime/syscall"
    	"unsafe"
    )
    
    var (
    	epfd           int32         = -1 // epoll descriptor
    	netpollEventFd uintptr            // eventfd for netpollBreak
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/go/types/labels.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 types
    
    import (
    	"go/ast"
    	"go/token"
    	. "internal/types/errors"
    )
    
    // labels checks correct label use in body.
    func (check *Checker) labels(body *ast.BlockStmt) {
    	// set of all labels in this body
    	all := NewScope(nil, body.Pos(), body.End(), "label")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. src/compress/bzip2/huffman.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 bzip2
    
    import (
    	"cmp"
    	"slices"
    )
    
    // A huffmanTree is a binary tree which is navigated, bit-by-bit to reach a
    // symbol.
    type huffmanTree struct {
    	// nodes contains all the non-leaf nodes in the tree. nodes[0] is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/help.go

    // Copyright 2017 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 help implements the “go help” command.
    package help
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    	"os"
    	"strings"
    	"text/template"
    	"unicode"
    	"unicode/utf8"
    
    	"cmd/go/internal/base"
    	"cmd/internal/telemetry"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. src/net/interface_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 net
    
    import (
    	"internal/syscall/windows"
    	"os"
    	"syscall"
    	"unsafe"
    )
    
    // adapterAddresses returns a list of IP adapter and address
    // structures. The structure contains an IP adapter and flattened
    // multiple IP addresses including unicast, anycast and multicast
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top