Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 552 for nerede (0.39 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/callee.go

    	fun := astutil.Unparen(call.Fun)
    
    	// Look through type instantiation if necessary.
    	isInstance := false
    	switch fun.(type) {
    	case *ast.IndexExpr, *ast.IndexListExpr:
    		// When extracting the callee from an *IndexExpr, we need to check that
    		// it is a *types.Func and not a *types.Var.
    		// Example: Don't match a slice m within the expression `m[0]()`.
    		isInstance = true
    		fun, _, _, _ = typeparams.UnpackIndexExpr(fun)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    // function literal that calls _cgoCheckPointer for each pointer
    // argument and then calls the original function.
    // This returns the rewritten call and whether the package needs to
    // import unsafe as _cgo_unsafe.
    // If it returns the empty string, the call did not need to be rewritten.
    func (p *Package) rewriteCall(f *File, call *Call) (string, bool) {
    	// This is a call to C.xxx; set goname to "xxx".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/predicates.go

    // constant or boolean.
    // Safe to call from types that are not fully set up.
    func isTyped(t Type) bool {
    	// Alias and named types cannot denote untyped types
    	// so there's no need to call Unalias or under, below.
    	b, _ := t.(*Basic)
    	return b == nil || b.info&IsUntyped == 0
    }
    
    // isUntyped(t) is the same as !isTyped(t).
    // Safe to call from types that are not fully set up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. src/crypto/ecdh/ecdh.go

    // PublicKey is an ECDH public key, usually a peer's ECDH share sent over the wire.
    //
    // These keys can be parsed with [crypto/x509.ParsePKIXPublicKey] and encoded
    // with [crypto/x509.MarshalPKIXPublicKey]. For NIST curves, they then need to
    // be converted with [crypto/ecdsa.PublicKey.ECDH] after parsing.
    type PublicKey struct {
    	curve     Curve
    	publicKey []byte
    	boring    *boring.PublicKeyECDH
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //
    // With no arguments, download applies to the modules needed to build and test
    // the packages in the main module: the modules explicitly required by the main
    // module if it is at 'go 1.17' or higher, or all transitively-required modules
    // if at 'go 1.16' or lower.
    //
    // The go command will automatically download modules as needed during ordinary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/named.go

    	// on defined interface types to be the Named rather than the
    	// underlying Interface), maybe it should just handle calling
    	// SetTypeParams, SetUnderlying, and AddMethod instead?  Those
    	// methods would need to support reentrant calls though. It would
    	// also make the API more future-proof towards further extensions.
    	if n.loader != nil {
    		assert(n.underlying == nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // It is a pseudo handle that does not need to be closed.
    // The returned error is always nil.
    //
    // Deprecated: use CurrentProcess for the same Handle without the nil
    // error.
    func GetCurrentProcess() (Handle, error) {
    	return CurrentProcess(), nil
    }
    
    // CurrentProcess returns the handle for the current process.
    // It is a pseudo handle that does not need to be closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/obj7.go

    				//	MOV  panic_argp(RT1), RT2
    				//	ADD  $(autosize+8), RSP, R20
    				//	CMP  RT2, R20
    				//	BNE  end
    				//	ADD  $8, RSP, R20
    				//	MOVD R20, panic_argp(RT1)
    				//	B    end
    				//
    				// The NOP is needed to give the jumps somewhere to land.
    				// It is a liblink NOP, not an ARM64 NOP: it encodes to 0 instruction bytes.
    				q = q1
    
    				// MOV g_panic(g), RT1
    				q = obj.Appendp(q, c.newprog)
    				q.As = AMOVD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat.go

    	}
    	return
    }
    
    // Modulus is used for modular arithmetic, precomputing relevant constants.
    //
    // Moduli are assumed to be odd numbers. Moduli can also leak the exact
    // number of bits needed to store their value, and are stored without padding.
    //
    // Their actual value is still kept secret.
    type Modulus struct {
    	// The underlying natural number for this modulus.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/validate.go

    // that the Doc is not empty;
    // that the Run is non-nil;
    // that the Requires graph is acyclic;
    // that analyzer fact types are unique;
    // that each fact type is a pointer.
    //
    // Analyzer names need not be unique, though this may be confusing.
    func Validate(analyzers []*Analyzer) error {
    	// Map each fact type to its sole generating analyzer.
    	factTypes := make(map[reflect.Type]*Analyzer)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top