Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 489 for REPORT (0.28 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    	// ErrorTypeDuplicate is used to report collisions of values that must be
    	// unique (e.g. unique IDs).  See Duplicate().
    	ErrorTypeDuplicate ErrorType = "FieldValueDuplicate"
    	// ErrorTypeInvalid is used to report malformed values (e.g. failed regex
    	// match, too long, out of bounds).  See Invalid().
    	ErrorTypeInvalid ErrorType = "FieldValueInvalid"
    	// ErrorTypeNotSupported is used to report unknown values for enumerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildChangeReportingIntegrationTest.groovy

                  inputs.dir "inputDir"
                  outputs.files "build/outputs"
                  doLast {}
                }
            """
            inputDir = file("inputDir").createDir()
        }
    
        def "should report the absolute file path of the created file when a single file is created in the input directory"() {
            given:
            def inputFile = inputDir.file("input.txt")
            when:
            succeeds("theTask")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

                )
            } else {
                assertThat("Unexpected HTML report URI found", reportDir, nullValue())
            }
        }
    
        static Map<String, Object> readJsModelFromReportDir(TestFile reportDir) {
            assertThat("HTML report URI not found", reportDir, notNullValue())
            assertTrue("HTML report directory not found '$reportDir'", reportDir.isDirectory())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    include::sample[dir="snippets/swift/testReport/groovy",files="buildSrc/src/main/groovy/myproject.xctest-conventions.gradle[tags=test-report];build.gradle[tags=test-report]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    By default, a HTML report is generated at `layout.buildDirectory.dir("reports/jacoco/test")`.
    
    NOTE: While tests should be executed before generation of the report, the `jacocoTestReport` task does not depend on the `test` task.
    
    Depending on your usecases, you may want to always generate the `jacocoTestReport` or run the `test` task before generating the report explicitly.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

            file("build/reports/checkstyle/main.html").assertContents(containsString("A custom Checkstyle stylesheet"))
        }
    
        @Issue("GRADLE-3490")
        def "do not output XML report when only HTML report is enabled"() {
            given:
            goodCode()
            buildFile << '''
                tasks.withType(Checkstyle) {
                    reports {
                        xml.required = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  10. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/plugins/BuildDashboardPluginIntegrationTest.groovy

        void 'build dashboard is not generated if a dependency of the report generating task fails'() {
            given:
            goodCode()
            goodTests()
            failingDependenciesForTestTask()
    
            when:
            runAndFail('check')
    
            then:
            !buildDashboardFile.exists()
        }
    
        void 'build dashboard is not generated if a dependency of the report generating task fails even with --continue'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top