Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 328 for 2014 (0.04 sec)

  1. test/escape2n.go

    // errorcheck -0 -N -m -l
    
    // 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.
    
    // Test, using compiler diagnostic flags, that the escape analysis is working.
    // Compiles but does not run.  Inlining is disabled.
    // Registerization is disabled too (-N), which should
    // have no effect on escape analysis.
    
    package foo
    
    import (
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typestring.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 printing of types.
    
    package types2
    
    import (
    	"bytes"
    	"fmt"
    	"sort"
    	"strconv"
    	"strings"
    	"unicode/utf8"
    )
    
    // A Qualifier controls how named package-level objects are printed in
    // calls to [TypeString], [ObjectString], and [SelectionString].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho_combine_dwarf.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 ld
    
    import (
    	"bytes"
    	"compress/zlib"
    	"debug/macho"
    	"encoding/binary"
    	"fmt"
    	"io"
    	"os"
    	"reflect"
    	"unsafe"
    )
    
    type loadCmd struct {
    	Cmd macho.LoadCmd
    	Len uint32
    }
    
    type dyldInfoCmd struct {
    	Cmd                      macho.LoadCmd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/encoding/json/bench_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.
    
    // Large data benchmark.
    // The JSON data is a summary of agl's changes in the
    // go, webkit, and chromium open source projects.
    // We benchmark converting between the JSON form
    // and in-memory data structures.
    
    package json
    
    import (
    	"bytes"
    	"compress/gzip"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/runtime/map_benchmark_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 (
    	"fmt"
    	"math/rand"
    	"strconv"
    	"strings"
    	"testing"
    )
    
    const size = 10
    
    func BenchmarkHashStringSpeed(b *testing.B) {
    	strings := make([]string, size)
    	for i := 0; i < size; i++ {
    		strings[i] = fmt.Sprintf("string#%d", i)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 16:41:16 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/sort/sort.go

    //    performed block rearrangements. See also "In-Place Merging Algorithms",
    //    Denham Coates-Evely, Department of Computer Science, Kings College,
    //    January 2004 and the references in there.
    //  - Often "optimal" algorithms are optimal in the number of assignments
    //    but Interface has only Swap as operation.
    
    // Stable sorts data in ascending order as determined by the Less method,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. src/sync/atomic/doc.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 atomic provides low-level atomic memory primitives
    // useful for implementing synchronization algorithms.
    //
    // These functions require great care to be used correctly.
    // Except for special, low-level applications, synchronization is better
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/runtime/export_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.
    
    // Export guts for testing.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/goos"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    var Fadd64 = fadd64
    var Fsub64 = fsub64
    var Fmul64 = fmul64
    var Fdiv64 = fdiv64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  9. src/go/build/build_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 build
    
    import (
    	"fmt"
    	"internal/testenv"
    	"io"
    	"os"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    func TestMain(m *testing.M) {
    	Default.GOROOT = testenv.GOROOT(nil)
    	os.Exit(m.Run())
    }
    
    func TestMatch(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  10. 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)
Back to top