Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for provider (0.13 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    		Report       func(Diagnostic)
    		...
    	}
    
    The Fset, Files, Pkg, and TypesInfo fields provide the syntax trees,
    type information, and source positions for a single package of Go code.
    
    The OtherFiles field provides the names of non-Go
    files such as assembly that are part of this package.
    Similarly, the IgnoredFiles field provides the names of Go and non-Go
    source files that are not part of this package with the current build
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/import.go

    			if !module.IsZeroPseudoVersion(e.replaced.Version) {
    				suggestArg = e.replaced.String()
    			}
    			return fmt.Sprintf("module %s provides package %s and is replaced but not required; to add it:\n\tgo get %s", e.replaced.Path, e.Path, suggestArg)
    		}
    
    		message := fmt.Sprintf("no required module provides package %s", e.Path)
    		if e.QueryErr != nil {
    			return fmt.Sprintf("%s: %v", message, e.QueryErr)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K 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/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)
  5. src/go/types/api.go

    	FakeImportC bool
    
    	// If go115UsesCgo is set, the type checker expects the
    	// _cgo_gotypes.go file generated by running cmd/cgo to be
    	// provided as a package source file. Qualified identifiers
    	// referring to package C will be resolved to cgo-provided
    	// declarations within _cgo_gotypes.go.
    	//
    	// It is an error to set both FakeImportC and go115UsesCgo.
    	go115UsesCgo bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/cmd/trace/gstate.go

    	startCause struct {
    		time     trace.Time
    		name     string
    		resource uint64
    		stack    trace.Stack
    	}
    }
    
    // newGState constructs a new goroutine state for the goroutine
    // identified by the provided ID.
    func newGState[R resource](goID trace.GoID) *gState[R] {
    	return &gState[R]{
    		baseName:     fmt.Sprintf("G%d", goID),
    		executing:    R(noResource),
    		activeRanges: make(map[string]activeRange),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. src/crypto/ed25519/ed25519.go

    	xx, ok := x.(PrivateKey)
    	if !ok {
    		return false
    	}
    	return subtle.ConstantTimeCompare(priv, xx) == 1
    }
    
    // Seed returns the private key seed corresponding to priv. It is provided for
    // interoperability with RFC 8032. RFC 8032's private keys correspond to seeds
    // in this package.
    func (priv PrivateKey) Seed() []byte {
    	return bytes.Clone(priv[:SeedSize])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/encoding/gob/type.go

    	xText              // encoding.TextMarshaler or encoding.TextUnmarshaler
    )
    
    var userTypeCache sync.Map // map[reflect.Type]*userTypeInfo
    
    // validUserType returns, and saves, the information associated with user-provided type rt.
    // If the user type is not valid, err will be non-nil. To be used when the error handler
    // is not set up.
    func validUserType(rt reflect.Type) (*userTypeInfo, error) {
    	if ui, ok := userTypeCache.Load(rt); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api.go

    	IgnoreBranchErrors bool
    
    	// If go115UsesCgo is set, the type checker expects the
    	// _cgo_gotypes.go file generated by running cmd/cgo to be
    	// provided as a package source file. Qualified identifiers
    	// referring to package C will be resolved to cgo-provided
    	// declarations within _cgo_gotypes.go.
    	//
    	// It is an error to set both FakeImportC and go115UsesCgo.
    	go115UsesCgo bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. src/go/token/position.go

    // A File is a handle for a file belonging to a [FileSet].
    // A File has a name, size, and line offset table.
    type File struct {
    	name string // file name as provided to AddFile
    	base int    // Pos value range for this file is [base...base+size]
    	size int    // file size as provided to AddFile
    
    	// lines and infos are protected by mutex
    	mutex sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top