Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for TestID (0.13 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

            }
    
            public void onOutput(long classId, long testId, TestOutputEvent outputEvent) {
                boolean stdout = outputEvent.getDestination() == TestOutputEvent.Destination.StdOut;
                mark(classId, testId, stdout);
    
                output.writeBoolean(stdout);
                output.writeSmallLong(classId);
                output.writeSmallLong(testId);
    
                byte[] bytes;
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/results/AttachParentTestResultProcessor.java

        }
    
        @Override
        public void failure(Object testId, TestFailure result) {
            processor.failure(testId, result);
        }
    
        @Override
        public void output(Object testId, TestOutputEvent event) {
            processor.output(testId, event);
        }
    
        @Override
        public void completed(Object testId, TestCompleteEvent event) {
            if (testId.equals(rootId)) {
                rootId = null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. .teamcity/performance-tests-ci.json

        "testId" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.clean checkout",
        "groups" : [ {
          "testProject" : "largeEmptyMultiProjectDeclarativeDsl",
          "coverage" : {
            "per_day" : [ "linux", "macOs", "windows" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.cold daemon",
        "groups" : [ {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestSpec.java

     */
    
    package org.gradle.performance.fixture;
    
    public class PerformanceTestSpec {
        String testId;
        String testClassName;
        Integer runs;
        Integer warmUpRuns;
    
        public String getTestId() {
            return testId;
        }
    
        public void setTestId(String testId) {
            this.testId = testId;
        }
    
        public String getTestClassName() {
            return testClassName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. tests/integration/pilot/mirror_test.go

    			tc.percentage, actualPercent, tc.threshold, testID)
    		log.Infof("%v", err)
    		merr = multierror.Append(merr, err)
    	} else {
    		log.Infof("Got expected mirror traffic. Expected %g%%, got %.1f%% (threshold: %g%%, , testID: %s)",
    			tc.percentage, actualPercent, tc.threshold, testID)
    	}
    
    	return merr.ErrorOrNil()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

        }
    
        public String getTestClass() {
            return testClass;
        }
    
        public void setTestClass(String testClass) {
            this.testClass = testClass;
        }
    
        public String getTestId() {
            return testId;
        }
    
        public void setTestId(String testId) {
            this.testId = testId;
        }
    
        public String getTestProject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

                Object newOwner = parents.remove(testId);
                outputRedirector.setOutputOwner(newOwner);
            }
            processor.completed(testId, event);
        }
    
        @Override
        public void output(Object testId, TestOutputEvent event) {
            processor.output(testId, event);
        }
    
        @Override
        public void failure(Object testId, TestFailure result) {
            processor.failure(testId, result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractBuildExperimentRunner.java

            File workingDirectory = invocationSpec.getWorkingDirectory();
            workingDirectory.mkdirs();
            copyTemplateTo(experiment, workingDirectory);
    
            doRun(testId, experiment, results);
        }
    
        protected abstract void doRun(String testId, BuildExperimentSpec experiment, MeasuredOperationList results);
    
        private static void copyTemplateTo(BuildExperimentSpec experiment, File workingDir) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/accesslogs_test.go

    		clientCount := logCount(t, from, testID)
    		serverCount := logCount(t, to, testID)
    
    		from.CallOrFail(t, echo.CallOptions{
    			To: to,
    			Port: echo.Port{
    				Name: "http",
    			},
    			HTTP: echo.HTTP{
    				Path: "/" + testID,
    			},
    		})
    
    		return retry.UntilSuccess(func() error {
    			clientDeltaCount := logCount(t, from, testID) - clientCount
    			if clientDeltaCount > 0 != exceptClientLog {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestScenarioDefinition.groovy

                this.testId = testId
                this.groups = groups
            }
    
            @Override
            String toString() {
                return "Test($testId)"
            }
    
            @JsonInclude(JsonInclude.Include.NON_NULL)
            @EqualsAndHashCode
            static class GroupsBean {
                /**
                 * testProject : largeJavaMultiProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top