Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 139 for 2014 (0.08 sec)

  1. src/go/types/typexpr.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 type-checking of identifiers and type expressions.
    
    package types
    
    import (
    	"fmt"
    	"go/ast"
    	"go/constant"
    	"go/internal/typeparams"
    	. "internal/types/errors"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/crypto/tls/cipher_suites.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 tls
    
    import (
    	"crypto"
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/des"
    	"crypto/hmac"
    	"crypto/internal/boring"
    	"crypto/rc4"
    	"crypto/sha1"
    	"crypto/sha256"
    	"fmt"
    	"hash"
    	"internal/cpu"
    	"runtime"
    	_ "unsafe" // for linkname
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/object.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 types2
    
    import (
    	"bytes"
    	"cmd/compile/internal/syntax"
    	"fmt"
    	"go/constant"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // An Object describes a named language entity such as a package,
    // constant, type, variable, function (incl. methods), or label.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/gc.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 work
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"internal/buildcfg"
    	"internal/platform"
    	"io"
    	"log"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/gover"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/go/types/check.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.
    
    // This file implements the Check function, which drives type-checking.
    
    package types
    
    import (
    	"fmt"
    	"go/ast"
    	"go/constant"
    	"go/token"
    	"internal/godebug"
    	. "internal/types/errors"
    	"strings"
    	"sync/atomic"
    )
    
    // nopos, noposn indicate an unknown position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/net/textproto/reader.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
    
    import (
    	"bufio"
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"math"
    	"strconv"
    	"strings"
    	"sync"
    	_ "unsafe" // for linkname
    )
    
    // TODO: This should be a distinguishable error (ErrMessageTooLarge)
    // to allow mime/multipart to detect it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/objfile.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.
    
    // Writing Go object files.
    
    package obj
    
    import (
    	"bytes"
    	"cmd/internal/bio"
    	"cmd/internal/goobj"
    	"cmd/internal/notsha256"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"encoding/binary"
    	"fmt"
    	"internal/abi"
    	"io"
    	"log"
    	"os"
    	"path/filepath"
    	"sort"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/builtins.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.
    
    // This file implements typechecking of builtin function calls.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"go/constant"
    	"go/token"
    	. "internal/types/errors"
    )
    
    // builtin type-checks a call to the built-in specified by id and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. src/encoding/json/encode_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 json
    
    import (
    	"bytes"
    	"encoding"
    	"fmt"
    	"log"
    	"math"
    	"reflect"
    	"regexp"
    	"runtime/debug"
    	"strconv"
    	"testing"
    )
    
    type Optionals struct {
    	Sr string `json:"sr"`
    	So string `json:"so,omitempty"`
    	Sw string `json:"-"`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  10. src/net/smtp/smtp_test.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 smtp
    
    import (
    	"bufio"
    	"bytes"
    	"crypto/tls"
    	"crypto/x509"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"net"
    	"net/textproto"
    	"runtime"
    	"strings"
    	"testing"
    	"time"
    )
    
    type authTest struct {
    	auth       Auth
    	challenges []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top