Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for provider (0.19 sec)

  1. src/syscall/zsyscall_windows.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CryptAcquireContext(provhandle *Handle, container *uint16, provider *uint16, provtype uint32, flags uint32) (err error) {
    	r1, _, e1 := Syscall6(procCryptAcquireContextW.Addr(), 5, uintptr(unsafe.Pointer(provhandle)), uintptr(unsafe.Pointer(container)), uintptr(unsafe.Pointer(provider)), uintptr(provtype), uintptr(flags), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	// the server side, it's set if Config.ClientAuth is VerifyClientCertIfGiven
    	// (and the peer provided a certificate) or RequireAndVerifyClientCert.
    	//
    	// VerifiedChains and its contents should not be modified.
    	VerifiedChains [][]*x509.Certificate
    
    	// SignedCertificateTimestamps is a list of SCTs provided by the peer
    	// through the TLS handshake for the leaf certificate, if any.
    	SignedCertificateTimestamps [][]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_FORCECOPY           DI_FLAGS = 0x02000000 // Force files to be copied from install path
    	DI_DRIVERPAGE_ADDED    DI_FLAGS = 0x04000000 // Prop provider added Driver page.
    	DI_USECI_SELECTSTRINGS DI_FLAGS = 0x08000000 // Use Class Installer Provided strings in the Select Device Dlg
    	DI_OVERRIDE_INFFLAGS   DI_FLAGS = 0x10000000 // Override INF flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  4. src/syscall/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: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/go/internal/modload/load.go

    //     not provide any directly-imported package are then marked as indirect.
    //
    //   - Root dependencies are updated to their selected versions.
    //
    // The "changed" return value reports whether the update changed the selected
    // version of any module that either provided a loaded package or may now
    // provide a package that was previously unresolved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    	const (
    		resolved modFlags = 1 << iota // version resolved by 'go get'
    		named                         // explicitly named on command line or provides a named package
    		hasPkg                        // needed to build named packages
    		direct                        // provides a direct dependency of the main module
    	)
    	relevantMods := make(map[module.Version]modFlags)
    	for path, reason := range r.resolvedVersion {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    	// Msg contains a human readable string that describes the error.
    	Msg string
    	// RecordHeader contains the five bytes of TLS record header that
    	// triggered the error.
    	RecordHeader [5]byte
    	// Conn provides the underlying net.Conn in the case that a client
    	// sent an initial handshake that didn't look like TLS.
    	// It is nil if there's already been a handshake or a TLS alert has
    	// been written to the connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/testing/testing.go

    // Copyright 2009 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 testing provides support for automated testing of Go packages.
    // It is intended to be used in concert with the "go test" command, which automates
    // execution of any function of the form
    //
    //	func TestXxx(*testing.T)
    //
    // where Xxx does not start with a lowercase letter. The function name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top