Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 860 for REPORT (0.23 sec)

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

            new MetricsHtml(writer) {{
                html();
                    head();
                        headSection(this);
                        title().text("Flaky report for "+ history.getDisplayName()).end();
                    end();
                    body();
                        h2().text("Flaky report for " + history.getDisplayName()).end();
                        getGraphs(history).forEach(graph -> graph.render(this));
                    end();
                end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginMultiVersionIntegrationTest.groovy

        }
    
        def "jacoco test report is skipped if no coverage data available"() {
            when:
            def executionResult = succeeds('jacocoTestReport')
            then:
            executionResult.assertTaskSkipped(':jacocoTestReport')
        }
    
        def "can use coverage data from previous run for coverage report"() {
            when:
            succeeds('jacocoTestReport')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/cmd/fix/main.go

    		if err := processFile("standard input", true); err != nil {
    			report(err)
    		}
    		os.Exit(exitCode)
    	}
    
    	for i := 0; i < flag.NArg(); i++ {
    		path := flag.Arg(i)
    		switch dir, err := os.Stat(path); {
    		case err != nil:
    			report(err)
    		case dir.IsDir():
    			walkDir(path)
    		default:
    			if err := processFile(path, false); err != nil {
    				report(err)
    			}
    		}
    	}
    
    	os.Exit(exitCode)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. pilot/pkg/status/distribution/reporter.go

    						scope.Errorf("failed to properly clean up distribution report: %v", err)
    					}
    				}
    				close(r.distributionEventQueue)
    				return
    			case <-t:
    				// TODO, check if report is necessary?  May already be handled by client
    				r.writeReport(ctx)
    			}
    		}
    	}()
    }
    
    // build a distribution report to send to status leader
    func (r *Reporter) buildReport() (Report, []status.Resource) {
    	r.mu.RLock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarcPlugin.java

            task.getReports().all(action(report -> {
                report.getRequired().convention(providers.provider(() -> report.getName().equals(reportFormat.get())));
                report.getOutputLocation().convention(layout.getProjectDirectory().file(providers.provider(() -> {
                    String fileSuffix = report.getName().equals("text") ? "txt" : report.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:49:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                }
    
                else -> null
            }
        }
    
        /**
         * Writes the report to the given [reportDir] if any [diagnostics][DiagnosticKind] have
         * been reported in which case a warning is also logged with the location of the report.
         */
        override fun report(reportDir: File, validationFailures: ProblemConsumer) {
            val summary = summarizer.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/InspectsConfigurationReport.groovy

        }
    
        void promptsForRerunToFindMoreConfigurations() {
            outputContains("Re-run this report with the '--all' flag to include legacy configurations (legacy = consumable and resolvable).")
        }
    
        void promptsForRerunToFindMoreVariants() {
            outputContains("Re-run this report with the '--all' flag to include legacy variants (legacy = consumable and resolvable).")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. api/pom.xml

                    </tag>
                  </tags>
                </configuration>
                <reportSets>
                  <reportSet>
                    <id>aggregate</id>
                    <reports>
                      <report>aggregate</report>
                    </reports>
                    <inherited>false</inherited>
                  </reportSet>
                </reportSets>
              </plugin>
              <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. operator/pkg/util/progress/progress.go

    	p.mu.Unlock()
    	p.report()
    }
    
    func (p *ManifestLog) ReportFinished() {
    	if p == nil {
    		return
    	}
    	p.mu.Lock()
    	p.finished = true
    	p.mu.Unlock()
    	p.report()
    }
    
    func (p *ManifestLog) ReportWaiting(resources []string) {
    	if p == nil {
    		return
    	}
    	p.mu.Lock()
    	p.waiting = resources
    	p.mu.Unlock()
    	p.report()
    }
    
    func (p *ManifestLog) waitingResources() []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. subprojects/diagnostics/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains project diagnostics or report tasks, e.g. help, project report, dependency report and similar"
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 1 occurrences
            "InlineMeInliner", // 1 occurrences
            "MixedMutabilityReturnType", // 1 occurrences
            "NonApiType", // 5 occurrences
            "ProtectedMembersInFinalClass", // 1 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top