Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 505 for REPORT (0.12 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

     * this information will be available in the report.
     * <p>
     * While the regular dependencies report ({@link DependencyReportTask}) shows the path from the top level dependencies down through the transitive dependencies,
     * the dependency insight report shows the path from a particular dependency to the dependencies that pulled it in.
     * That is, it is an inverted view of the regular dependencies report.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultPluginConfigurationExpander.java

                if (pluginConfiguration != null) {
                    return plugin.withReportSets(map(
                            plugin.getReportSets(),
                            report -> report.withConfiguration(
                                    XmlNode.merge(report.getConfiguration(), pluginConfiguration))));
                } else {
                    return plugin;
                }
            });
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conditions.go

    		// Failures to match the Port or SectionName. These are last so that if we bind to 1 listener we
    		// just report errors for that 1 listener instead of for all sections we didn't bind to
    		ParentErrorNotAccepted,
    	}
    	// Next we want to collapse these. We need to report 1 type of error, or none.
    	report := map[k8s.ParentReference]RouteParentResult{}
    	for _, wantReason := range reasonRanking {
    		if !seenReasons.Contains(wantReason) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValitdatePluginsTrait.groovy

        @Override
        void assertValidationFailsWith(List<AbstractPluginValidationIntegrationSpec.DocumentedProblem> messages) {
            fails "validatePlugins"
            def report = new TaskValidationReportFixture(file("build/reports/plugin-development/validation-report.json"))
            report.verify(messages.collectEntries {
                def fullMessage = it.message
                if (!it.defaultDocLink) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectReportIntegTest.groovy

    class ConfigurationCacheProjectReportIntegTest extends AbstractConfigurationCacheIntegrationTest {
    
        def setup() {
            buildFile << """
                apply plugin: 'project-report'
            """
        }
    
        def "configuration cache for Project Report plugin task '#task' on empty project"() {
            given:
            configurationCacheRun(task, *options)
            def firstRunOutput = removeVfsLogOutput(result.normalizedOutput)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/runtime/traceback_system_test.go

    	crash := stdout.String()
    
    	// If the only line is the sentinel, it wasn't a crash.
    	if strings.Count(crash, "\n") < 2 {
    		t.Fatalf("child process did not produce a crash report")
    	}
    
    	// Parse the PCs out of the child's crash report.
    	pcs, err := parseStackPCs(crash)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Unwind the stack using this executable's symbol table.
    	got := formatStack(pcs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. hack/ginkgo-e2e.sh

        suite_args+=("--ginkgo.${arg#--}")
      done
    fi
    
    # Generate full dumps of the test result and progress in <report-dir>/ginkgo/,
    # using the Ginkgo-specific JSON format and JUnit XML. Ignored if --report-dir
    # is not used.
    suite_args+=(--report-complete-ginkgo --report-complete-junit)
    
    # The following invocation is fairly complex. Let's dump it to simplify
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue67547.go

    }
    
    func _[P []int]() {
    	type A = P
    	_ = make(A, 10) // don't report an error for A
    }
    
    func _[P string]() {
    	var t []byte
    	type A = P
    	var s A
    	copy(t, s) // don't report an error for s
    }
    
    func _[P map[int]int]() {
    	type A = P
    	var m A
    	clear(m) // don't report an error for m
    }
    
    type S1 struct {
    	x int "S1.x"
    }
    
    type S2 struct {
    	x int "S2.x"
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/UnknownTestDescriptor.java

    public class UnknownTestDescriptor implements TestDescriptorInternal {
    
        @Override
        public Object getId() {
            return "Unknown test (possible bug, please report)";
        }
    
        @Override
        public String getName() {
            return "Unknown test (possible bug, please report)";
        }
    
        @Override
        public String getClassName() {
            return null;
        }
    
        @Override
        public boolean isComposite() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

                        if (0 < position) {
                            // ... we can report the line, column, and extent ...
                            spec.lineInFileLocation(resourceName, line, column, end - position);
                        } else {
                            // ... otherwise we can still report the line and column
                            spec.lineInFileLocation(resourceName, line, column);
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top