Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 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/src/main/java/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessor.java

        }
    
        @Override
        public final void output(Object testId, TestOutputEvent event) {
            delegate.output(findDescriptor(testId), event);
        }
    
        private TestDescriptorInternal findDescriptor(Object testId) {
            TestState state = executing.get(testId);
            if (state != null) {
                return state.test;
            }
    
            if (currentParent != null) {
                return currentParent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/TestClassExecutionEventGenerator.java

        }
    
        @Override
        public void completed(Object testId, TestCompleteEvent event) {
            currentTests.remove(testId);
            resultProcessor.completed(testId, event);
        }
    
        @Override
        public void output(Object testId, TestOutputEvent event) {
            resultProcessor.output(testId, event);
        }
    
        @Override
        public void failure(Object testId, TestFailure result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/BuildableTestResultsProvider.groovy

        @Override
        boolean hasOutput(long classId, long testId, TestOutputEvent.Destination destination) {
            testClasses[classId]?.outputEvents?.find { it.testId == testId && it.testOutputEvent.destination == destination }
        }
    
        static class BuildableOutputEvent {
            long testId
            TestOutputEvent testOutputEvent
    
            BuildableOutputEvent(long testId, TestOutputEvent testOutputEvent) {
                this.testId = testId
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top