Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 837 for provider (0.1 sec)

  1. src/cmd/go/testdata/script/mod_replace_readonly.txt

    ! go list rsc.io/quote
    stderr '^module rsc.io/quote provides package rsc.io/quote and is replaced but not required; to add it:\n\tgo get rsc.io/quote$'
    go get rsc.io/quote
    cmp go.mod go.mod.latest
    go list rsc.io/quote
    cp go.mod.orig go.mod
    
    # Same test with a specific version.
    go mod edit -replace rsc.io/quote@v1.0.0-doesnotexist=./quote
    ! go list rsc.io/quote
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/text3.txt

    -- input --
    Package gob manages streams of gobs - binary values exchanged between an
    Encoder (transmitter) and a Decoder (receiver). A typical use is
    transporting arguments and results of remote procedure calls (RPCs) such as
    those provided by package "net/rpc".
    
    The implementation compiles a custom codec for each data type in the stream
    and is most efficient when a single Encoder is used to transmit a stream of
    values, amortizing the cost of compilation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 937 bytes
    - Viewed (0)
  3. src/os/signal/signal.go

    		}
    	} else {
    		for _, s := range sigs {
    			remove(signum(s))
    		}
    	}
    }
    
    // Ignore causes the provided signals to be ignored. If they are received by
    // the program, nothing will happen. Ignore undoes the effect of any prior
    // calls to [Notify] for the provided signals.
    // If no signals are provided, all incoming signals will be ignored.
    func Ignore(sig ...os.Signal) {
    	cancel(sig, ignoreSignal)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/testdata/chans.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package chans
    
    import "runtime"
    
    // Ranger returns a Sender and a Receiver. The Receiver provides a
    // Next method to retrieve values. The Sender provides a Send method
    // to send values and a Close method to stop sending values. The Next
    // method indicates when the Sender has been closed, and the Send
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. src/internal/types/testdata/examples/inference.go

    	// mixed can be called with explicit instantiation.
    	mixed[int, string, bool](0, "", false)
    
    	// Alternatively, partial type arguments may be provided
    	// (from left to right), and the other may be inferred.
    	mixed[int, string](0, "", false)
    	mixed[int](0, "", false)
    	mixed(0, "", false)
    
    	// Provided type arguments always take precedence over
    	// inferred types.
    	mixed[int, string](1.1 /* ERROR "cannot use 1.1" */, "", false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 16:49:45 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/go/doc/testdata/testing.1.golden

    PACKAGE testing
    
    IMPORTPATH
    	testdata/testing
    
    IMPORTS
    	bytes
    	flag
    	fmt
    	io
    	os
    	runtime
    	runtime/pprof
    	strconv
    	strings
    	time
    
    FILENAMES
    	testdata/benchmark.go
    	testdata/example.go
    	testdata/testing.go
    
    VARIABLES
    	// 
    	var (
    		// The short flag requests that tests run more quickly, but its functionality
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/cover/profile.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 cover provides support for parsing coverage profiles
    // generated by "go test -coverprofile=cover.out".
    package cover // import "golang.org/x/tools/cover"
    
    import (
    	"bufio"
    	"errors"
    	"fmt"
    	"io"
    	"math"
    	"os"
    	"sort"
    	"strconv"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  8. doc/next/6-stdlib/3-structs.md

    ### New structs package
    
    The new [structs] package provides
    types for struct fields that modify properties of
    the containing struct type such as memory layout.
    
    In this release, the only such type is
    [`HostLayout`](/pkg/structs#HostLayout)
    which indicates that a structure with a field of that
    type has a layout that conforms to host platform
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:06:02 UTC 2024
    - 356 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/README.md

    ## Notable Packages
    
    - The [x/telemetry/counter](https://pkg.go.dev/golang.org/x/telemetry/counter)
      package provides a library for instrumenting programs with counters and stack
      reports.
    - The [x/telemetry/upload](https://pkg.go.dev/golang.org/x/telemetry/upload)
      package provides a hook for Go toolchain programs to upload telemetry data,
      if the user has opted in to telemetry uploading.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/database/sql/driver/driver.go

    	// string should be returned for that entry.
    	Columns() []string
    
    	// Close closes the rows iterator.
    	Close() error
    
    	// Next is called to populate the next row of data into
    	// the provided slice. The provided slice will be the same
    	// size as the Columns() are wide.
    	//
    	// Next should return io.EOF when there are no more rows.
    	//
    	// The dest should not be written to outside of Next. Care
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top