Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for TestID (0.15 sec)

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

        }
    
        CrossVersionPerformanceResults run() {
            assumeShouldRun()
    
            def results = new CrossVersionPerformanceResults(
                testClass: testClassName,
                testId: testId,
                previousTestIds: previousTestIds.collect { it.toString() }, // Convert GString instances
                testProject: testProject,
                tasks: tasksToRun.collect { it.toString() },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenBuildExperimentRunner.java

                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    
        private InvocationSettings createInvocationSettings(String testId, MavenBuildExperimentSpec experimentSpec) {
            return createInvocationSettingsBuilder(testId, experimentSpec)
                .setInvoker(BuildInvoker.Maven)
                .setVersions(ImmutableList.of(experimentSpec.getInvocation().getMavenVersion()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/BinaryResultBackedTestResultsProvider.java

        }
    
        @Override
        public void writeTestOutput(final long classId, final long testId, final TestOutputEvent.Destination destination, final Writer writer) {
            withReader(new Action<TestOutputStore.Reader>() {
                @Override
                public void execute(TestOutputStore.Reader reader) {
                    reader.writeTestOutput(classId, testId, destination, writer);
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossBuildPerformanceTestRunner.groovy

        }
    
        @Override
        CrossBuildPerformanceResults newResult() {
            new CrossBuildPerformanceResults(
                testClass: testClassName,
                testId: testId,
                testProject: testProject,
                testGroup: testGroup,
                jvm: Jvm.current().toString(),
                host: InetAddress.getLocalHost().getHostName(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-plugin-performance/src/performanceTest/groovy/org/gradle/performance/BuildScanPluginPerformanceTest.groovy

        static class SaveScanSpoolFile implements BuildMutator {
            final InvocationSettings invocationSettings
            final String testId
    
            SaveScanSpoolFile(InvocationSettings invocationSettings, String testId) {
                this.invocationSettings = invocationSettings
                this.testId = testId.replaceAll(/[- ]/, '_')
            }
    
            @Override
            void beforeBuild(BuildContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 09:04:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/fixture/BuildScanPerformanceTestRunner.groovy

            this.testGroup = "build scan plugin"
    
        }
    
        @Override
        CrossBuildPerformanceResults newResult() {
            new CrossBuildPerformanceResults(
                testClass: testClassName,
                testId: testId,
                testProject: testProject,
                testGroup: testGroup,
                jvm: Jvm.current().toString(),
                host: InetAddress.getLocalHost().getHostName(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractCrossBuildPerformanceTestRunner.groovy

            PerformanceTestJvmOptions.normalizeJvmOptions(jvmOptions)
        }
    
        abstract R newResult()
    
        R run() {
            assert !specs.empty
            assert testId
    
            Assume.assumeTrue(TestScenarioSelector.shouldRun(testId))
            TestProjects.validateTestProject(testProject)
    
            def results = newResult()
    
            try {
                runAllSpecifications(results)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/Snippets.groovy

                        OperationIdentifier testId = new OperationIdentifier(42L)
                        DefaultTestDescriptor testDescr = new DefaultTestDescriptor(testId, "org.my.MyClass", "MyCustomTest", null, "org.my.MyClass descriptor")
                        testResultProcessor.started(testDescr, new TestStartEvent(System.currentTimeMillis()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNRequestsThenReleaseOne.java

    public class ExpectMaxNRequestsThenReleaseOne extends ExpectMaxNConcurrentRequestsThenRelease {
        public ExpectMaxNRequestsThenReleaseOne(Lock lock, int testId, Duration timeout, int maxConcurrent, WaitPrecondition previous, Collection<? extends ResourceExpectation> expectedRequests, Executor executor) {
            super(lock, testId, timeout, maxConcurrent, previous, expectedRequests, executor);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/prober_test.go

    			if test.expectError && err == nil {
    				t.Errorf("[%s] Expected probe error but no error was returned.", testID)
    			}
    			if !test.expectError && err != nil {
    				t.Errorf("[%s] Didn't expect probe error but got: %v", testID, err)
    			}
    			if test.expectedResult != result {
    				t.Errorf("[%s] Expected result to be %v but was %v", testID, test.expectedResult, result)
    			}
    
    			if len(test.expectCommand) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:35 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top