Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 837 for provider (0.24 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    // packages:
    //
    //  1. For each package marked with pkgInAll, the module path that provided that
    //     package is included as a root.
    //  2. For all packages, the module that provided that package either remains
    //     selected at the same version or is upgraded by the dependencies of a
    //     root.
    //
    // If any module that provided a package has been upgraded above its previous
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	CreatePipe(readhandle *Handle, writehandle *Handle, sa *SecurityAttributes, size uint32) (err error)
    //sys	GetFileType(filehandle Handle) (n uint32, err error)
    //sys	CryptAcquireContext(provhandle *Handle, container *uint16, provider *uint16, provtype uint32, flags uint32) (err error) = advapi32.CryptAcquireContextW
    //sys	CryptReleaseContext(provhandle Handle, flags uint32) (err error) = advapi32.CryptReleaseContext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. src/sync/atomic/doc.go

    // AndInt32 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old value.
    // Consider using the more ergonomic and less error-prone [Int32.And] instead.
    func AndInt32(addr *int32, mask int32) (old int32)
    
    // AndUint32 atomically performs a bitwise AND operation on *addr using the bitmask provided as mask
    // and returns the old value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/database/sql/driver/types.go

    )
    
    // ValueConverter is the interface providing the ConvertValue method.
    //
    // Various implementations of ValueConverter are provided by the
    // driver package to provide consistent implementations of conversions
    // between drivers. The ValueConverters have several uses:
    //
    //   - converting from the [Value] types as provided by the sql package
    //     into a database table's specific column type and making sure it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/nettest/nettest.go

    // Copyright 2019 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 nettest provides utilities for network testing.
    package nettest
    
    import (
    	"errors"
    	"fmt"
    	"net"
    	"os"
    	"os/exec"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    )
    
    var (
    	stackOnce               sync.Once
    	ipv4Enabled             bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/go/types/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.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_convergence_loop.txt

    stderr '^go: example\.net/m imports\n\texample\.net/y: package example\.net/y provided by example\.net/y at latest version v0\.1\.0 but not at required version v0\.2\.0-pre$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    }
    
    // The Range interface provides a range. It's equivalent to and satisfied by
    // ast.Node.
    type Range interface {
    	Pos() token.Pos // position of first character belonging to the node
    	End() token.Pos // position of first character immediately after the node
    }
    
    // ReportRangef is a helper function that reports a Diagnostic using the
    // range provided. ast.Node values can be passed in as the range because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/errors.go

    	}
    	return &error_{check: check, code: code}
    }
    
    // addf adds formatted error information to err.
    // It may be called multiple times to provide additional information.
    // The position of the first call to addf determines the position of the reported Error.
    // Subsequent calls to addf provide additional information in the form of additional lines
    // in the error message (types2) or continuation errors identified by a tab-indented error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/outbuf.go

    // OutBuf is a buffered file writer.
    //
    // It is similar to the Writer in cmd/internal/bio with a few small differences.
    //
    // First, it tracks the output architecture and uses it to provide
    // endian helpers.
    //
    // Second, it provides a very cheap offset counter that doesn't require
    // any system calls to read the value.
    //
    // Third, it also mmaps the output file (if available). The intended usage is:
    //   - Mmap the output file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 8.1K bytes
    - Viewed (0)
Back to top