Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 187 for instantiation (0.26 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

        @Provides
        protected ProcessOutputProviderFactory createProcessOutputProviderFactory(Instantiator instantiator, ExecSpecFactory execSpecFactory) {
            return new ProcessOutputProviderFactory(instantiator, execSpecFactory);
        }
    
        @Provides
        protected ProviderFactory createProviderFactory(
            Instantiator instantiator,
            ValueSourceProviderFactory valueSourceProviderFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/plugins/MavenPublishPlugin.java

            private final Instantiator instantiator;
            private final DependencyMetaDataProvider dependencyMetaDataProvider;
            private final FileResolver fileResolver;
    
            private MavenPublicationFactory(DependencyMetaDataProvider dependencyMetaDataProvider,
                                            Instantiator instantiator,
                                            FileResolver fileResolver) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  3. src/go/types/infer.go

    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    // infer attempts to infer the complete set of type arguments for generic function instantiation/call
    // based on the given type parameters tparams, type arguments targs, function parameters params, and
    // function arguments args, if any. There must be at least one type parameter, no more type arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/caching/internal/services/AbstractBuildCacheControllerFactory.java

            InstanceGenerator instantiator
        ) {
            Class<? extends BuildCacheServiceFactory<C>> castFactoryType = Cast.uncheckedNonnullCast(
                buildCacheConfiguration.getBuildCacheServiceFactoryType(configuration.getClass())
            );
    
            BuildCacheServiceFactory<C> factory = instantiator.newInstance(castFactoryType);
            Describer describer = new Describer();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // can instantiate it more then once) the first argument to the
    // INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the
    // actual test case name. Remember to pick unique prefixes for different
    // instantiations. The tests from the instantiation above will have
    // these names:
    //
    //    * InstantiationName/FooTest.DoesBlah/0 for "meeny"
    //    * InstantiationName/FooTest.DoesBlah/1 for "miny"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. src/go/types/typexpr.go

    func (check *Checker) definedType(e ast.Expr, def *TypeName) Type {
    	typ := check.typInternal(e, def)
    	assert(isTyped(typ))
    	if isGeneric(typ) {
    		check.errorf(e, WrongTypeArgCount, "cannot use generic type %s without instantiation", typ)
    		typ = Typ[Invalid]
    	}
    	check.recordTypeAndValue(e, typexpr, typ, nil)
    	return typ
    }
    
    // genericType is like typ but the type must be an (uninstantiated) generic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // can instantiate it more then once) the first argument to the
    // INSTANTIATE_TEST_CASE_P macro is a prefix that will be added to the
    // actual test case name. Remember to pick unique prefixes for different
    // instantiations. The tests from the instantiation above will have
    // these names:
    //
    //    * InstantiationName/FooTest.DoesBlah/0 for "meeny"
    //    * InstantiationName/FooTest.DoesBlah/1 for "miny"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            def scriptResolution = Stub(ProjectScopedScriptResolution) {
                resolveScriptsForProject(_, _) >> { p, a -> a.get() }
            }
    
            def instantiator = TestUtil.instantiatorFactory().decorateLenient(serviceRegistry)
            def factory = new ProjectFactory(instantiator, new DefaultTextFileResourceLoader(null), scriptResolution)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typexpr.go

    func (check *Checker) definedType(e syntax.Expr, def *TypeName) Type {
    	typ := check.typInternal(e, def)
    	assert(isTyped(typ))
    	if isGeneric(typ) {
    		check.errorf(e, WrongTypeArgCount, "cannot use generic type %s without instantiation", typ)
    		typ = Typ[Invalid]
    	}
    	check.recordTypeAndValue(e, typexpr, typ, nil)
    	return typ
    }
    
    // genericType is like typ but the type must be an (uninstantiated) generic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParametersIntegrationTest.groovy

                    String getValue();
                    void setValue(String value);
                }
            """
    
            buildFile << """
                import org.gradle.internal.instantiation.InstantiatorFactory
    
                ext.testObject = getServices().get(InstantiatorFactory.class).inject().newInstance(SomeExtension)
                ext.testObject.value = "bar"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top