Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for 2014 (0.47 sec)

  1. 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)
  2. src/cmd/go/internal/help/helpdoc.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 help
    
    import "cmd/go/internal/base"
    
    var HelpC = &base.Command{
    	UsageLine: "c",
    	Short:     "calling between Go and C",
    	Long: `
    There are two different ways to call between Go and C/C++ code.
    
    The first is the cgo tool, which is part of the Go distribution. For
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api.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.
    
    // Package types2 declares the data types and implements
    // the algorithms for type-checking of Go packages. Use
    // Config.Check to invoke the type checker for a package.
    // Alternatively, create a new type checker with NewChecker
    // and invoke it incrementally by calling Checker.Files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/net/http/transport.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.
    
    // HTTP client implementation. See RFC 7230 through 7235.
    //
    // This is the low-level Transport implementation of RoundTripper.
    // The high-level interface is in client.go.
    
    package http
    
    import (
    	"bufio"
    	"compress/gzip"
    	"container/list"
    	"context"
    	"crypto/tls"
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/image/gif/writer_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 gif
    
    import (
    	"bytes"
    	"image"
    	"image/color"
    	"image/color/palette"
    	"image/draw"
    	_ "image/png"
    	"io"
    	"math/rand"
    	"os"
    	"reflect"
    	"testing"
    )
    
    func readImg(filename string) (image.Image, error) {
    	f, err := os.Open(filename)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.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.
    
    // Code generated by 'go test cmd/go -v -run=^TestDocsUpToDate$ -fixdocs'; DO NOT EDIT.
    // Edit the documentation in other files and then execute 'go generate cmd/go' to generate this one.
    
    // Go is a tool for managing Go source code.
    //
    // Usage:
    //
    //	go <command> [arguments]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. doc/go_spec.html

    </p>
    
    <p>
    If the operands of these functions are all constants, the return
    value is a constant.
    </p>
    
    <pre>
    var a = complex(2, -2)             // complex128
    const b = complex(1.0, -1.4)       // untyped complex constant 1 - 1.4i
    x := float32(math.Cos(math.Pi/2))  // float32
    var c64 = complex(5, -x)           // complex64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	// has Content-Length.
    	0: {
    		bodySize:      20 << 10,
    		bodyChunked:   false,
    		reqConnClose:  false,
    		wantEOFSearch: true,
    		wantNextReq:   true,
    	},
    
    	// Small enough to slurp past to the next request +
    	// is chunked.
    	1: {
    		bodySize:      20 << 10,
    		bodyChunked:   true,
    		reqConnClose:  false,
    		wantEOFSearch: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/sync/waitgroup.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 sync
    
    import (
    	"internal/race"
    	"sync/atomic"
    	"unsafe"
    )
    
    // A WaitGroup waits for a collection of goroutines to finish.
    // The main goroutine calls [WaitGroup.Add] to set the number of
    // goroutines to wait for. Then each of the goroutines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.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 ssagen
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"go/constant"
    	"html"
    	"internal/buildcfg"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/liveness"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top