Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 187 for instantiation (0.5 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratedManagedStateTest.groovy

    import static org.gradle.internal.instantiation.generator.AsmBackedClassGeneratorTest.Bean
    import static org.gradle.internal.instantiation.generator.AsmBackedClassGeneratorTest.BeanWithAbstractProperty
    import static org.gradle.internal.instantiation.generator.AsmBackedClassGeneratorTest.BrokenConstructor
    import static org.gradle.internal.instantiation.generator.AsmBackedClassGeneratorTest.InterfaceBean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GlobalScopeServices.java

    import org.gradle.internal.installation.GradleRuntimeShadedJarDetector;
    import org.gradle.internal.instantiation.InjectAnnotationHandler;
    import org.gradle.internal.instantiation.InstanceGenerator;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.instantiation.generator.DefaultInstantiatorFactory;
    import org.gradle.internal.instrumentation.agent.AgentInitializer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/call.go

    		}
    	}).describef(pos, "verify instantiation")
    
    	return inst
    }
    
    func (check *Checker) callExpr(x *operand, call *syntax.CallExpr) exprKind {
    	var inst *syntax.IndexExpr // function instantiation, if any
    	if iexpr, _ := call.Fun.(*syntax.IndexExpr); iexpr != nil {
    		if check.indexExpr(x, iexpr) {
    			// Delay function instantiation to argument checking,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorInjectDecoratedTest.groovy

     */
    
    package org.gradle.internal.instantiation.generator
    
    import org.gradle.api.plugins.ExtensionAware
    import org.gradle.api.plugins.ExtensionContainer
    import org.gradle.cache.internal.TestCrossBuildInMemoryCacheFactory
    import org.gradle.internal.instantiation.ClassGenerationException
    import org.gradle.internal.instantiation.InjectAnnotationHandler
    import org.gradle.internal.instantiation.InstantiatorFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/internal/PluginUseServices.java

    import org.gradle.internal.build.BuildIncluder;
    import org.gradle.internal.event.ListenerManager;
    import org.gradle.internal.instantiation.InstantiationScheme;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.properties.annotations.MissingPropertyAnnotationHandler;
    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestUtil.groovy

    import org.gradle.internal.hash.ChecksumService
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.instantiation.InjectAnnotationHandler
    import org.gradle.internal.instantiation.InstantiatorFactory
    import org.gradle.internal.instantiation.generator.DefaultInstantiatorFactory
    import org.gradle.internal.model.CalculatedValueContainerFactory
    import org.gradle.internal.model.StateTransitionControllerFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. src/go/types/call.go

    		}
    	}).describef(atPos(pos), "verify instantiation")
    
    	return inst
    }
    
    func (check *Checker) callExpr(x *operand, call *ast.CallExpr) exprKind {
    	ix := typeparams.UnpackIndexExpr(call.Fun)
    	if ix != nil {
    		if check.indexExpr(x, ix) {
    			// Delay function instantiation to argument checking,
    			// where we combine type and value arguments for type
    			// inference.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultValueSourceProviderFactory.java

    import org.gradle.internal.Try;
    import org.gradle.internal.event.AnonymousListenerBroadcast;
    import org.gradle.internal.event.ListenerManager;
    import org.gradle.internal.instantiation.InstanceGenerator;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.isolated.IsolationScheme;
    import org.gradle.internal.isolation.IsolatableFactory;
    import org.gradle.internal.logging.text.TreeFormatter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/go/types/index.go

    		return false
    
    	case typexpr:
    		// type instantiation
    		x.mode = invalid
    		// TODO(gri) here we re-evaluate e.X - try to avoid this
    		x.typ = check.varType(e.Orig)
    		if isValid(x.typ) {
    			x.mode = typexpr
    		}
    		return false
    
    	case value:
    		if sig, _ := under(x.typ).(*Signature); sig != nil && sig.TypeParams().Len() > 0 {
    			// function instantiation
    			return true
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/validtype.go

    				// occur within the definition (RHS) of the generic type t.Origin(),
    				// directly or indirectly, after expansion of the RHS.
    				// Therefore t.Origin() must be invalid, no matter how it is
    				// instantiated since the instantiation t of t.Origin() happens
    				// inside t.Origin()'s RHS and thus is always the same and always
    				// present.
    				// Therefore we can mark the underlying of both t and t.Origin()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top