Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 464 for REPORT (0.11 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/WorkItemProgressEventCrossVersionSpec.groovy

            taskOperation.assertIsTask()
            with(taskOperation.descendant("org.gradle.test.TestWork")) {
                successful
                buildOperation
            }
        }
    
        def "does not report work item progress events when WORK_ITEM operations are not requested"() {
            when:
            def events = runBuild("runInWorker", EnumSet.complementOf(EnumSet.of(OperationType.WORK_ITEM)))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package report
    
    // This file contains routines related to the generation of annotated
    // source listings.
    
    import (
    	"bufio"
    	"fmt"
    	"html/template"
    	"io"
    	"os"
    	"path/filepath"
    	"regexp"
    	"sort"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. src/cmd/gofmt/gofmt.go

    // reporter's exit code.
    func (r *reporter) Write(p []byte) (int, error) {
    	return r.getState().out.Write(p)
    }
    
    // Report emits a non-nil error to the reporter's error stream,
    // changing its exit code to a nonzero value.
    func (r *reporter) Report(err error) {
    	if err == nil {
    		panic("Report with nil error")
    	}
    	st := r.getState()
    	scanner.PrintError(st.err, err)
    	st.exitCode = 2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

                    }
                }
                if (uniqueProblemCount > maxConsoleProblems) {
                    appendLine("plus ${uniqueProblemCount - maxConsoleProblems} more problems. Please see the report for details.")
                }
                htmlReportFile?.let {
                    appendLine()
                    append(buildSummaryReportLink(it))
                }
            }.toString()
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/labels.go

    	}
    
    	return containerInfo
    }
    
    func getStringValueFromLabel(labels map[string]string, label string) string {
    	if value, found := labels[label]; found {
    		return value
    	}
    	// Do not report error, because there should be many old containers without label now.
    	klog.V(3).InfoS("Container doesn't have requested label, it may be an old or invalid container", "label", label)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/decl.go

    					_ = alt.(*Func)
    
    					// For historical consistency, we report the primary error on the
    					// method, and the alt decl on the field.
    					err := check.newError(DuplicateFieldAndMethod)
    					err.addf(alt, "field and method with the same name %s", fld.name)
    					err.addAltDecl(fld)
    					err.report()
    				}
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

        fun Project.createAdditionalTasks(performanceSourceSet: SourceSet) {
            createPerformanceTestReportTask("performanceTestReport", "org.gradle.performance.results.report.DefaultReportGenerator")
            createPerformanceTestReportTask("performanceTestFlakinessReport", "org.gradle.performance.results.report.FlakinessReportGenerator")
    
            tasks.withType<PerformanceTestReport>().configureEach {
                classpath.from(performanceSourceSet.runtimeClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. src/runtime/debug/stack_test.go

    	// It should contain a crash report such as this:
    	//
    	// panic: oops
    	//
    	// goroutine 1 [running]:
    	// runtime/debug_test.TestMain(0x1400007e0a0)
    	// 	GOROOT/src/runtime/debug/stack_test.go:33 +0x18c
    	// main.main()
    	// 	_testmain.go:71 +0x170
    	data, err := os.ReadFile(crashOutput)
    	if err != nil {
    		t.Fatalf("child process failed to write crash report: %v", err)
    	}
    	crash := string(data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

         * plugins {
         *     id 'java'
         * }
         *
         * test {
         *     useTestNG() {
         *         // report generation delegated to TestNG library:
         *         useDefaultListeners = true
         *     }
         *
         *     // turn off Gradle's HTML report to avoid replacing the
         *     // reports generated by TestNG library:
         *     reports.html.required = false
         * }
         * </pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/build.gradle.kts

        integTestDistributionRuntimeOnly(project(":distributions-core"))
    }
    
    val reportResources = tasks.register<Copy>("reportResources") {
        from(reports)
        into(layout.buildDirectory.file("generated-resources/report-resources/org/gradle/reporting"))
    }
    
    sourceSets.main {
        output.dir(reportResources.map { it.destinationDir.parentFile.parentFile.parentFile })
    }
    
    tasks.jar {
        inputs.files(flamegraph)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top