Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 173 for instantiation (0.18 sec)

  1. src/go/types/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: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/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)
    		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: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

    import org.gradle.internal.build.ExecutionResult;
    import org.gradle.internal.event.ListenerManager;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.isolated.IsolationScheme;
    import org.gradle.internal.isolation.IsolatableFactory;
    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.internal.resources.ResourceLock;
    import org.gradle.internal.resources.SharedResource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/named.go

    //  - We say that a Named type is "instantiated" if it has been constructed by
    //    instantiating a generic named type with type arguments.
    //  - We say that a Named type is "declared" if it corresponds to a type
    //    declaration in the source. Instantiated named types correspond to a type
    //    instantiation in the source, not a declaration. But their Origin type is
    //    a declared type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionGlobalServices.java

    import org.gradle.internal.execution.model.annotations.ModifierAnnotationCategory;
    import org.gradle.internal.execution.model.annotations.ServiceReferencePropertyAnnotationHandler;
    import org.gradle.internal.instantiation.InstantiationScheme;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.operations.BuildOperationAncestryTracker;
    import org.gradle.internal.operations.BuildOperationListenerManager;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributesSchema.java

    import org.gradle.internal.component.resolution.failure.describer.ResolutionFailureDescriber;
    import org.gradle.internal.instantiation.InstanceGenerator;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.isolation.IsolatableFactory;
    
    import javax.annotation.Nullable;
    import java.util.ArrayList;
    import java.util.Arrays;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:59:54 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

    import org.gradle.internal.Describables
    import org.gradle.internal.instantiation.PropertyRoleAnnotationHandler
    import org.gradle.util.internal.ConfigureUtil
    import spock.lang.Issue
    
    import java.util.function.BiFunction
    
    import static AsmBackedClassGeneratorTest.Bean
    import static AsmBackedClassGeneratorTest.InterfaceBean
    import static org.gradle.internal.instantiation.generator.AsmBackedClassGeneratorTest.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  8. src/go/types/named.go

    //  - We say that a Named type is "instantiated" if it has been constructed by
    //    instantiating a generic named type with type arguments.
    //  - We say that a Named type is "declared" if it corresponds to a type
    //    declaration in the source. Instantiated named types correspond to a type
    //    instantiation in the source, not a declaration. But their Origin type is
    //    a declared type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementBuildScopeServices.java

            Instantiator instantiator,
            StartParameter startParameter,
            ImmutableAttributesFactory attributesFactory,
            TaskDependencyFactory taskDependencyFactory,
            CapabilityNotationParser capabilityNotationParser,
            ObjectFactory objectFactory
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

    import org.gradle.api.services.ServiceReference
    import org.gradle.internal.Actions
    import org.gradle.internal.Try
    import org.gradle.internal.event.DefaultListenerManager
    import org.gradle.internal.instantiation.InstantiatorFactory
    import org.gradle.internal.resources.SharedResourceLeaseRegistry
    import org.gradle.internal.service.Provides
    import org.gradle.internal.service.ServiceRegistrationProvider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top