Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,240 for reportf (0.23 sec)

  1. src/cmd/gofmt/gofmt.go

    	c := make(chan int, 1)
    	s.Add(0, func(r *reporter) error {
    		c <- r.ExitCode()
    		return nil
    	})
    	return <-c
    }
    
    // A reporter reports output, warnings, and errors.
    type reporter struct {
    	prev  <-chan *reporterState
    	state *reporterState
    }
    
    // reporterState carries the state of a reporter instance.
    //
    // Only one reporter at a time may have access to a reporterState.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. pilot/pkg/status/distribution/state.go

    			continue
    		}
    		var distributionState Progress
    		for reporter, w := range fractions {
    			// check for stale data here
    			if c.clock.Since(c.ObservationTime[reporter]) > c.StaleInterval {
    				scope.Warnf("Status reporter %s has not been heard from since %v, deleting report.",
    					reporter, c.ObservationTime[reporter])
    				staleReporters = append(staleReporters, reporter)
    			} else {
    				distributionState.PlusEquals(w)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTask.java

        /**
         * Limits the report to a single configuration.
         *
         * @return property holding name of the configuration to report
         */
        @Input
        @Optional
        @Option(option = "configuration", description = "The name of the configuration to report")
        public abstract Property<String> getConfigurationName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 12:54:53 UTC 2022
    - 3K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

            file("application/build/reports/jacoco/testCodeCoverageReport/html/index.html").assertExists()
    
            def report = new JacocoReportXmlFixture(file("application/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml"))
            report.assertHasClassCoverage("application.Adder")
            report.assertHasClassCoverage("direct.Multiplier")
            report.assertHasClassCoverage("transitive.Powerize")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/reporting/src/main/java/org/gradle/api/reporting/GenerateBuildDashboard.java

            for (Report report : getEnabledInputReports()) {
                if (getReports().contains(report)) {
                    // A report to be generated, ignore
                    continue;
                }
                File outputLocation = report.getOutputLocation().get().getAsFile();
                inputs.add(new ReportState(report.getDisplayName(), outputLocation, outputLocation.exists()));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:30:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/plugins/ProjectReportsPluginIntegrationSpec.groovy

            buildFile << """
            plugins {
                id 'project-report'
            }
            """
        }
    
        def "produces report files"() {
            when:
            succeeds("projectReport")
    
            then:
            file("build/reports/project/dependencies.txt").assertExists()
            file("build/reports/project/properties.txt").assertExists()
            file("build/reports/project/tasks.txt").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. releasenotes/notes/meshctl-bug-report-context-fix.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    
    # issue is a list of GitHub issues resolved in this note.
    issue:
      - https://github.com/istio/istio/issues/35574
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 12 22:32:54 UTC 2021
    - 289 bytes
    - Viewed (0)
  9. 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)
  10. src/internal/bisect/bisect.go

    	result bool
    }
    
    // MarkerOnly reports whether it is okay to print only the marker for
    // a given change, omitting the identifying information.
    // MarkerOnly returns true when bisect is using the printed reports
    // only for an intermediate search step, not for showing to users.
    func (m *Matcher) MarkerOnly() bool {
    	return !m.verbose
    }
    
    // ShouldEnable reports whether the change with the given id should be enabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top