Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for reportDir (0.24 sec)

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

                    val reportDir = outputDirectory.resolve(reportHash())
                    val reportFile = reportDir.resolve(HtmlReportTemplate.reportHtmlFileName)
                    if (!reportFile.exists()) {
                        require(reportDir.mkdirs()) {
                            "Could not create configuration cache report directory '$reportDir'"
                        }
    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/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            def reportDir2 = reportDir()
            reportDir2?.isDirectory()
            reportDir2 != reportDir1
    
            when:
            configurationCacheFails 'broken'
    
            then:
            def reportDir3 = reportDir()
            reportDir3 == reportDir1
    
            when:
            configurationCacheFails 'alsoBroken'
    
            then:
            def reportDir4 = reportDir()
            reportDir4 == reportDir2
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. 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)
  4. samples/addons/grafana.yaml

    ponse_bytes_sum{source_workload=\"istio-ingressgateway\", reporter=\"source\"}[1m]))","format":"time_series","intervalFactor":1,"legendFormat":"istio-ingressgateway","refId":"A"},{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"sum(irate(istio_response_bytes_sum{source_workload_namespace!=\"istio-system\", reporter=\"source\"}[1m])) + sum(irate(istio_request_bytes_sum{source_workload_namespace!=\"istio-system\", reporter=\"source\"}[1m]))","format":"time_series","intervalFactor"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

            if (!reports.getHtml().getRequired().get()) {
                setDidWork(false);
                return;
            }
    
            HtmlDependencyReporter reporter = new HtmlDependencyReporter(getVersionSelectorScheme(), getVersionComparator(), getVersionParser());
            reporter.render(projectsWithConfigurations.get(), reports.getHtml().getOutputLocation().getAsFile().get());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    }
    
    func buildQuery(src, dst echo.Instance) prometheus.Query {
    	query := prometheus.Query{}
    
    	srcns := src.NamespaceName()
    	destns := dst.NamespaceName()
    
    	labels := map[string]string{
    		"reporter":                       "waypoint",
    		"request_protocol":               "http",
    		"response_code":                  "200",
    		"response_flags":                 "-",
    		"connection_security_policy":     "mutual_tls",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/server.go

    	// in AddStartFunc
    	internalStop chan struct{}
    
    	webhookInfo *webhookInfo
    
    	statusReporter *distribution.Reporter
    	statusManager  *status.Manager
    	// RWConfigStore is the configstore which allows updates, particularly for status.
    	RWConfigStore model.ConfigStoreController
    }
    
    type readinessFlags struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top