Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 474 for REPORT (0.26 sec)

  1. 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)
  2. src/internal/bisect/bisect.go

    //
    // The target program must enable only those changed matched
    // by the pattern, and it must print a match report for each such change.
    // A match report consists of one or more lines of text that will be
    // printed by the bisect tool to describe a change implicated in causing
    // a failure. Each line in the report for a given change must contain a
    // match marker with that change ID, as returned by [Marker].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

        ignoreMissingClasses = true // because of a missing scala.runtime.AbstractFunction0 class
        richReport({
            it.includedClasses = toPatterns(PublicApi.includes + PublicKotlinDslApi.includes)
            it.excludedClasses = toPatterns(PublicApi.excludes + PublicKotlinDslApi.excludes)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/HtmlReportTemplate.kt

    import java.io.BufferedReader
    import java.net.URL
    
    
    internal
    object HtmlReportTemplate {
    
        const val reportHtmlFileName = "configuration-cache-report.html"
    
        private
        const val modelLine = """<script type="text/javascript" src="configuration-cache-report-data.js"></script>"""
    
        /**
         * Returns the header and footer of the html template as a pair.
         */
        fun load(): Pair<String, String> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstylePlugin.java

            task.getReports().all(action(report -> {
                report.getRequired().convention(!report.getName().equals("sarif"));
                report.getOutputLocation().convention(
                    layout.getProjectDirectory().file(providers.provider(() -> {
                        String reportFileName = baseName + "." + report.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/gateway/gateway.go

    		}
    		return true
    	})
    
    	// Report if we found no pods matching this gateway's selector
    	if gwSelectorMatches == 0 {
    		m := msg.NewReferencedResourceNotFound(r, "selector", gwSelector.String())
    
    		label := util.ExtractLabelFromSelectorString(gwSelector.String())
    		if line, ok := util.ErrorLine(r, fmt.Sprintf(util.GatewaySelector, label)); ok {
    			m.Line = line
    		}
    
    		c.Report(gvk.Gateway, m)
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/injection/injection.go

    			if enableNamespacesByDefault {
    				m := msg.NewNamespaceInjectionEnabledByDefault(r)
    				c.Report(gvk.Namespace, m)
    				return true
    			}
    
    			m := msg.NewNamespaceNotInjected(r, ns, ns)
    
    			if line, ok := util.ErrorLine(r, fmt.Sprintf(util.MetadataName)); ok {
    				m.Line = line
    			}
    
    			c.Report(gvk.Namespace, m)
    			return true
    		}
    
    		if injectionLabel != util.InjectionLabelEnableValue {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/stacks.go

    import (
    	"encoding/json"
    	"html/template"
    	"net/http"
    
    	"github.com/google/pprof/internal/measurement"
    	"github.com/google/pprof/internal/report"
    )
    
    // stackView generates the flamegraph view.
    func (ui *webInterface) stackView(w http.ResponseWriter, req *http.Request) {
    	// Get all data in a report.
    	rpt, errList := ui.makeReport(w, req, []string{"svg"}, func(cfg *config) {
    		cfg.CallTree = true
    		cfg.Trim = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

     * this information will be available in the report.
     * <p>
     * While the regular dependencies report ({@link DependencyReportTask}) shows the path from the top level dependencies down through the transitive dependencies,
     * the dependency insight report shows the path from a particular dependency to the dependencies that pulled it in.
     * That is, it is an inverted view of the regular dependencies report.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conditions.go

    		// Failures to match the Port or SectionName. These are last so that if we bind to 1 listener we
    		// just report errors for that 1 listener instead of for all sections we didn't bind to
    		ParentErrorNotAccepted,
    	}
    	// Next we want to collapse these. We need to report 1 type of error, or none.
    	report := map[k8s.ParentReference]RouteParentResult{}
    	for _, wantReason := range reasonRanking {
    		if !seenReasons.Contains(wantReason) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top