Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 107 for testProjects (0.17 sec)

  1. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/plugins/DistributionPluginIntegrationTest.groovy

            then:
            succeeds("publishMavenPublicationToMavenRepository")
            file("repo/org/acme/TestProject/1.0/TestProject-1.0.zip").assertIsFile()
    
            and:
            def pom = new MavenPom(file("repo/org/acme/TestProject/1.0/TestProject-1.0.pom"))
            pom.groupId == "org.acme"
            pom.artifactId == "TestProject"
            pom.version == "1.0"
            pom.packaging == "zip"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/AbstractProjectGeneratorTask.groovy

        }
    
        def generateSubProject(TestProject testProject) {
            generateProject(testProject,
                subprojects: [],
                projectDir: new File(destDir, testProject.name),
                files: [],
                templates: subProjectTemplates,
                includeSource: true)
        }
    
        def generateProject(Map parameterArgs, TestProject testProject) {
            def args = [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceExperiment.java

            return testProject.equals(that.testProject) &&
                scenario.equals(that.scenario);
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(testProject, scenario);
        }
    
        @Override
        public String toString() {
            return "PerformanceExperiment{" +
                "testProject='" + testProject + '\'' +
                ", scenario='" + scenario + '\'' +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/MonolithicNativeProjectGeneratorTask.groovy

        void generateProjectSource(File projectDir, TestProject testProject, Map args) {
            generateProjectSource(projectDir, "h", testProject, args)
            generateProjectSource(projectDir, "c", testProject, args)
            generateProjectSource(projectDir, "cpp", testProject, args)
            projectDir.mkdirs()
        }
    
        void generateProjectSource(File projectDir, String sourceLang, TestProject testProject, Map args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/ProtocolToModelAdapterTest.groovy

        Map<TestProject, TestProject> getChildMap()
    
        TestEnum getTestEnum()
    }
    
    interface TestProject {
        String getName()
    }
    
    interface TestExtendedProject extends TestProject {
    }
    
    interface TestProjectTree extends TestProject {
        TestProjectTree getParent()
        TestProjectTree getChild()
    }
    
    interface TestProtocolModel {
        String getName()
    
        TestProtocolProject getProject()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/JvmProjectGeneratorTask.groovy

        private final Closure createPackageName = { testProject, fileNumber ->
            "org.gradle.test.performance${testProject.subprojectNumber}_${(int) (fileNumber / filesPerPackage) + 1}"
        }
        private final Closure createFileName = { testProject, prefix, fileNumber ->
            "${prefix}${testProject.subprojectNumber}_${fileNumber + 1}"
        }
        private final Closure createExtendsAndImplementsClause = { testProject, prefix, fileNumber -> '' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/TestProjectDuration.groovy

     */
    @CompileStatic
    @JsonInclude(JsonInclude.Include.NON_NULL)
    class TestProjectDuration {
        String testProject
        Long linux
        Long windows
        Long macOs
    
        TestProjectDuration(String testProject, Long linux, Long windows, Long macOs) {
            this.testProject = testProject
            this.linux = linux
            this.windows = windows
            this.macOs = macOs
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AndroidTestProject.groovy

        static AndroidTestProject projectFor(String testProject) {
            def foundProject = findProjectFor(testProject)
            if (!foundProject) {
                throw new IllegalArgumentException("Android project ${testProject} not found")
            }
            return foundProject
        }
    
        @Nullable
        static AndroidTestProject findProjectFor(String testProject) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestScenarioDefinition.groovy

            @JsonInclude(JsonInclude.Include.NON_NULL)
            @EqualsAndHashCode
            static class GroupsBean {
                /**
                 * testProject : largeJavaMultiProject
                 * coverage : {"test":["linux","windows"]}
                 */
                String testProject
    
                String comment
    
                TreeMap<String, List<String>> coverage
            }
        }
    
        void writeTo(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

        }
    
        public void setTestId(String testId) {
            this.testId = testId;
        }
    
        public String getTestProject() {
            return testProject;
        }
    
        public void setTestProject(String testProject) {
            this.testProject = testProject;
        }
    
        public String getTeamCityBuildId() {
            return teamCityBuildId;
        }
    
        public void setTeamCityBuildId(String teamCityBuildId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top