Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 594 for instantiation (0.32 sec)

  1. src/internal/types/testdata/fixedbugs/issue47818.go

    	var _ T[ /* ERROR "type instantiation requires go1.18 or later" */ int]
    	var _ (T[ /* ERROR "type instantiation requires go1.18 or later" */ int])
    	_ = T[ /* ERROR "type instantiation requires go1.18 or later" */ int]{}
    	_ = T[ /* ERROR "type instantiation requires go1.18 or later" */ int](struct{}{})
    }
    
    func (T[ /* ERROR "type instantiation requires go1.18 or later" */ P]) g(x int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/DefaultInstantiatorFactory.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.api.reflect.ObjectInstantiationException;
    import org.gradle.cache.internal.CrossBuildInMemoryCacheFactory;
    import org.gradle.internal.instantiation.DeserializationInstantiator;
    import org.gradle.internal.instantiation.InjectAnnotationHandler;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/MixInExtensibleDynamicObject.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator;
    
    import org.gradle.internal.extensibility.ExtensibleDynamicObject;
    import org.gradle.internal.instantiation.InstanceGenerator;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.metaobject.AbstractDynamicObject;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/DefaultInstantiationScheme.java

     */
    
    package org.gradle.internal.instantiation.generator;
    
    import org.gradle.api.reflect.ObjectInstantiationException;
    import org.gradle.cache.internal.CrossBuildInMemoryCache;
    import org.gradle.cache.internal.CrossBuildInMemoryCacheFactory;
    import org.gradle.internal.instantiation.DeserializationInstantiator;
    import org.gradle.internal.instantiation.InstanceFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    	// subset of the type set of the corresponding type parameter of T, meaning
    	// that every instantiation of V corresponds to a valid instantiation of T.
    
    	// Minor optimization: ensure we share a context across the two
    	// instantiations below.
    	if ctxt == nil {
    		ctxt = types.NewContext()
    	}
    
    	var targs []types.Type
    	for i := 0; i < vtparams.Len(); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue67683.go

    type B[P any] = func()
    type C[P any] = B[P]
    
    var _ = A /* ERROR "cannot use generic type A without instantiation" */ (nil)
    
    // generic alias signature types must be instantiated before use
    var _ = B /* ERROR "cannot use generic type B without instantiation" */ (nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 613 bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue40684.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type T[_ any] int
    
    func f[_ any]() {}
    func g[_, _ any]() {}
    
    func _() {
    	_ = f[T /* ERROR "without instantiation" */ ]
    	_ = g[T /* ERROR "without instantiation" */ , T /* ERROR "without instantiation" */ ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 379 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DependencyInjectionUsingClassGeneratorBackedInstantiatorTest.groovy

     * limitations under the License.
     */
    package org.gradle.internal.instantiation.generator
    
    import org.gradle.cache.internal.CrossBuildInMemoryCache
    import org.gradle.cache.internal.TestCrossBuildInMemoryCacheFactory
    import org.gradle.internal.instantiation.InstantiatorFactory
    import org.gradle.internal.instantiation.PropertyRoleAnnotationHandler
    import org.gradle.internal.service.DefaultServiceRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DefaultInstantiatorFactoryTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator
    
    import org.gradle.cache.internal.TestCrossBuildInMemoryCacheFactory
    import org.gradle.internal.instantiation.InjectAnnotationHandler
    import org.gradle.internal.instantiation.PropertyRoleAnnotationHandler
    import spock.lang.Specification
    
    import javax.inject.Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top