Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 277 for 2014 (0.1 sec)

  1. src/cmd/compile/internal/inline/inlheur/scoring.go

    // 115    40          DEMOTED cmd/compile/internal/abi.(*ABIParamAssignment).Offset     expand_calls.go:1679:14|6       panicPathAdj
    // 76     -5n         PROMOTED runtime.persistentalloc   mcheckmark.go:48:45|3   inLoopAdj
    // 201    0           --- PGO  unicode.DecodeRuneInString        utf8.go:312:30|1
    // 7      -5          --- PGO  internal/abi.Name.DataChecked     type.go:625:22|0        inLoopAdj
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/net/mail/message.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 mail implements parsing of mail messages.
    
    For the most part, this package follows the syntax as specified by RFC 5322 and
    extended by RFC 6532.
    Notable divergences:
      - Obsolete address formats are not parsed, including addresses with
        embedded route information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. src/runtime/memmove_test.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 runtime_test
    
    import (
    	"crypto/rand"
    	"encoding/binary"
    	"fmt"
    	"internal/race"
    	"internal/testenv"
    	. "runtime"
    	"sync/atomic"
    	"testing"
    	"unsafe"
    )
    
    func TestMemmove(t *testing.T) {
    	if *flagQuick {
    		t.Skip("-quick")
    	}
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. src/text/template/parse/parse_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 parse
    
    import (
    	"flag"
    	"fmt"
    	"strings"
    	"testing"
    )
    
    var debug = flag.Bool("debug", false, "show the errors produced by the main tests")
    
    type numberTest struct {
    	text      string
    	isInt     bool
    	isUint    bool
    	isFloat   bool
    	isComplex bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/net/lookup_plan9.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 (
    	"context"
    	"errors"
    	"internal/bytealg"
    	"internal/itoa"
    	"internal/stringslite"
    	"io"
    	"os"
    )
    
    // cgoAvailable set to true to indicate that the cgo resolver
    // is available on Plan 9. Note that on Plan 9 the cgo resolver
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/regexp/example_test.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 regexp_test
    
    import (
    	"fmt"
    	"regexp"
    	"strings"
    )
    
    func Example() {
    	// Compile the expression once, usually at init time.
    	// Use raw strings to avoid having to quote the backslashes.
    	var validID = regexp.MustCompile(`^[a-z]+\[[0-9]+\]$`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. src/mime/encodedword.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 mime
    
    import (
    	"bytes"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"io"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // A WordEncoder is an RFC 2047 encoded-word encoder.
    type WordEncoder byte
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/transform/transform.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 transform provides reader and writer wrappers that transform the
    // bytes passing through as well as various transformations. Example
    // transformations provided by other packages include normalization and
    // conversion between character sets.
    package transform // import "golang.org/x/text/transform"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/fmt.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 ir
    
    import (
    	"bytes"
    	"fmt"
    	"go/constant"
    	"io"
    	"os"
    	"path/filepath"
    	"reflect"
    	"strings"
    
    	"unicode/utf8"
    
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    )
    
    // Op
    
    var OpNames = []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/build.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 is a lightly modified copy go/build/build.go with unused parts
    // removed.
    
    package modindex
    
    import (
    	"bytes"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/str"
    	"errors"
    	"fmt"
    	"go/ast"
    	"go/build"
    	"go/build/constraint"
    	"go/token"
    	"io"
    	"io/fs"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
Back to top