Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 130 for resultType (0.27 sec)

  1. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

                    void beforeTest(TestDescriptor test) { println "START Test Case [\$test.className] [\$test.name]" }
                    void afterTest(TestDescriptor test, TestResult result) { println "FINISH Test Case [\$test.className] [\$test.name] [\$result.resultType] [\$result.testCount]" }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterSpec.groovy

    import static org.gradle.api.tasks.testing.TestOutputEvent.Destination.StdOut
    import static org.gradle.api.tasks.testing.TestResult.ResultType.FAILURE
    import static org.gradle.api.tasks.testing.TestResult.ResultType.SKIPPED
    import static org.gradle.api.tasks.testing.TestResult.ResultType.SUCCESS
    import static org.hamcrest.CoreMatchers.equalTo
    
    class JUnitXmlResultWriterSpec extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/Snippets.groovy

                        testResultProcessor.started(testDescr, new TestStartEvent(System.currentTimeMillis()))
                        testResultProcessor.completed(testId, new TestCompleteEvent(System.currentTimeMillis(), TestResult.ResultType.SUCCESS))
                        testResultProcessor.completed(rootId, new TestCompleteEvent(System.currentTimeMillis()))
                    }
    
                    @Override
                    void stopNow() {}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/TestCountLogger.java

                    logger.error(TextUtil.getPlatformLineSeparator() + summary());
                }
                progressLogger.completed();
    
                if (result.getResultType() == TestResult.ResultType.FAILURE) {
                    hadFailures = true;
                }
            }
        }
    
        public boolean hadFailures() {
            return hadFailures;
        }
    
        public long getTotalTests() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/TestMainActionTest.groovy

            1 * processor.stop()
            then:
            1 * timeProvider.getCurrentTime() >> 200L
            1 * resultProcessor.completed({ it == "rootTestSuiteId456" }, { event ->
                event.endTime == 200L && event.resultType == null
            })
            0 * _._
        }
    
        def 'fires end events when detector fails'() {
            given:
            def failure = new RuntimeException()
    
            when:
            action.run()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollectorSpec.groovy

    import static org.gradle.api.tasks.testing.TestOutputEvent.Destination.StdOut
    import static org.gradle.api.tasks.testing.TestResult.ResultType.FAILURE
    import static org.gradle.api.tasks.testing.TestResult.ResultType.SUCCESS
    
    class TestReportDataCollectorSpec extends Specification {
        def Map<String, TestClassResult> results = [:]
        def TestOutputStore.Writer writer = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessor.java

                    incompleteChildren.add(entry.getKey());
                }
            }
    
            if (!incompleteChildren.isEmpty()) {
                TestCompleteEvent skippedEvent = new TestCompleteEvent(endTime, TestResult.ResultType.SKIPPED);
                for (Object childTestId : incompleteChildren) {
                    completed(childTestId, skippedEvent);
                }
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.cc

          RankedTensorType::get({shape_rank}, rewriter.getIntegerType(64));
      Type resultType = RankedTensorType::get(shape, element_type);
      auto constant_attr = DenseElementsAttr::get(shape_spec_type, shape);
      auto shape_tensor =
          rewriter.create<TF::ConstOp>(loc, shape_spec_type, constant_attr);
      return rewriter.create<TF::ReshapeOp>(loc, resultType, /*tensor=*/value,
                                            /*shape=*/shape_tensor);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    	type Analyzer struct {
    		Name             string
    		Doc              string
    		Flags            flag.FlagSet
    		Run              func(*Pass) (interface{}, error)
    		RunDespiteErrors bool
    		ResultType       reflect.Type
    		Requires         []*Analyzer
    		FactTypes        []Fact
    	}
    
    The Flags field declares a set of named (global) flag variables that
    control analysis behavior. Unlike vet, analysis flags are not declared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/DefaultTestReport.java

    import org.gradle.reporting.ReportRenderer;
    import org.gradle.util.internal.GFileUtils;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.List;
    
    import static org.gradle.api.tasks.testing.TestResult.ResultType.SKIPPED;
    
    public class DefaultTestReport implements TestReporter {
        private final BuildOperationRunner buildOperationRunner;
        private final BuildOperationExecutor buildOperationExecutor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:58:15 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top