Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 361 for REPORT (0.14 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemReporter.java

         * The created problem can be later reported with {@link #report(Problem)}.
         *
         * @param action The problem configuration.
         * @return The new problem.
         */
        Problem create(Action<InternalProblemSpec> action);
    
        /**
         * Reports the target problem.
         *
         * @param problem The problem to report.
         */
        void report(Problem problem);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/types_alias.go

    type UploadConfig = telemetry.UploadConfig
    
    type ProgramConfig = telemetry.ProgramConfig
    
    type CounterConfig = telemetry.CounterConfig
    
    // A Report is what's uploaded (or saved locally)
    type Report = telemetry.Report
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 605 bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/IndexPageGenerator.java

    import static org.gradle.performance.results.report.Tag.FixedTag.FAILED;
    import static org.gradle.performance.results.report.Tag.FixedTag.FROM_CACHE;
    import static org.gradle.performance.results.report.Tag.FixedTag.IMPROVED;
    import static org.gradle.performance.results.report.Tag.FixedTag.NEARLY_FAILED;
    import static org.gradle.performance.results.report.Tag.FixedTag.REGRESSED;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

    /**
     * Generates an HTML dependency report. This report
     * combines the features of the ASCII dependency report and those of the ASCII
     * dependency insight report. For a given project, it generates a tree of the dependencies
     * of every configuration, and each dependency can be clicked to show the insight of
     * this dependency.
     * <p>
     * This task generates a report for the task's containing project by default. But it can also generate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/sidecar/selector.go

    		}
    
    		sNames := getNames(sList)
    
    		for _, rs := range sList {
    			// We don't want to report errors for pods in ambient mode, since there is no sidecar,
    			// but we do want to warn that the policy is ineffective.
    			if util.PodInAmbientMode(podResource) {
    				if !reportedResources[rs.Metadata.FullName.String()] {
    					c.Report(gvk.Sidecar, msg.NewIneffectivePolicy(rs,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/SimpleReport.java

        }
    
        @Override
        public String toString() {
            return "Report " + getName();
        }
    
        @Override
        public abstract FileSystemLocationProperty<? extends FileSystemLocation> getOutputLocation();
    
        @Deprecated
        @Override
        public void setDestination(File file) {
            DeprecationLogger.deprecateProperty(Report.class, "destination")
                    .replaceWith("outputLocation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:05:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    	match := dateRE.FindStringSubmatch(fname)
    	if match == nil || len(match) < 2 {
    		u.logger.Printf("Report name %q missing date", filepath.Base(fname))
    	} else if match[1] > today {
    		u.logger.Printf("Report date for %q is later than today (%s)", filepath.Base(fname), today)
    		return // report is in the future, which shouldn't happen
    	}
    	buf, err := os.ReadFile(fname)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/checkstyle_plugin.adoc

    include::sample[dir="snippets/codeQuality/codeQuality/groovy",files="build.gradle[tags=customize-checkstyle-report]"]
    ====
    
    https://github.com/checkstyle/contribution/tree/master/xsl[View a sample Checkstyle stylesheet.]
    
    [[sec:enable_checkstyle_sarif]]
    == Generate SARIF report
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 16:44:32 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/go/types/errors.go

    			}
    		}
    		buf.WriteString(p.msg)
    	}
    	return buf.String()
    }
    
    // report reports the error err, setting check.firstError if necessary.
    func (err *error_) report() {
    	if err.empty() {
    		panic("no error")
    	}
    
    	// Cheap trick: Don't report errors with messages containing
    	// "invalid operand" or "invalid type" as those tend to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/TestReport.java

                dirs.from(result);
            }
        }
    
        /**
         * Adds some results to include in the report.
         *
         * <p>This method accepts any parameter of the given types:
         *
         * <ul>
         *
         * <li>A {@link Test} task instance. The results from the test task are included in the report. The test task is automatically added
         * as a dependency of this task.</li>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top