Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getInvocation (0.64 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenBuildExperimentRunner.java

            return createInvocationSettingsBuilder(testId, experimentSpec)
                .setInvoker(BuildInvoker.Maven)
                .setVersions(ImmutableList.of(experimentSpec.getInvocation().getMavenVersion()))
                .setTargets(experimentSpec.getInvocation().getTasksToRun())
                .setMeasuredBuildOperations(emptyList())
                .build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractBuildExperimentRunner.java

            System.out.println();
            System.out.printf("%s ...%n", experiment.getDisplayName());
            System.out.println();
    
            InvocationSpec invocationSpec = experiment.getInvocation();
            File workingDirectory = invocationSpec.getWorkingDirectory();
            workingDirectory.mkdirs();
            copyTemplateTo(experiment, workingDirectory);
    
            doRun(testId, experiment, results);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/BuildExperimentSpec.groovy

            this.invocationCount = invocationCount
            this.buildMutators = ImmutableList.copyOf(buildMutators)
        }
    
        abstract BuildDisplayInfo getDisplayInfo()
    
        abstract InvocationSpec getInvocation()
    
        interface Builder {
            String getDisplayName()
    
            String getProjectName()
    
            void setProjectName(String projectName)
    
            File getWorkingDirectory()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

            }
        }
    
        @Override
        public void doRun(String testId, BuildExperimentSpec experiment, MeasuredOperationList results) {
            InvocationSpec invocationSpec = experiment.getInvocation();
            File workingDirectory = invocationSpec.getWorkingDirectory();
    
            if (!(invocationSpec instanceof GradleInvocationSpec)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentSpec.groovy

            this.measuredBuildOperations = measuredBuildOperations
            this.measureGarbageCollection = measureGarbageCollection
            this.invocation = invocation
        }
    
        @Override
        GradleInvocationSpec getInvocation() {
            invocation
        }
    
        static GradleBuilder builder() {
            new GradleBuilder()
        }
    
        @Override
        BuildDisplayInfo getDisplayInfo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top