Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for setDistribution (0.39 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomLicense.java

        public Property<String> getName() {
            return name;
        }
    
        @Override
        public Property<String> getUrl() {
            return url;
        }
    
        @Override
        public Property<String> getDistribution() {
            return distribution;
        }
    
        @Override
        public Property<String> getComments() {
            return comments;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/GradleDistributionTool.java

        }
    
        @Override
        public boolean matches(String criteria) {
            return GradleVersion.version(criteria).equals(distribution.getVersion());
        }
    
        public GradleDistribution getDistribution() {
            return distribution;
        }
    
        public String getIgnored() {
            return ignored;
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleBackedArtifactBuilder.java

            }
            executer.inDirectory(rootDir).withTasks("clean", "jar").run();
        }
    
        private boolean isGradleExecuterVersionLessThan(String version) {
            return executer.getDistribution().getVersion().compareTo(GradleVersion.version(version)) < 0;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiUnsupportedVersionIntegrationTest.groovy

        final ToolingApi toolingApi = new ToolingApi(distribution, temporaryFolder)
        final GradleDistribution otherVersion = new ReleasedVersionDistributions().getDistribution(GradleVersion.version("0.9.2"))
        final URI distroZip = otherVersion.binDistribution.toURI()
    
        def setup() {
            toolingApi.withConnector { connector -> connector.useDistribution(distroZip) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/CrossVersionTestInterceptor.groovy

        }
    
        @Override
        protected Collection<Execution> createDistributionExecutionsFor(GradleDistributionTool versionedTool) {
            GradleDistribution distribution = versionedTool.getDistribution()
            return [new PreviousVersionExecution(distribution, isEnabled(distribution))]
        }
    
        protected boolean isEnabled(GradleDistribution previousVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/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 Mar 01 17:18:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. 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)
Back to top