Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 2014 (0.04 sec)

  1. src/sync/example_test.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 sync_test
    
    import (
    	"fmt"
    	"os"
    	"sync"
    )
    
    type httpPkg struct{}
    
    func (httpPkg) Get(url string) {}
    
    var http httpPkg
    
    // This example fetches several URLs concurrently,
    // using a WaitGroup to block until all the fetches are complete.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 17:45:47 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/go/ast/example_test.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 ast_test
    
    import (
    	"fmt"
    	"go/ast"
    	"go/format"
    	"go/parser"
    	"go/token"
    	"strings"
    )
    
    // This example demonstrates how to inspect the AST of a Go program.
    func ExampleInspect() {
    	// src is the input for which we want to inspect the AST.
    	src := `
    package p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:44:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/go/types/example_test.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.
    
    // Only run where builders (build.golang.org) have
    // access to compiled packages for import.
    //
    //go:build !android && !ios && !js && !wasip1
    
    package types_test
    
    // This file shows examples of basic usage of the go/types API.
    //
    // To locate a Go package, use (*go/build.Context).Import.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top