Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 346 for 2014 (0.62 sec)

  1. src/encoding/gob/gobencdec_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.
    
    // This file contains tests of the GobEncoder/GobDecoder support.
    
    package gob
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    )
    
    // Types that implement the GobEncoder/Decoder interfaces.
    
    type ByteStruct struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  2. src/text/template/parse/parse.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 builds parse trees for templates as defined by text/template
    // and html/template. Clients should use those packages to construct templates
    // rather than this one, which provides shared internal data structures not
    // intended for general use.
    package parse
    
    import (
    	"bytes"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/build_read.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 is a lightly modified copy go/build/read.go with unused parts
    // removed.
    
    package modindex
    
    import (
    	"bufio"
    	"bytes"
    	"errors"
    	"fmt"
    	"go/ast"
    	"go/build"
    	"go/parser"
    	"go/token"
    	"io"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. src/html/template/content_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 template
    
    import (
    	"bytes"
    	"fmt"
    	"strings"
    	"testing"
    )
    
    func TestTypedContent(t *testing.T) {
    	data := []any{
    		`<b> "foo%" O'Reilly &bar;`,
    		CSS(`a[href =~ "//example.com"]#foo`),
    		HTML(`Hello, <b>World</b> &amp;tc!`),
    		HTMLAttr(` dir="ltr"`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  5. src/runtime/sys_freebsd_arm.s

    // 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.
    //
    // System calls and other sys.stuff for ARM, FreeBSD
    // /usr/src/sys/kern/syscalls.master for syscall numbers.
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    // for EABI, as we don't support OABI
    #define SYS_BASE 0x0
    
    #define SYS_exit (SYS_BASE + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/ssa/stackalloc.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.
    
    // TODO: live at start of block instead?
    
    package ssa
    
    import (
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"cmd/internal/src"
    	"fmt"
    )
    
    type stackAllocState struct {
    	f *Func
    
    	// live is the output of stackalloc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top