Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for typechecker (0.55 sec)

  1. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/failsBecauseOfInvalidConfigFile/groovycompilerconfig.groovy

    withConfig(configuration) {
        ast(TypeChecked) // invalid config file because of a missing import
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 102 bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/integTest/resources/org/gradle/groovy/compile/IncrementalGroovyCompileIntegrationTest/failsCompilationWhenConfigScriptIsUpdated/groovycompilerconfig.groovy

    import groovy.transform.TypeChecked
    
    withConfig(configuration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 67 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/coverage/cover.go

    	mdax := typecheck.NodAddr(cnames.MetaVar)
    	mdauspx := typecheck.ConvNop(mdax, types.Types[types.TUNSAFEPTR])
    
    	// Materialize expression for length.
    	lenx := ir.NewInt(base.Pos, int64(mdlen)) // untyped
    
    	// Generate a call to runtime.addCovMeta, e.g.
    	//
    	//   pkgIdVar = runtime.addCovMeta(&sym, len, hash, pkgpath, pkid, cmode, cgran)
    	//
    	fn := typecheck.LookupRuntime("addCovMeta")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/universe.go

    	okforeq[types.TMAP] = true    // nil only; refined in typecheck
    	okforeq[types.TFUNC] = true   // nil only; refined in typecheck
    	okforeq[types.TSLICE] = true  // nil only; refined in typecheck
    	okforeq[types.TARRAY] = true  // only if element type is comparable; refined in typecheck
    	okforeq[types.TSTRUCT] = true // only if all struct fields are comparable; refined in typecheck
    
    	types.IsOrdered[types.TSTRING] = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/expr.go

    	et := n.X.Type().Kind()
    
    	if types.IsComplex[et] && n.Op() == ir.ODIV {
    		t := n.Type()
    		call := mkcall("complex128div", types.Types[types.TCOMPLEX128], init, typecheck.Conv(n.X, types.Types[types.TCOMPLEX128]), typecheck.Conv(n.Y, types.Types[types.TCOMPLEX128]))
    		return typecheck.Conv(call, t)
    	}
    
    	// Nothing to do for float divisions.
    	if types.IsFloat[et] {
    		return n
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/abi.go

    	// TODO(mdempsky): Means we can't set sym.Def in Declfunc, ugh.
    	fn := ir.NewFunc(pos, pos, f.Sym(), types.NewSignature(nil,
    		typecheck.NewFuncParams(ft.Params()),
    		typecheck.NewFuncParams(ft.Results())))
    	fn.ABI = wrapperABI
    	typecheck.DeclFunc(fn)
    
    	fn.SetABIWrapper(true)
    	fn.SetDupok(true)
    
    	// ABI0-to-ABIInternal wrappers will be mainly loading params from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/interleaved/interleaved.go

    	"cmd/compile/internal/typecheck"
    	"fmt"
    )
    
    // DevirtualizeAndInlinePackage interleaves devirtualization and inlining on
    // all functions within pkg.
    func DevirtualizeAndInlinePackage(pkg *ir.Package, profile *pgoir.Profile) {
    	if profile != nil && base.Debug.PGODevirtualize > 0 {
    		// TODO(mdempsky): Integrate into DevirtualizeAndInlineFunc below.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	ir.Syms.Deferproc = typecheck.LookupRuntimeFunc("deferproc")
    	ir.Syms.Deferprocat = typecheck.LookupRuntimeFunc("deferprocat")
    	ir.Syms.DeferprocStack = typecheck.LookupRuntimeFunc("deferprocStack")
    	ir.Syms.Deferreturn = typecheck.LookupRuntimeFunc("deferreturn")
    	ir.Syms.Duffcopy = typecheck.LookupRuntimeFunc("duffcopy")
    	ir.Syms.Duffzero = typecheck.LookupRuntimeFunc("duffzero")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. pkg/volume/hostpath/host_path.go

    	return []volume.VolumePlugin{
    		&hostPathPlugin{
    			host:          nil,
    			config:        volumeConfig,
    			noTypeChecker: true,
    		},
    	}
    }
    
    type hostPathPlugin struct {
    	host          volume.VolumeHost
    	config        volume.VolumeConfig
    	noTypeChecker bool
    }
    
    var _ volume.VolumePlugin = &hostPathPlugin{}
    var _ volume.PersistentVolumePlugin = &hostPathPlugin{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/export_test.go

    	return d.f
    }
    
    var testTypes Types
    
    func init() {
    	// TODO(mdempsky): Push into types.InitUniverse or typecheck.InitUniverse.
    	types.PtrSize = 8
    	types.RegSize = 8
    	types.MaxWidth = 1 << 50
    
    	base.Ctxt = &obj.Link{Arch: &obj.LinkArch{Arch: &sys.Arch{Alignment: 1, CanMergeLoads: true}}}
    	typecheck.InitUniverse()
    	testTypes.SetTypPtrs()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top