Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 505 for REPORT (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

        }
    
        private
        sealed class State {
    
            open fun onDiagnostic(kind: DiagnosticKind, problem: PropertyProblem): State =
                illegalState()
    
            /**
             * Writes the report file to the given [outputDirectory] if and only if
             * there are diagnostics to report.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractDependencyReportTask.java

        }
    
        /**
         * Sets the single configuration (by name) to generate the report for.
         *
         * @param configurationName name of the configuration to generate the report for
         */
        @Option(option = "configuration", description = "The configuration to generate the report for.")
        public void setConfiguration(String configurationName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/software/reporting/build.gradle.kts

    import gradlebuild.basics.googleApisJs
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Report type classes and plugins for reporting (build dashboard, report container)"
    
    errorprone {
        disabledChecks.addAll(
            "EqualsUnsafeCast", // 1 occurrences
        )
    }
    
    val implementationResources: Configuration by configurations.creating
    
    repositories {
        googleApisJs()
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	o.UI.PrintErr(u.String())
    }
    
    // makeReport generates a report for the specified command.
    // If configEditor is not null, it is used to edit the config used for the report.
    func (ui *webInterface) makeReport(w http.ResponseWriter, req *http.Request,
    	cmd []string, configEditor func(*config)) (*report.Report, []string) {
    	cfg := currentConfig()
    	if err := cfg.applyURL(req.URL.Query()); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildProfileIntegrationTest.groovy

            when:
            configurationCacheRun(":help", "--profile")
    
            then:
            configurationCache.assertStateStored()
            def report = findReport()
    
            and:
            report.delete()
    
            when:
            configurationCacheRun(":help", "--profile")
    
            then:
            configurationCache.assertStateLoaded()
            findReport()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    == Profile report
    
    If you prefer not to use build scans, you can generate an HTML report in the
    `build/reports/profile` directory of your root project. To generate this report,
    use the `--profile` command-line option:
    
    [listing.terminal]
    ----
    $ gradle --profile <tasks>
    ----
    
    Each profile report has a timestamp in its name to avoid overwriting existing ones.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top