Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DependencyManagementBuildScopeServices (0.98 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementBuildScopeServices.java

    import static org.gradle.internal.execution.steps.AfterExecutionOutputFilter.NO_FILTER;
    
    /**
     * The set of dependency management services that are created per build in the tree.
     */
    class DependencyManagementBuildScopeServices implements ServiceRegistrationProvider {
        void configure(ServiceRegistration registration) {
            registration.add(TransformStepNodeDependencyResolver.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyServices.java

        }
    
        @Override
        public void registerBuildServices(ServiceRegistration registration) {
            registration.addProvider(new DependencyManagementBuildScopeServices());
        }
    
        @Override
        public void registerProjectServices(ServiceRegistration registration) {
            registration.addProvider(new DependencyManagementProjectScopeServices());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DependencyManagementBuildScopeServicesTest.groovy

    import org.gradle.internal.service.DefaultServiceRegistry
    import spock.lang.Specification
    
    class DependencyManagementBuildScopeServicesTest extends Specification {
        def services = DefaultServiceRegistry.create(new DependencyManagementBuildScopeServices())
    
        def "provides a DependencyManagementServices"() {
            expect:
            services.get(DependencyManagementServices) instanceof DefaultDependencyManagementServices
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CrossVersionRetryTest.groovy

            given:
            iteration++
    
            when:
            throwWhen(new ServiceCreationException("Could not create service of type ArtifactCacheLockingAccessCoordinator using DependencyManagementBuildScopeServices.createArtifactCacheLockingManager().",
                new UncheckedIOException("Unable to create directory 'metadata-2.1'")), iteration == 1)
    
            then:
            true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

            // TODO This is a workaround for script compilation that is triggered via the "early" execution
            //      engine created in DependencyManagementBuildScopeServices. We should unify the execution
            //      engines instead.
            ExecutionEngine effectiveEngine;
            if (producerProject == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top