Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 88 for provider (0.17 sec)

  1. src/internal/coverage/cfile/ts_test.go

    			return dir
    		}
    	}
    	return t.TempDir()
    }
    
    // TestTestSupport does a basic verification of the functionality in
    // ProcessCoverTestDir (doing this here as opposed to
    // relying on other test paths will provide a better signal when
    // running "go test -cover" for this package).
    func TestTestSupport(t *testing.T) {
    	if !goexperiment.CoverageRedesign {
    		return
    	}
    	if testing.CoverMode() == "" {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/bug/bug.go

    		fmt.Print(body)
    	}
    }
    
    const bugHeader = `<!-- Please answer these questions before submitting your issue. Thanks! -->
    
    `
    const bugFooter = `### What did you do?
    
    <!--
    If possible, provide a recipe for reproducing the error.
    A complete runnable program is good.
    A link on play.golang.org is best.
    -->
    
    
    
    ### What did you expect to see?
    
    
    
    ### What did you see instead?
    
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/gcimporter.go

    }
    
    var pkgExts = [...]string{".a", ".o"} // a file from the build cache will have no extension
    
    // FindPkg returns the filename and unique package id for an import
    // path based on package information provided by build.Import (using
    // the build.Default build.Context). A relative srcDir is interpreted
    // relative to the current working directory.
    func FindPkg(path, srcDir string) (filename, id string, err error) {
    	if path == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/crypto/tls/key_schedule.go

    		b.AddBytes(context)
    	})
    	hkdfLabelBytes, err := hkdfLabel.Bytes()
    	if err != nil {
    		// Rather than calling BytesOrPanic, we explicitly handle this error, in
    		// order to provide a reasonable error message. It should be basically
    		// impossible for this to panic, and routing errors back through the
    		// tree rooted in this function is quite painful. The labels are fixed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/crypto/internal/hpke/hpke.go

    	"crypto/ecdh"
    	"crypto/rand"
    	"encoding/binary"
    	"errors"
    	"math/bits"
    
    	"golang.org/x/crypto/chacha20poly1305"
    	"golang.org/x/crypto/hkdf"
    )
    
    // testingOnlyGenerateKey is only used during testing, to provide
    // a fixed test key to use when checking the RFC 9180 vectors.
    var testingOnlyGenerateKey func() (*ecdh.PrivateKey, error)
    
    type hkdfKDF struct {
    	hash crypto.Hash
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/internal/poll/fd_wasip1.go

    	//
    	// WASI preview 1 lacks a dup(2) system call. When the os and net packages
    	// need to share a file/socket, instead of duplicating the underlying file
    	// descriptor, we instead provide a way to copy FD instances and manage the
    	// underlying file descriptor with reference counting.
    	RefCountPtr *int32
    
    	// RefCount is the reference count of Sysfd. When a copy of an FD is made,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    //
    // All Pos values are interpreted relative to Pass.Fset. If End is
    // provided, the diagnostic is specified to apply to the range between
    // Pos and End.
    type Diagnostic struct {
    	Pos      token.Pos
    	End      token.Pos // optional
    	Category string    // optional
    	Message  string
    
    	// URL is the optional location of a web page that provides
    	// additional documentation for this diagnostic.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	// invoke this function if necessary to provide a web interface.
    	//
    	// If HTTPServer is nil, pprof will use its own internal HTTP server.
    	//
    	// A common use for a custom HTTPServer is to provide custom
    	// authentication checks.
    	HTTPServer    func(args *HTTPServerArgs) error
    	HTTPTransport http.RoundTripper
    }
    
    // Writer provides a mechanism to write data under a certain name,
    // typically a filename.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/sha3/shake.go

    // Copyright 2014 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 sha3
    
    // This file defines the ShakeHash interface, and provides
    // functions for creating SHAKE and cSHAKE instances, as well as utility
    // functions for hashing bytes to arbitrary-length output.
    //
    //
    // SHAKE implementation is based on FIPS PUB 202 [1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/versions/types_go122.go

    	// 2) is some unknown Future version.
    	//
    	// File versions require a valid package version to be provided to types
    	// in Config.GoVersion. Config.GoVersion is either from the package's module
    	// or the toolchain (go run). This value should be provided by go/packages
    	// or unitchecker.Config.GoVersion.
    	if v := info.FileVersions[file]; IsValid(v) {
    		return v
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top