Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 754 for provider (0.1 sec)

  1. src/go/types/eval.go

    // Eval returns the type and, if constant, the value for the
    // expression expr, evaluated at position pos of package pkg,
    // which must have been derived from type-checking an AST with
    // complete position information relative to the provided file
    // set.
    //
    // The meaning of the parameters fset, pkg, and pos is the
    // same as in [CheckExpr]. An error is returned if expr cannot
    // be parsed successfully, or the resulting expr AST cannot be
    // type-checked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/internal/types/testdata/examples/methods.go

    // actual type argument provided to an instantiated T1.
    func (t T1[A]) m1() A { return t.a }
    
    // For instance, if T1 is instantiated with the type int, the type
    // parameter A in m1 assumes that type (int) as well and we can write
    // code like this:
    var x T1[int]
    var _ int = x.m1()
    
    // Because the type parameter provided to a parameterized receiver type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. src/errors/wrap.go

    //
    // An error is considered to match a target if it is equal to that target or if
    // it implements a method Is(error) bool such that Is(target) returns true.
    //
    // An error type might provide an Is method so it can be treated as equivalent
    // to an existing error. For example, if MyError defines
    //
    //	func (m MyError) Is(target error) bool { return target == fs.ErrExist }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:04 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CryptAcquireContext(provhandle *Handle, container *uint16, provider *uint16, provtype uint32, flags uint32) (err error) {
    	r1, _, e1 := syscall.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: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/route/route.go

    	RIBTypeInterface RIBType = syscall.NET_RT_IFLIST
    )
    
    // FetchRIB fetches a routing information base from the operating
    // system.
    //
    // The provided af must be an address family.
    //
    // The provided arg must be a RIBType-specific argument.
    // When RIBType is related to routes, arg might be a set of route
    // flags. When RIBType is related to network interfaces, arg might be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download.go

    // Telemetry config (golang.org/x/telemetry/config) is distributed as a go
    // module containing go.mod and config.json. Programs that upload collected
    // counters download the latest config using `go mod download`. This provides
    // verification of downloaded configuration and cacheability.
    package configstore
    
    import (
    	"bytes"
    	"encoding/json"
    	"fmt"
    	"os"
    	"os/exec"
    	"path/filepath"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/3-iter.md

    ### Iterators
    
    The new [iter] package provides the basic definitions for working with
    user-defined iterators.
    
    The [slices] package adds several functions that work with iterators:
    - [All](/pkg/slices#All) returns an iterator over slice indexes and values.
    - [Values](/pkg/slices#Values) returns an iterator over slice elements.
    - [Backward](/pkg/slices#Backward) returns an iterator that loops over
      a slice backward.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/doc.go

    // Copyright 2021 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 atomic provides atomic operations, independent of sync/atomic,
    to the runtime.
    
    On most platforms, the compiler is aware of the functions defined
    in this package, and they're replaced with platform-specific intrinsics.
    On other platforms, generic implementations are made available.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 771 bytes
    - Viewed (0)
  9. src/net/http/httptrace/trace.go

    // provided context. If none, it returns nil.
    func ContextClientTrace(ctx context.Context) *ClientTrace {
    	trace, _ := ctx.Value(clientEventContextKey{}).(*ClientTrace)
    	return trace
    }
    
    // WithClientTrace returns a new context based on the provided parent
    // ctx. HTTP client requests made with the returned context will use
    // the provided trace hooks, in addition to any previous hooks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. src/syscall/syscall.go

    func (tv *Timeval) Nano() int64 {
    	return int64(tv.Sec)*1e9 + int64(tv.Usec)*1000
    }
    
    // Getpagesize and Exit are provided by the runtime.
    
    func Getpagesize() int
    func Exit(code int)
    
    // runtimeSetenv and runtimeUnsetenv are provided by the runtime.
    func runtimeSetenv(k, v string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top