Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,415 for Reports (0.16 sec)

  1. operator/pkg/util/reflect.go

    		return reflect.Invalid
    	}
    	return reflect.TypeOf(value).Kind()
    }
    
    // IsString reports whether value is a string type.
    func IsString(value any) bool {
    	return kindOf(value) == reflect.String
    }
    
    // IsPtr reports whether value is a ptr type.
    func IsPtr(value any) bool {
    	return kindOf(value) == reflect.Ptr
    }
    
    // IsMap reports whether value is a map type.
    func IsMap(value any) bool {
    	return kindOf(value) == reflect.Map
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-tooling-builders/src/test/kotlin/org/gradle/kotlin/dsl/tooling/builders/EditorReportsBuilderTest.kt

            val reports = buildEditorReportsFor(
                script,
                listOf(LocationAwareException(Exception("BOOM"), script.canonicalPath, 3)),
                true
            )
    
            assertThat(reports.size, equalTo(1))
            reports.single().let { report ->
                assertThat(report.severity, equalTo(EditorReportSeverity.WARNING))
                assertThat(report.position, notNullValue())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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