Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 754 for provider (0.26 sec)

  1. src/crypto/internal/boring/doc.go

    // Copyright 2017 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 boring provides access to BoringCrypto implementation functions.
    // Check the constant Enabled to find out whether BoringCrypto is available.
    // If BoringCrypto is not available, the functions in this package all panic.
    package boring
    
    // Enabled reports whether BoringCrypto is available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 05:28:51 UTC 2023
    - 826 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/infer.go

    	errorf := func(tpar, targ Type, arg *operand) {
    		// provide a better error message if we can
    		targs := u.inferred(tparams)
    		if targs[0] == nil {
    			// The first type parameter couldn't be inferred.
    			// If none of them could be inferred, don't try
    			// to provide the inferred type in the error msg.
    			allFailed := true
    			for _, targ := range targs {
    				if targ != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/lif/lif.go

    // Copyright 2016 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.
    
    //go:build solaris
    
    // Package lif provides basic functions for the manipulation of
    // logical network interfaces and interface addresses on Solaris.
    //
    // The package supports Solaris 11 or above.
    package lif
    
    import (
    	"syscall"
    )
    
    type endpoint struct {
    	af int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 950 bytes
    - Viewed (0)
  4. src/cmd/go/internal/cmdflag/flag.go

    	RawArg   string // the original argument, like --foo or -foo=value
    	Name     string
    	HasValue bool   // is this the -foo=value or --foo=value form?
    	Value    string // only provided if HasValue is true
    }
    
    func (e FlagNotDefinedError) Error() string {
    	return fmt.Sprintf("flag provided but not defined: -%s", e.Name)
    }
    
    // A NonFlagError indicates an argument that is not a syntactically-valid flag.
    type NonFlagError struct {
    	RawArg string
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 02:38:04 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    // Copyright 2017 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 httpproxy provides support for HTTP proxy determination
    // based on environment variables, as provided by net/http's
    // ProxyFromEnvironment function.
    //
    // The API is not subject to the Go 1 compatibility promise and may change at
    // any time.
    package httpproxy
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_non_crash_signal.txt

    # NOTE: this test is skipped on Windows, since there's no concept of signals.
    # When a process terminates another process, it provides an exit code.
    [GOOS:windows] skip
    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # FuzzNonCrash sends itself a signal that does not appear to be a crash.
    # We should not save a crasher.
    ! go test -fuzz=FuzzNonCrash
    ! exists testdata
    ! stdout unreachable
    ! stderr unreachable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/go/version/version.go

    // Copyright 2023 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 version provides operations on [Go versions]
    // in [Go toolchain name syntax]: strings like
    // "go1.20", "go1.21.0", "go1.22rc2", and "go1.23.4-bigcorp".
    //
    // [Go versions]: https://go.dev/doc/toolchain#version
    // [Go toolchain name syntax]: https://go.dev/doc/toolchain#name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:56:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/vendor_outside_module.txt

    ! go build -x -mod=readonly my-module/vendor/example.com/another-module/foo/bar/baz_with_outside_dep.go
    stderr 'no required module provides package rsc.io/quote'
    ! go build -x -mod=vendor my-module/vendor/example.com/another-module/foo/bar/baz_with_outside_dep.go
    stderr 'no required module provides package rsc.io/quote'
    
    -- my-module/go.mod --
    module example.com/my-module
    
    go 1.20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:24:57 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. src/log/log.go

    }
    
    // formatHeader writes log header to buf in following order:
    //   - l.prefix (if it's not blank and Lmsgprefix is unset),
    //   - date and/or time (if corresponding flags are provided),
    //   - file and line number (if corresponding flags are provided),
    //   - l.prefix (if it's not blank and Lmsgprefix is set).
    func formatHeader(buf *[]byte, t time.Time, prefix string, flag int, file string, line int) {
    	if flag&Lmsgprefix == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. src/log/slog/internal/buffer/buffer.go

    // Copyright 2022 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 buffer provides a pool-allocated byte buffer.
    package buffer
    
    import "sync"
    
    // buffer adapted from go/src/fmt/print.go
    type Buffer []byte
    
    // Having an initial size gives a dramatic speedup.
    var bufPool = sync.Pool{
    	New: func() any {
    		b := make([]byte, 0, 1024)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top