Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for UNTAGGED (0.14 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Tag.java

    import java.math.BigDecimal;
    
    import static org.gradle.performance.results.report.Tag.FixedTag.UNTAGGED;
    
    public interface Tag {
        String getName();
    
        String getClassAttr();
    
        String getTitle();
    
        String getUrl();
    
        default boolean isValid() {
            return this != UNTAGGED;
        }
    
        enum FixedTag implements Tag {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/IndexPageGenerator.java

    import static org.gradle.performance.results.report.Tag.FixedTag.REGRESSED;
    import static org.gradle.performance.results.report.Tag.FixedTag.UNKNOWN;
    import static org.gradle.performance.results.report.Tag.FixedTag.UNTAGGED;
    
    public class IndexPageGenerator extends AbstractTablePageGenerator {
        public IndexPageGenerator(PerformanceFlakinessDataProvider flakinessDataProvider, PerformanceExecutionDataProvider executionDataProvider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

            var currentTags = $(row).attr('tag');
            if (currentTags === undefined) {
                currentTags = ''
            }
            // tag="FAILURE-THRESHOLD(4.16%),FLAKY(9.30%)"
            // tag="UNTAGGED"
            currentTags = currentTags.split(',').map(tag => tag.split('(')[0])
            if (selectedTags.some(tag => currentTags.indexOf(tag) != -1)) {
                $(row).show()
            } else {
                $(row).hide()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top