Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 116 for instantiation (0.18 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

        def pluginRegistry = new DefaultPluginRegistry(pluginInspector, scope(classLoader))
        def target = Mock(PluginTarget)
        def instantiator = TestUtil.instantiatorFactory().inject()
        def pluginManager = new DefaultPluginManager(pluginRegistry, instantiator, target, new TestBuildOperationRunner(), new DefaultUserCodeApplicationContext(), CollectionCallbackActionDecorator.NOOP, TestUtil.domainObjectCollectionFactory())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver.java

    import org.gradle.internal.component.model.ModuleSources;
    import org.gradle.internal.hash.ChecksumService;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.internal.resolve.ArtifactResolveException;
    import org.gradle.internal.resolve.result.BuildableArtifactFileResolveResult;
    import org.gradle.internal.resolve.result.BuildableArtifactSetResolveResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MavenResolver.java

    import org.gradle.internal.component.model.ModuleSources;
    import org.gradle.internal.component.model.MutableModuleSources;
    import org.gradle.internal.hash.ChecksumService;
    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.internal.resolve.result.BuildableArtifactSetResolveResult;
    import org.gradle.internal.resolve.result.BuildableModuleComponentMetaDataResolveResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.internal.operations.logging.BuildOperationLoggerFactory> is not annotated with @ServiceScope in (BuildOperationLoggerFactory.java:0)
    Class <org.gradle.internal.reflect.Instantiator> is not annotated with @ServiceScope in (Instantiator.java:0)
    Class <org.gradle.internal.resource.TextUriResourceLoader$Factory> is not annotated with @ServiceScope in (TextUriResourceLoader.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	//
    	// The receivers of methods on generic types are instantiations. L2 and L3
    	// instantiate S with the type-parameters A and B, which are scoped to the
    	// respective methods. L4 and L5 each instantiate S with int. Each of these
    	// instantiations has its own method set, full of methods (and thus objects)
    	// with receivers whose types are the respective instantiations. In other
    	// words, we have
    	//
    	// S[A].Foo, S[A].Bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependency.java

         * for this failure is abstract, we need to create an anonymous instance of it ourselves here, since there are
         * no instantiator types available here.
         *
         * NOTE: This should all be going away in Gradle 9, so it's okay to remain ugly for a little while.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

                fileLookup = service(),
                propertyFactory = service(),
                filePropertyFactory = service(),
                fileResolver = service(),
                objectFactory = service(),
                instantiator = service(),
                fileSystemOperations = service(),
                taskNodeFactory = service(),
                ordinalGroupFactory = service(),
                inputFingerprinter = service(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/subst.go

    		sig := method.Signature()
    		if sig.recv != nil && sig.recv.Type() == old {
    			if !copied {
    				// Allocate a new methods slice before mutating for the first time.
    				// This is defensive, as we may share methods across instantiations of
    				// a given interface type if they do not get substituted.
    				out = make([]*Func, len(in))
    				copy(out, in)
    				copied = true
    			}
    			newsig := *sig
    			newsig.recv = substVar(sig.recv, new)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/go/types/subst.go

    		sig := method.Signature()
    		if sig.recv != nil && sig.recv.Type() == old {
    			if !copied {
    				// Allocate a new methods slice before mutating for the first time.
    				// This is defensive, as we may share methods across instantiations of
    				// a given interface type if they do not get substituted.
    				out = make([]*Func, len(in))
    				copy(out, in)
    				copied = true
    			}
    			newsig := *sig
    			newsig.recv = substVar(sig.recv, new)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

         * don't actually attempt to run the build per normally.
         *
         * @param loggingServices logging services to use when instantiating any {@link CommandLineActionCreator}s
         * @param actionCreators collection of {@link CommandLineActionCreator}s to which to add a new {@link BuildActionsFactory}
         */
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top