Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for wrapperExecuter (0.43 sec)

  1. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            when:
            wrapperExecuter.withStackTraceChecksDisabled()
            def failure = wrapperExecuter.runWithFailure()
    
            then:
            failure.error.contains('Server returned HTTP response code: 500')
    
            when:
            server.expect(server.get("/$TEST_DISTRIBUTION_URL").sendFile(distribution.binDistribution))
    
            and:
            wrapperExecuter.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/api/tasks/wrapper/WrapperTest.groovy

            properties.getProperty(WrapperExecutor.DISTRIBUTION_URL_PROPERTY) == wrapper.getDistributionUrl()
            properties.getProperty(WrapperExecutor.DISTRIBUTION_SHA_256_SUM) == wrapper.getDistributionSha256Sum()
            properties.getProperty(WrapperExecutor.DISTRIBUTION_BASE_PROPERTY) == wrapper.getDistributionBase().toString()
            properties.getProperty(WrapperExecutor.DISTRIBUTION_PATH_PROPERTY) == wrapper.getDistributionPath()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionFactory.java

         */
        public Distribution getDefaultDistribution(File projectDir, boolean searchUpwards) {
            BuildLayout layout = new BuildLayoutFactory().getLayoutFor(projectDir, searchUpwards);
            WrapperExecutor wrapper = WrapperExecutor.forProjectDirectory(layout.getRootDirectory());
            if (wrapper.getDistribution() != null) {
                return new ZippedDistribution(wrapper.getConfiguration(), clock);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

    import org.gradle.util.internal.WrapperDistributionUrlConverter;
    import org.gradle.work.DisableCachingByDefault;
    import org.gradle.wrapper.Download;
    import org.gradle.wrapper.Logger;
    import org.gradle.wrapper.WrapperExecutor;
    
    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import java.io.File;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top