Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,496 for Reports (0.12 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestReportIntegrationTest.groovy

            executedAndNotSkipped(":test")
            new HtmlTestExecutionResult(testDirectory, "build/reports/tr").assertTestClassesExecuted("Thing")
        }
    
        def "results or reports are linked to in error output"() {
            given:
            buildScript """
                $junitSetup
                test {
                    reports.all { it.required = true }
                }
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/BuildDashboardGenerator.java

    public class BuildDashboardGenerator extends ReportRenderer<Collection<Report>, File> {
        private Set<Report> reports;
        private File outputFile;
    
        @Override
        public void render(Collection<Report> reports, final File outputFile) {
            this.reports = new TreeSet<Report>(new Comparator<Report>() {
                @Override
                public int compare(Report o1, Report o2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarc.java

        }
    
        /**
         * Configures the reports to be generated by this task.
         */
        @Override
        public CodeNarcReports reports(Closure closure) {
            return reports(new ClosureBackedAction<CodeNarcReports>(closure));
        }
    
        /**
         * Configures the reports to be generated by this task.
         */
        @Override
        public CodeNarcReports reports(Action<? super CodeNarcReports> configureAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. src/math/bits.go

    // If sign < 0, IsInf reports whether f is negative infinity.
    // If sign == 0, IsInf reports whether f is either infinity.
    func IsInf(f float64, sign int) bool {
    	// Test for infinity by comparing against maximum float.
    	// To avoid the floating-point hardware, could use:
    	//	x := Float64bits(f);
    	//	return sign >= 0 && x == uvinf || sign <= 0 && x == uvneginf;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. src/go/types/predicates.go

    		if dynamic && !isTypeParam(T) || t.typeSet().IsComparable(seen) {
    			return true
    		}
    		if reportf != nil {
    			if t.typeSet().IsEmpty() {
    				reportf("empty type set")
    			} else {
    				reportf("incomparable types in type set")
    			}
    		}
    		// fallthrough
    	}
    	return false
    }
    
    // hasNil reports whether type t includes the nil value.
    func hasNil(t Type) bool {
    	switch u := under(t).(type) {
    	case *Basic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    // files to handle
    type work struct {
    	// absolute file names
    	countfiles []string // count files to process
    	readyfiles []string // old reports to upload
    	// relative names
    	uploaded map[string]bool // reports that have been uploaded
    }
    
    // find all the files that look like counter files or reports
    // that need to be uploaded. (There may be unexpected leftover files
    // and uploading is supposed to be idempotent.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/DefaultJacocoCoverageReport.java

                task.setGroup(LifecycleBasePlugin.VERIFICATION_GROUP);
                task.setDescription("Generates aggregated code coverage report.");
    
                task.reports(reports -> {
                    reports.getXml().getRequired().convention(true);
                    reports.getHtml().getRequired().convention(true);
                });
            });
        }
    
        @Override
        public TaskProvider<JacocoReport> getReportTask() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Checkstyle.java

         * @param closure The configuration
         * @return The reports container
         */
        @Override
        @SuppressWarnings("rawtypes")
        public CheckstyleReports reports(@DelegatesTo(value = CheckstyleReports.class, strategy = Closure.DELEGATE_FIRST) Closure closure) {
            return reports(new ClosureBackedAction<>(closure));
        }
    
        /**
         * Configures the reports to be generated by this task.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:12 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. src/unicode/graphic.go

    	}
    	return In(r, PrintRanges...)
    }
    
    // IsOneOf reports whether the rune is a member of one of the ranges.
    // The function "In" provides a nicer signature and should be used in preference to IsOneOf.
    func IsOneOf(ranges []*RangeTable, r rune) bool {
    	for _, inside := range ranges {
    		if Is(inside, r) {
    			return true
    		}
    	}
    	return false
    }
    
    // In reports whether the rune is a member of one of the ranges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/cryptobyte/string.go

    		return nil
    	}
    	v := (*s)[:n]
    	*s = (*s)[n:]
    	return v
    }
    
    // Skip advances the String by n byte and reports whether it was successful.
    func (s *String) Skip(n int) bool {
    	return s.read(n) != nil
    }
    
    // ReadUint8 decodes an 8-bit value into out and advances over it.
    // It reports whether the read was successful.
    func (s *String) ReadUint8(out *uint8) bool {
    	v := s.read(1)
    	if v == nil {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top