Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for setDistribution (0.26 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationTest.java

        }
    
        protected GradleContextualExecuter createExecuter() {
            return new GradleContextualExecuter(distribution, testDirectoryProvider, getBuildContext());
        }
    
        protected GradleDistribution getDistribution() {
            return distribution;
        }
    
        protected GradleExecuter getExecuter() {
            return executer;
        }
    
        protected TestNameTestDirectoryProvider getTestDirectoryProvider() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:04:13 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/AbstractCompatibilityTestInterceptor.java

        protected Collection<Execution> createExecutionsFor(GradleDistributionTool versionedTool) {
            if (versionedTool.getIgnored() != null) {
                return Collections.singleton(new IgnoredVersion(versionedTool.getDistribution(), versionedTool.getIgnored()));
            } else {
                return createDistributionExecutionsFor(versionedTool);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/BaseGradleRunnerIntegrationTest.groovy

            def probeVersions = ["4.10.3", "5.6.4", "6.9.4", "7.6.4", "8.7"]
            String compatibleVersion = probeVersions.find {version ->
                releasedGradleVersions.getDistribution(version)?.worksWith(Jvm.current())
            }
            LOWEST_MAJOR_GRADLE_VERSION = compatibleVersion
        }
    
        static String findLowestMajorGradleVersion() {
            LOWEST_MAJOR_GRADLE_VERSION
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/ArtifactDescriptorReaderDelegate.java

                properties.put("license." + i + ".url", license.getUrl());
                properties.put("license." + i + ".comments", license.getComments());
                properties.put("license." + i + ".distribution", license.getDistribution());
            }
    
            result.setProperties(properties);
    
            setArtifactProperties(result, model);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            durationMeasurement = null;
            consoleType = null;
            warningMode = WarningMode.All;
            return this;
        }
    
        @Override
        public GradleDistribution getDistribution() {
            return distribution;
        }
    
        @Override
        public TestDirectoryProvider getTestDirectoryProvider() {
            return testDirectoryProvider;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        /**
         * The Gradle user home dir that will be used for executions.
         */
        TestFile getGradleUserHomeDir();
    
        /**
         * The distribution used to execute.
         */
        GradleDistribution getDistribution();
    
        /**
         * Copies the settings from this executer to the given executer.
         *
         * @param executer The executer to copy to
         * @return The passed in executer
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top